From bf0dcd939e649e4d86f8440a1100ee9cb9008eaa Mon Sep 17 00:00:00 2001 From: Alex Rodionov Date: Fri, 22 Mar 2024 17:27:13 -0700 Subject: [PATCH] [bazel] Move rules_js to MODULE --- MODULE.bazel | 41 + MODULE.bazel.lock | 55566 +++++++++++++++++++++++++++++++++++++++++++- WORKSPACE.bzlmod | 75 - 3 files changed, 55271 insertions(+), 411 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index cfe168fecca58..56e33d1d03e54 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,11 +1,16 @@ module(name = "selenium") bazel_dep(name = "apple_rules_lint", version = "0.3.2") +bazel_dep(name = "aspect_rules_esbuild", version = "0.18.0") +bazel_dep(name = "aspect_rules_js", version = "1.35.0") +bazel_dep(name = "aspect_rules_ts", version = "2.1.0") +bazel_dep(name = "bazel_features", version = "1.9.0") bazel_dep(name = "contrib_rules_jvm", version = "0.24.0") bazel_dep(name = "platforms", version = "0.0.8") bazel_dep(name = "rules_dotnet", version = "0.14.0") bazel_dep(name = "rules_java", version = "7.4.0") bazel_dep(name = "rules_jvm_external", version = "6.0") +bazel_dep(name = "rules_nodejs", version = "5.8.3") bazel_dep(name = "rules_python", version = "0.31.0") bazel_dep(name = "rules_ruby", version = "0.8.1") bazel_dep(name = "rules_rust", version = "0.40.0") @@ -21,6 +26,42 @@ linter.configure( ) linter.register(name = "rust-rustfmt") +node = use_extension("@aspect_rules_js//node:extensions.bzl", "node") +node.toolchain(node_version = "18.17.0") + +npm = use_extension("@aspect_rules_js//npm:extensions.bzl", "npm") +npm.npm_translate_lock( + name = "npm", + data = [ + "@//:package.json", + "@//:pnpm-workspace.yaml", + "@//javascript/grid-ui:package.json", + "@//javascript/node/selenium-webdriver:package.json", + ], + generate_bzl_library_targets = True, + npmrc = "//:.npmrc", + pnpm_lock = "//:pnpm-lock.yaml", + update_pnpm_lock = True, + verify_node_modules_ignored = "//:.bazelignore", +) +use_repo(npm, "npm") + +rules_ts_ext = use_extension( + "@aspect_rules_ts//ts:extensions.bzl", + "ext", + dev_dependency = True, +) +rules_ts_ext.deps( + ts_version = "4.9.5", +) +use_repo(rules_ts_ext, "npm_typescript") + +esbuild = use_extension("@aspect_rules_esbuild//esbuild:extensions.bzl", "esbuild") +esbuild.toolchain(esbuild_version = "0.19.9") +use_repo(esbuild, "esbuild_toolchains") + +register_toolchains("@esbuild_toolchains//:all") + dotnet = use_extension("@rules_dotnet//dotnet:extensions.bzl", "dotnet") dotnet.toolchain(dotnet_version = "7.0.400") use_repo(dotnet, "dotnet_toolchains") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 476351d3da703..e6776c96c2fb8 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -1,6 +1,6 @@ { "lockFileVersion": 6, - "moduleFileHash": "0ea6d89d987ee042ef7ad28daffbb977731e63ddb4c247b06bc03788b0eccf10", + "moduleFileHash": "60eb5248b847262d5485b905a3fb98d8bb81688738114623e76691ff2ea5f554", "flags": { "cmdRegistries": [ "https://bcr.bazel.build/" @@ -23,6 +23,7 @@ "repoName": "selenium", "executionPlatformsToRegister": [], "toolchainsToRegister": [ + "@esbuild_toolchains//:all", "@dotnet_toolchains//:all", "@pythons_hub//:all", "@ruby_toolchains//:all", @@ -35,7 +36,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 14, + "line": 19, "column": 23 }, "imports": {}, @@ -50,7 +51,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 15, + "line": 20, "column": 17 } }, @@ -63,7 +64,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 19, + "line": 24, "column": 17 } }, @@ -75,7 +76,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 23, + "line": 28, "column": 16 } } @@ -83,13 +84,144 @@ "hasDevUseExtension": false, "hasNonDevUseExtension": true }, + { + "extensionBzlFile": "@aspect_rules_js//node:extensions.bzl", + "extensionName": "node", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 30, + "column": 21 + }, + "imports": {}, + "devImports": [], + "tags": [ + { + "tagName": "toolchain", + "attributeValues": { + "node_version": "18.17.0" + }, + "devDependency": false, + "location": { + "file": "@@//:MODULE.bazel", + "line": 31, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl", + "extensionName": "npm", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 33, + "column": 20 + }, + "imports": { + "npm": "npm" + }, + "devImports": [], + "tags": [ + { + "tagName": "npm_translate_lock", + "attributeValues": { + "name": "npm", + "data": [ + "@//:package.json", + "@//:pnpm-workspace.yaml", + "@//javascript/grid-ui:package.json", + "@//javascript/node/selenium-webdriver:package.json" + ], + "generate_bzl_library_targets": true, + "npmrc": "//:.npmrc", + "pnpm_lock": "//:pnpm-lock.yaml", + "update_pnpm_lock": true, + "verify_node_modules_ignored": "//:.bazelignore" + }, + "devDependency": false, + "location": { + "file": "@@//:MODULE.bazel", + "line": 34, + "column": 23 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@aspect_rules_ts//ts:extensions.bzl", + "extensionName": "ext", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 50, + "column": 29 + }, + "imports": { + "npm_typescript": "npm_typescript" + }, + "devImports": [ + "npm_typescript" + ], + "tags": [ + { + "tagName": "deps", + "attributeValues": { + "ts_version": "4.9.5" + }, + "devDependency": true, + "location": { + "file": "@@//:MODULE.bazel", + "line": 55, + "column": 18 + } + } + ], + "hasDevUseExtension": true, + "hasNonDevUseExtension": false + }, + { + "extensionBzlFile": "@aspect_rules_esbuild//esbuild:extensions.bzl", + "extensionName": "esbuild", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 60, + "column": 24 + }, + "imports": { + "esbuild_toolchains": "esbuild_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "toolchain", + "attributeValues": { + "esbuild_version": "0.19.9" + }, + "devDependency": false, + "location": { + "file": "@@//:MODULE.bazel", + "line": 61, + "column": 18 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, { "extensionBzlFile": "@rules_dotnet//dotnet:extensions.bzl", "extensionName": "dotnet", "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 25, + "line": 66, "column": 23 }, "imports": { @@ -105,7 +237,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 26, + "line": 67, "column": 17 } } @@ -119,7 +251,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 29, + "line": 70, "column": 31 }, "imports": { @@ -136,7 +268,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 34, + "line": 75, "column": 23 }, "imports": { @@ -153,7 +285,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 35, + "line": 76, "column": 17 } }, @@ -165,7 +297,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 39, + "line": 80, "column": 17 } }, @@ -177,7 +309,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 40, + "line": 81, "column": 17 } }, @@ -189,7 +321,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 41, + "line": 82, "column": 17 } } @@ -203,7 +335,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 44, + "line": 85, "column": 20 }, "imports": { @@ -221,7 +353,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 47, + "line": 88, "column": 14 } }, @@ -235,7 +367,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 47, + "line": 88, "column": 14 } }, @@ -249,7 +381,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 47, + "line": 88, "column": 14 } }, @@ -263,7 +395,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 47, + "line": 88, "column": 14 } } @@ -277,7 +409,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 64, + "line": 105, "column": 32 }, "imports": { @@ -304,7 +436,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 80, + "line": 121, "column": 22 }, "imports": { @@ -390,7 +522,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 81, + "line": 122, "column": 14 } } @@ -404,7 +536,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 156, + "line": 197, "column": 21 }, "imports": { @@ -423,7 +555,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 157, + "line": 198, "column": 15 } }, @@ -520,7 +652,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 161, + "line": 202, "column": 18 } } @@ -534,7 +666,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 253, + "line": 294, "column": 21 }, "imports": { @@ -553,7 +685,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 254, + "line": 295, "column": 15 } } @@ -567,7 +699,7 @@ "usingModule": "", "location": { "file": "@@//:MODULE.bazel", - "line": 260, + "line": 301, "column": 22 }, "imports": { @@ -587,7 +719,7 @@ "devDependency": false, "location": { "file": "@@//:MODULE.bazel", - "line": 261, + "line": 302, "column": 17 } } @@ -598,11 +730,16 @@ ], "deps": { "apple_rules_lint": "apple_rules_lint@0.3.2", + "aspect_rules_esbuild": "aspect_rules_esbuild@0.18.0", + "aspect_rules_js": "aspect_rules_js@1.35.0", + "aspect_rules_ts": "aspect_rules_ts@2.1.0", + "bazel_features": "bazel_features@1.9.0", "contrib_rules_jvm": "contrib_rules_jvm@0.24.0", "platforms": "platforms@0.0.8", "rules_dotnet": "rules_dotnet@0.14.0", "rules_java": "rules_java@7.4.0", "rules_jvm_external": "rules_jvm_external@6.0", + "rules_nodejs": "rules_nodejs@5.8.3", "rules_python": "rules_python@0.31.0", "rules_ruby": "rules_ruby@0.8.1", "rules_rust": "rules_rust@0.40.0", @@ -656,25 +793,98 @@ } } }, - "contrib_rules_jvm@0.24.0": { - "name": "contrib_rules_jvm", - "version": "0.24.0", - "key": "contrib_rules_jvm@0.24.0", - "repoName": "contrib_rules_jvm", + "aspect_rules_esbuild@0.18.0": { + "name": "aspect_rules_esbuild", + "version": "0.18.0", + "key": "aspect_rules_esbuild@0.18.0", + "repoName": "aspect_rules_esbuild", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@esbuild_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_rules_esbuild//esbuild:extensions.bzl", + "extensionName": "esbuild", + "usingModule": "aspect_rules_esbuild@0.18.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_esbuild/0.18.0/MODULE.bazel", + "line": 15, + "column": 24 + }, + "imports": { + "esbuild_toolchains": "esbuild_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "toolchain", + "attributeValues": { + "name": "esbuild", + "esbuild_version": "0.19.9" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_esbuild/0.18.0/MODULE.bazel", + "line": 16, + "column": 18 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.39.1", + "aspect_rules_js": "aspect_rules_js@1.35.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", + "rules_nodejs": "rules_nodejs@5.8.3", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/aspect-build/rules_esbuild/releases/download/v0.18.0/rules_esbuild-v0.18.0.tar.gz" + ], + "integrity": "sha256-mZNJr+9ih1MB9F7IUVGJzq8uhbHmehfi0ouVsw4dbAs=", + "strip_prefix": "rules_esbuild-0.18.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_esbuild/0.18.0/patches/module_dot_bazel_version.patch": "sha256-Wz6xw8tnkUye3sqiikJqpDiBniW+HLds19pR27p/oY4=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_js@1.35.0": { + "name": "aspect_rules_js", + "version": "1.35.0", + "key": "aspect_rules_js@1.35.0", + "repoName": "aspect_rules_js", "executionPlatformsToRegister": [], "toolchainsToRegister": [], "extensionUsages": [ { - "extensionBzlFile": "@contrib_rules_jvm//java/private:non-module-deps.bzl", - "extensionName": "non_module_deps", - "usingModule": "contrib_rules_jvm@0.24.0", + "extensionBzlFile": "@rules_nodejs//nodejs:extensions.bzl", + "extensionName": "node", + "usingModule": "aspect_rules_js@1.35.0", "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 68, - "column": 32 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.35.0/MODULE.bazel", + "line": 18, + "column": 21 }, "imports": { - "io_grpc_grpc_java": "io_grpc_grpc_java" + "nodejs_linux_amd64": "nodejs_linux_amd64", + "nodejs_darwin_arm64": "nodejs_darwin_arm64", + "nodejs_darwin_amd64": "nodejs_darwin_amd64", + "nodejs_linux_arm64": "nodejs_linux_arm64", + "nodejs_linux_s390x": "nodejs_linux_s390x", + "nodejs_linux_ppc64le": "nodejs_linux_ppc64le", + "nodejs_windows_amd64": "nodejs_windows_amd64" }, "devImports": [], "tags": [], @@ -682,92 +892,32 @@ "hasNonDevUseExtension": true }, { - "extensionBzlFile": "@apple_rules_lint//lint:extensions.bzl", - "extensionName": "linter", - "usingModule": "contrib_rules_jvm@0.24.0", + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl", + "extensionName": "pnpm", + "usingModule": "aspect_rules_js@1.35.0", "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 74, - "column": 23 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.35.0/MODULE.bazel", + "line": 27, + "column": 21 }, "imports": { - "apple_linters": "apple_linters" + "pnpm": "pnpm", + "pnpm__links": "pnpm__links" }, "devImports": [], "tags": [ { - "tagName": "register", - "attributeValues": { - "name": "java-checkstyle" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 75, - "column": 16 - } - }, - { - "tagName": "configure", - "attributeValues": { - "name": "java-checkstyle", - "config": "//java:checkstyle-default-config" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 76, - "column": 17 - } - }, - { - "tagName": "register", - "attributeValues": { - "name": "java-pmd" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 80, - "column": 16 - } - }, - { - "tagName": "configure", - "attributeValues": { - "name": "java-pmd", - "config": "//java:pmd-config" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 81, - "column": 17 - } - }, - { - "tagName": "register", - "attributeValues": { - "name": "java-spotbugs" - }, - "devDependency": false, - "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 85, - "column": 16 - } - }, - { - "tagName": "configure", + "tagName": "pnpm", "attributeValues": { - "name": "java-spotbugs", - "config": "//java:spotbugs-default-config" + "name": "pnpm", + "pnpm_version": "8.6.7", + "pnpm_version_integrity": "sha512-vRIWpD/L4phf9Bk2o/O2TDR8fFoJnpYrp2TKqTIZF/qZ2/rgL3qKXzHofHgbXsinwMoSEigz28sqk3pQ+yMEQQ==" }, "devDependency": false, "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 86, - "column": 17 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.35.0/MODULE.bazel", + "line": 28, + "column": 10 } } ], @@ -775,22 +925,265 @@ "hasNonDevUseExtension": true }, { - "extensionBzlFile": "@rules_jvm_external//:extensions.bzl", - "extensionName": "maven", - "usingModule": "contrib_rules_jvm@0.24.0", + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "aspect_rules_js@1.35.0", "location": { - "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", - "line": 95, - "column": 22 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.35.0/MODULE.bazel", + "line": 50, + "column": 37 }, "imports": { - "com_google_api_grpc_proto_google_common_protos": "com_google_api_grpc_proto_google_common_protos", - "com_google_code_findbugs_jsr305": "com_google_code_findbugs_jsr305", - "com_google_errorprone_error_prone_annotations": "com_google_errorprone_error_prone_annotations", - "com_google_guava_failureaccess": "com_google_guava_failureaccess", - "com_google_guava_guava": "com_google_guava_guava", - "com_google_j2objc_j2objc_annotations": "com_google_j2objc_j2objc_annotations", - "contrib_rules_jvm_deps": "contrib_rules_jvm_deps", + "coreutils_toolchains": "coreutils_toolchains" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.39.1", + "aspect_rules_lint": "aspect_rules_lint@0.7.0", + "bazel_features": "bazel_features@1.9.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_nodejs": "rules_nodejs@5.8.3", + "platforms": "platforms@0.0.8", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/aspect-build/rules_js/releases/download/v1.35.0/rules_js-v1.35.0.tar.gz" + ], + "integrity": "sha256-ovlB4n8C6EUhwtR/1TDGbVfdbW5EtKTxSW/jBIUdjkg=", + "strip_prefix": "rules_js-1.35.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_js/1.35.0/patches/module_dot_bazel_version.patch": "sha256-FUneWZQFpMeCWtzNodLD1Q8EE2aOy1cyIwcYF78zbpg=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_ts@2.1.0": { + "name": "aspect_rules_ts", + "version": "2.1.0", + "key": "aspect_rules_ts@2.1.0", + "repoName": "aspect_rules_ts", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "aspect_rules_js": "aspect_rules_js@1.35.0", + "aspect_bazel_lib": "aspect_bazel_lib@1.39.1", + "rules_proto": "rules_proto@5.3.0-21.7", + "com_google_protobuf": "protobuf@23.1", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/aspect-build/rules_ts/releases/download/v2.1.0/rules_ts-v2.1.0.tar.gz" + ], + "integrity": "sha256-vT57F+Z30ri6G6w4YvDyOKsW7bPkP7DwuTCGSepYoq0=", + "strip_prefix": "rules_ts-2.1.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_ts/2.1.0/patches/module_dot_bazel_version.patch": "sha256-BEwsxsnnkI1FBFLpBZMcIMOOkOyvXcbInSNvh4eJS5c=" + }, + "remote_patch_strip": 1 + } + } + }, + "bazel_features@1.9.0": { + "name": "bazel_features", + "version": "1.9.0", + "key": "bazel_features@1.9.0", + "repoName": "bazel_features", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@bazel_features//private:extensions.bzl", + "extensionName": "version_extension", + "usingModule": "bazel_features@1.9.0", + "location": { + "file": "https://bcr.bazel.build/modules/bazel_features/1.9.0/MODULE.bazel", + "line": 15, + "column": 24 + }, + "imports": { + "bazel_features_globals": "bazel_features_globals", + "bazel_features_version": "bazel_features_version" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/bazel-contrib/bazel_features/releases/download/v1.9.0/bazel_features-v1.9.0.tar.gz" + ], + "integrity": "sha256-BvArl7a62zIn3yFBpLRiInLNzSlRUm9AqIirX0OJfxQ=", + "strip_prefix": "bazel_features-1.9.0", + "remote_patches": { + "https://bcr.bazel.build/modules/bazel_features/1.9.0/patches/module_dot_bazel_version.patch": "sha256-6a7sSq7XSqoAN27Q13abDNzxWEhSZH/UzxEC5A1K/gE=" + }, + "remote_patch_strip": 1 + } + } + }, + "contrib_rules_jvm@0.24.0": { + "name": "contrib_rules_jvm", + "version": "0.24.0", + "key": "contrib_rules_jvm@0.24.0", + "repoName": "contrib_rules_jvm", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@contrib_rules_jvm//java/private:non-module-deps.bzl", + "extensionName": "non_module_deps", + "usingModule": "contrib_rules_jvm@0.24.0", + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 68, + "column": 32 + }, + "imports": { + "io_grpc_grpc_java": "io_grpc_grpc_java" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@apple_rules_lint//lint:extensions.bzl", + "extensionName": "linter", + "usingModule": "contrib_rules_jvm@0.24.0", + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 74, + "column": 23 + }, + "imports": { + "apple_linters": "apple_linters" + }, + "devImports": [], + "tags": [ + { + "tagName": "register", + "attributeValues": { + "name": "java-checkstyle" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 75, + "column": 16 + } + }, + { + "tagName": "configure", + "attributeValues": { + "name": "java-checkstyle", + "config": "//java:checkstyle-default-config" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 76, + "column": 17 + } + }, + { + "tagName": "register", + "attributeValues": { + "name": "java-pmd" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 80, + "column": 16 + } + }, + { + "tagName": "configure", + "attributeValues": { + "name": "java-pmd", + "config": "//java:pmd-config" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 81, + "column": 17 + } + }, + { + "tagName": "register", + "attributeValues": { + "name": "java-spotbugs" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 85, + "column": 16 + } + }, + { + "tagName": "configure", + "attributeValues": { + "name": "java-spotbugs", + "config": "//java:spotbugs-default-config" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 86, + "column": 17 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@rules_jvm_external//:extensions.bzl", + "extensionName": "maven", + "usingModule": "contrib_rules_jvm@0.24.0", + "location": { + "file": "https://bcr.bazel.build/modules/contrib_rules_jvm/0.24.0/MODULE.bazel", + "line": 95, + "column": 22 + }, + "imports": { + "com_google_api_grpc_proto_google_common_protos": "com_google_api_grpc_proto_google_common_protos", + "com_google_code_findbugs_jsr305": "com_google_code_findbugs_jsr305", + "com_google_errorprone_error_prone_annotations": "com_google_errorprone_error_prone_annotations", + "com_google_guava_failureaccess": "com_google_guava_failureaccess", + "com_google_guava_guava": "com_google_guava_guava", + "com_google_j2objc_j2objc_annotations": "com_google_j2objc_j2objc_annotations", + "contrib_rules_jvm_deps": "contrib_rules_jvm_deps", "org_apache_tomcat_annotations_api": "org_apache_tomcat_annotations_api" }, "devImports": [], @@ -1642,50 +2035,113 @@ } } }, - "rules_python@0.31.0": { - "name": "rules_python", - "version": "0.31.0", - "key": "rules_python@0.31.0", - "repoName": "rules_python", + "rules_nodejs@5.8.3": { + "name": "rules_nodejs", + "version": "5.8.3", + "key": "rules_nodejs@5.8.3", + "repoName": "rules_nodejs", "executionPlatformsToRegister": [], "toolchainsToRegister": [ - "@pythons_hub//:all" + "@nodejs_toolchains//:all" ], "extensionUsages": [ { - "extensionBzlFile": "@rules_python//python/private/bzlmod:internal_deps.bzl", - "extensionName": "internal_deps", - "usingModule": "rules_python@0.31.0", + "extensionBzlFile": "@rules_nodejs//nodejs:extensions.bzl", + "extensionName": "node", + "usingModule": "rules_nodejs@5.8.3", "location": { - "file": "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel", - "line": 15, - "column": 30 + "file": "https://bcr.bazel.build/modules/rules_nodejs/5.8.3/MODULE.bazel", + "line": 12, + "column": 21 }, "imports": { - "rules_python_internal": "rules_python_internal", - "pypi__build": "pypi__build", - "pypi__click": "pypi__click", - "pypi__colorama": "pypi__colorama", - "pypi__importlib_metadata": "pypi__importlib_metadata", - "pypi__installer": "pypi__installer", - "pypi__more_itertools": "pypi__more_itertools", - "pypi__packaging": "pypi__packaging", - "pypi__pep517": "pypi__pep517", - "pypi__pip": "pypi__pip", - "pypi__pip_tools": "pypi__pip_tools", - "pypi__pyproject_hooks": "pypi__pyproject_hooks", - "pypi__setuptools": "pypi__setuptools", - "pypi__tomli": "pypi__tomli", - "pypi__wheel": "pypi__wheel", - "pypi__zipp": "pypi__zipp" + "nodejs_toolchains": "nodejs_toolchains" }, "devImports": [], "tags": [ { - "tagName": "install", - "attributeValues": {}, - "devDependency": false, - "location": { + "tagName": "toolchain", + "attributeValues": { + "name": "nodejs" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_nodejs/5.8.3/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/rules_nodejs/releases/download/5.8.3/rules_nodejs-core-5.8.3.tar.gz" + ], + "integrity": "sha256-voT7UjiiA0hwgQtgrmb4VV2zhf+TG9b2G+IEcy341KY=", + "strip_prefix": "", + "remote_patches": { + "https://bcr.bazel.build/modules/rules_nodejs/5.8.3/patches/module_dot_bazel.patch": "sha256-uUj19ijdMInU3vv2xy9e5I9wuA5jN6Rtm0OW699kZ2o=" + }, + "remote_patch_strip": 0 + } + } + }, + "rules_python@0.31.0": { + "name": "rules_python", + "version": "0.31.0", + "key": "rules_python@0.31.0", + "repoName": "rules_python", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@pythons_hub//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_python//python/private/bzlmod:internal_deps.bzl", + "extensionName": "internal_deps", + "usingModule": "rules_python@0.31.0", + "location": { + "file": "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel", + "line": 15, + "column": 30 + }, + "imports": { + "rules_python_internal": "rules_python_internal", + "pypi__build": "pypi__build", + "pypi__click": "pypi__click", + "pypi__colorama": "pypi__colorama", + "pypi__importlib_metadata": "pypi__importlib_metadata", + "pypi__installer": "pypi__installer", + "pypi__more_itertools": "pypi__more_itertools", + "pypi__packaging": "pypi__packaging", + "pypi__pep517": "pypi__pep517", + "pypi__pip": "pypi__pip", + "pypi__pip_tools": "pypi__pip_tools", + "pypi__pyproject_hooks": "pypi__pyproject_hooks", + "pypi__setuptools": "pypi__setuptools", + "pypi__tomli": "pypi__tomli", + "pypi__wheel": "pypi__wheel", + "pypi__zipp": "pypi__zipp" + }, + "devImports": [], + "tags": [ + { + "tagName": "install", + "attributeValues": {}, + "devDependency": false, + "location": { "file": "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel", "line": 16, "column": 22 @@ -1728,7 +2184,7 @@ } ], "deps": { - "bazel_features": "bazel_features@1.1.1", + "bazel_features": "bazel_features@1.9.0", "bazel_skylib": "bazel_skylib@1.5.0", "platforms": "platforms@0.0.8", "rules_proto": "rules_proto@5.3.0-21.7", @@ -2193,6 +2649,193 @@ } } }, + "aspect_bazel_lib@1.39.1": { + "name": "aspect_bazel_lib", + "version": "1.39.1", + "key": "aspect_bazel_lib@1.39.1", + "repoName": "aspect_bazel_lib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@copy_directory_toolchains//:all", + "@copy_to_directory_toolchains//:all", + "@jq_toolchains//:all", + "@yq_toolchains//:all", + "@coreutils_toolchains//:all", + "@expand_template_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "aspect_bazel_lib@1.39.1", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/MODULE.bazel", + "line": 16, + "column": 37 + }, + "imports": { + "copy_directory_toolchains": "copy_directory_toolchains", + "copy_to_directory_toolchains": "copy_to_directory_toolchains", + "coreutils_toolchains": "coreutils_toolchains", + "expand_template_toolchains": "expand_template_toolchains", + "jq_toolchains": "jq_toolchains", + "yq_toolchains": "yq_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "copy_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/MODULE.bazel", + "line": 17, + "column": 36 + } + }, + { + "tagName": "copy_to_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/MODULE.bazel", + "line": 18, + "column": 39 + } + }, + { + "tagName": "jq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/MODULE.bazel", + "line": 19, + "column": 24 + } + }, + { + "tagName": "yq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/MODULE.bazel", + "line": 20, + "column": 24 + } + }, + { + "tagName": "coreutils", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/MODULE.bazel", + "line": 21, + "column": 31 + } + }, + { + "tagName": "expand_template", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/MODULE.bazel", + "line": 22, + "column": 37 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", + "io_bazel_stardoc": "stardoc@0.5.6", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/aspect-build/bazel-lib/releases/download/v1.39.1/bazel-lib-v1.39.1.tar.gz" + ], + "integrity": "sha256-XpWI2EB6V2dx8eDYlW9UH3hhDxtuTMopryoJb8z+OyQ=", + "strip_prefix": "bazel-lib-1.39.1", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/patches/go_dev_dep.patch": "sha256-dEFxvx2hBB/tOWlknfRHRXNCdvYpvrxsYHWaMGF2QgA=", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.39.1/patches/module_dot_bazel_version.patch": "sha256-Q9TyfuHV8x9ErdbcRoQ6OGdgZkrbraO02+6BnOBFpQU=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_lint@0.7.0": { + "name": "aspect_rules_lint", + "version": "0.7.0", + "key": "aspect_rules_lint@0.7.0", + "repoName": "aspect_rules_lint", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.39.1", + "aspect_rules_js": "aspect_rules_js@1.35.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.8", + "rules_proto": "rules_proto@5.3.0-21.7", + "rules_buf": "rules_buf@0.1.1", + "com_google_protobuf": "protobuf@23.1", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/aspect-build/rules_lint/releases/download/v0.7.0/rules_lint-v0.7.0.tar.gz" + ], + "integrity": "sha256-bjLfcItA6oxtRILur4/Wr6qHmNAChlS6JbZnta7lcHw=", + "strip_prefix": "rules_lint-0.7.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_lint/0.7.0/patches/module_dot_bazel_version.patch": "sha256-W0gn/iYu/2Zz1QxzW3gcqHl2qm+E8UZc8p8fIyWHvp0=" + }, + "remote_patch_strip": 1 + } + } + }, + "rules_proto@5.3.0-21.7": { + "name": "rules_proto", + "version": "5.3.0-21.7", + "key": "rules_proto@5.3.0-21.7", + "repoName": "rules_proto", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "com_google_protobuf": "protobuf@23.1", + "rules_cc": "rules_cc@0.0.9", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.7.tar.gz" + ], + "integrity": "sha256-3D+yBqLLNEG0heseQjFlsjEjWh6psDG0Qzz3vB+kYN0=", + "strip_prefix": "rules_proto-5.3.0-21.7", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, "gazelle@0.34.0": { "name": "gazelle", "version": "0.34.0", @@ -2472,7 +3115,7 @@ } ], "deps": { - "bazel_features": "bazel_features@1.1.1", + "bazel_features": "bazel_features@1.9.0", "bazel_skylib": "bazel_skylib@1.5.0", "platforms": "platforms@0.0.8", "rules_proto": "rules_proto@5.3.0-21.7", @@ -2495,35 +3138,6 @@ } } }, - "rules_proto@5.3.0-21.7": { - "name": "rules_proto", - "version": "5.3.0-21.7", - "key": "rules_proto@5.3.0-21.7", - "repoName": "rules_proto", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [], - "extensionUsages": [], - "deps": { - "bazel_skylib": "bazel_skylib@1.5.0", - "com_google_protobuf": "protobuf@23.1", - "rules_cc": "rules_cc@0.0.9", - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "urls": [ - "https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.7.tar.gz" - ], - "integrity": "sha256-3D+yBqLLNEG0heseQjFlsjEjWh6psDG0Qzz3vB+kYN0=", - "strip_prefix": "rules_proto-5.3.0-21.7", - "remote_patches": {}, - "remote_patch_strip": 0 - } - } - }, "rules_license@0.0.8": { "name": "rules_license", "version": "0.0.8", @@ -2865,71 +3479,24 @@ } } }, - "bazel_features@1.1.1": { - "name": "bazel_features", - "version": "1.1.1", - "key": "bazel_features@1.1.1", - "repoName": "bazel_features", + "apple_support@1.13.0": { + "name": "apple_support", + "version": "1.13.0", + "key": "apple_support@1.13.0", + "repoName": "build_bazel_apple_support", "executionPlatformsToRegister": [], - "toolchainsToRegister": [], + "toolchainsToRegister": [ + "@local_config_apple_cc_toolchains//:all" + ], "extensionUsages": [ { - "extensionBzlFile": "@bazel_features//private:extensions.bzl", - "extensionName": "version_extension", - "usingModule": "bazel_features@1.1.1", + "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl", + "extensionName": "apple_cc_configure_extension", + "usingModule": "apple_support@1.13.0", "location": { - "file": "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel", - "line": 6, - "column": 24 - }, - "imports": { - "bazel_features_globals": "bazel_features_globals", - "bazel_features_version": "bazel_features_version" - }, - "devImports": [], - "tags": [], - "hasDevUseExtension": false, - "hasNonDevUseExtension": true - } - ], - "deps": { - "bazel_tools": "bazel_tools@_", - "local_config_platform": "local_config_platform@_" - }, - "repoSpec": { - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", - "ruleClassName": "http_archive", - "attributes": { - "urls": [ - "https://github.com/bazel-contrib/bazel_features/releases/download/v1.1.1/bazel_features-v1.1.1.tar.gz" - ], - "integrity": "sha256-YsJuQn5cvHUQJERpJ2IuOYqdzfMsZDJSOIFXCdEcEag=", - "strip_prefix": "bazel_features-1.1.1", - "remote_patches": { - "https://bcr.bazel.build/modules/bazel_features/1.1.1/patches/module_dot_bazel_version.patch": "sha256-+56MAEsc7bYN/Pzhn252ZQUxiRzZg9bynXj1qpsmCYs=" - }, - "remote_patch_strip": 1 - } - } - }, - "apple_support@1.13.0": { - "name": "apple_support", - "version": "1.13.0", - "key": "apple_support@1.13.0", - "repoName": "build_bazel_apple_support", - "executionPlatformsToRegister": [], - "toolchainsToRegister": [ - "@local_config_apple_cc_toolchains//:all" - ], - "extensionUsages": [ - { - "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl", - "extensionName": "apple_cc_configure_extension", - "usingModule": "apple_support@1.13.0", - "location": { - "file": "https://bcr.bazel.build/modules/apple_support/1.13.0/MODULE.bazel", - "line": 19, - "column": 35 + "file": "https://bcr.bazel.build/modules/apple_support/1.13.0/MODULE.bazel", + "line": 19, + "column": 35 }, "imports": { "local_config_apple_cc": "local_config_apple_cc", @@ -3028,6 +3595,57 @@ "remote_patch_strip": 1 } } + }, + "rules_buf@0.1.1": { + "name": "rules_buf", + "version": "0.1.1", + "key": "rules_buf@0.1.1", + "repoName": "rules_buf", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@rules_buf_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_buf//buf:extensions.bzl", + "extensionName": "ext", + "usingModule": "rules_buf@0.1.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_buf/0.1.1/MODULE.bazel", + "line": 14, + "column": 20 + }, + "imports": { + "rules_buf_toolchains": "rules_buf_toolchains" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "platforms": "platforms@0.0.8", + "com_google_protobuf": "protobuf@23.1", + "rules_proto": "rules_proto@5.3.0-21.7", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + }, + "repoSpec": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "urls": [ + "https://github.com/bufbuild/rules_buf/archive/abbbfce7c3fccf1d4b87afa28140d9ce53f80057.zip" + ], + "integrity": "sha256-/cvkfvtor1wk3+dSdJqwsqDBrAIV49KM9unuKODCrvs=", + "strip_prefix": "rules_buf-abbbfce7c3fccf1d4b87afa28140d9ce53f80057", + "remote_patches": { + "https://bcr.bazel.build/modules/rules_buf/0.1.1/patches/bzlmod.patch": "sha256-D5PYozjx10XcIqo0mMyoGIqO3PJHJtxLQ1vo3zesDS0=" + }, + "remote_patch_strip": 1 + } + } } }, "moduleExtensions": { @@ -4254,140 +4872,54298 @@ "sha512": "sha512-hdDm8u0FrPEorV1qXA+W01DCR9zeNX5fwe5fXFUyzmA/JjLxMjt7/W672rSOWIjWHGkD6cZYOFLjIg/0O+a8kg==" } }, - "nuget.system.reflection.emit.ilgeneration.v4.7.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "nuget.system.reflection.emit.ilgeneration.v4.7.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "system.reflection.emit.ilgeneration", + "version": "4.7.0", + "sha512": "sha512-iQ2Xw8qC8YCsh3+OUAMtD4g8LiA5r9ZxVhlDZn3Dok7C382JbLlPNyyXXCW3KRiv0Ebvwt7b1ZYqmIoCerrI2Q==" + } + }, + "nuget.system.runtime.handles.v4.3.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "system.runtime.handles", + "version": "4.3.0", + "sha512": "sha512-CluvHdVUv54BvLTOCCyybugreDNk/rR8unMPruzXDtxSjvrQOU3M4R831/lQf4YI8VYp668FGQa/01E+Rq8PEQ==" + } + }, + "nuget.system.text.encoding.v4.3.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "system.text.encoding", + "version": "4.3.0", + "sha512": "sha512-b/f+7HMTpxIfeV7H03bkuHKMFylCGfr9/U6gePnfFFW0aF8LOWLDgQCY6V1oWUqDksC3mdNuyChM1vy9TP4sZw==" + } + }, + "nuget.system.runtime.compilerservices.unsafe.v6.0.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "system.runtime.compilerservices.unsafe", + "version": "6.0.0", + "sha512": "sha512-1AVzAb5OxJNvJLnOADtexNmWgattm2XVOT3TjQTN7Dd4SqoSwai1CsN2fth42uQldJSQdz/sAec0+TzxBFgisw==" + } + }, + "nuget.microsoft.extensions.dependencyinjection.abstractions.v3.1.9": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.extensions.dependencyinjection.abstractions", + "version": "3.1.9", + "sha512": "sha512-qbiwYBpKjQ2u3FNFDuznksbzsR7e/pUK2XR/osxiU/1Lo+M8MqjRnvBm5x/Uvtv2iDdMNQ2N+smrPgRGKDXboQ==" + } + }, + "nuget.microsoft.bcl.asyncinterfaces.v7.0.0": { + "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", + "ruleClassName": "nuget_archive", + "attributes": { + "sources": [ + "https://api.nuget.org/v3/index.json" + ], + "id": "microsoft.bcl.asyncinterfaces", + "version": "7.0.0", + "sha512": "sha512-Nb9B1lxCab0LZi0ijNLEpw4hgwt0Wl8QQM1DxIhJS2otChAtIVMfyGrYl3YzdSjspvBYPliJlr0kCtizNAVe3w==" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "", + "rules_dotnet", + "rules_dotnet~" + ], + [ + "rules_dotnet~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "rules_dotnet~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@apple_rules_lint~//lint:extensions.bzl%linter": { + "general": { + "bzlTransitiveDigest": "g7izj5kLCmsajh8IospHh4ZQ35dyM0FIrA8D4HapAsM=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "apple_linters": { + "bzlFile": "@@apple_rules_lint~//lint/private:register_linters.bzl", + "ruleClassName": "register_linters", + "attributes": { + "linters": { + "java-spotbugs": "'@@//java:spotbugs-config'", + "rust-rustfmt": "'@@//rust:enable-rustfmt'" + } + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "TMkUP4/N3ZORvZrcDg9FxSoW9r/7+uDVH/SI2biRyJg=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_apple_cc": { + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf", + "attributes": {} + }, + "local_config_apple_cc_toolchains": { + "bzlFile": "@@apple_support~//crosstool:setup.bzl", + "ruleClassName": "_apple_cc_autoconf_toolchains", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [ + [ + "apple_support~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@aspect_bazel_lib~//lib:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "UgulrvIrZqOChJ822leOVtMclnnnKcRjqb14fyA2A8s=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "expand_template_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "copy_to_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "jq": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_host_alias_repo", + "attributes": {} + }, + "jq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "1.6" + } + }, + "expand_template_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "copy_to_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "expand_template_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "copy_to_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "coreutils_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "0.0.16" + } + }, + "coreutils_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "0.0.16" + } + }, + "copy_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_toolchains_repo", + "attributes": { + "user_repository_name": "copy_directory" + } + }, + "copy_to_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "yq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "4.25.2" + } + }, + "copy_to_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "copy_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "coreutils_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "0.0.16" + } + }, + "coreutils_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "0.0.16" + } + }, + "coreutils_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_toolchains_repo", + "attributes": { + "user_repository_name": "coreutils" + } + }, + "copy_directory_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "yq_linux_s390x": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_s390x", + "version": "4.25.2" + } + }, + "yq": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_host_alias_repo", + "attributes": {} + }, + "expand_template_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "copy_directory_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "linux_amd64" + } + }, + "jq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "1.6" + } + }, + "yq_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "darwin_amd64", + "version": "4.25.2" + } + }, + "copy_directory_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "expand_template_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "linux_arm64" + } + }, + "jq_linux_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "linux_amd64", + "version": "1.6" + } + }, + "expand_template_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_toolchains_repo", + "attributes": { + "user_repository_name": "expand_template" + } + }, + "yq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "4.25.2" + } + }, + "copy_to_directory_darwin_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_platform_repo", + "attributes": { + "platform": "darwin_amd64" + } + }, + "jq_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "1.6" + } + }, + "expand_template_freebsd_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl", + "ruleClassName": "expand_template_platform_repo", + "attributes": { + "platform": "freebsd_amd64" + } + }, + "yq_linux_ppc64le": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_ppc64le", + "version": "4.25.2" + } + }, + "copy_to_directory_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl", + "ruleClassName": "copy_to_directory_toolchains_repo", + "attributes": { + "user_repository_name": "copy_to_directory" + } + }, + "jq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl", + "ruleClassName": "jq_toolchains_repo", + "attributes": { + "user_repository_name": "jq" + } + }, + "copy_directory_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "darwin_arm64" + } + }, + "copy_directory_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl", + "ruleClassName": "copy_directory_platform_repo", + "attributes": { + "platform": "windows_amd64" + } + }, + "yq_darwin_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "darwin_arm64", + "version": "4.25.2" + } + }, + "yq_toolchains": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_toolchains_repo", + "attributes": { + "user_repository_name": "yq" + } + }, + "coreutils_windows_amd64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl", + "ruleClassName": "coreutils_platform_repo", + "attributes": { + "platform": "windows_amd64", + "version": "0.0.16" + } + }, + "yq_linux_arm64": { + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl", + "ruleClassName": "yq_platform_repo", + "attributes": { + "platform": "linux_arm64", + "version": "4.25.2" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib~", + "aspect_bazel_lib", + "aspect_bazel_lib~" + ], + [ + "aspect_bazel_lib~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "aspect_bazel_lib~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@aspect_rules_esbuild~//esbuild:extensions.bzl%esbuild": { + "general": { + "bzlTransitiveDigest": "NpyCp5BGgpsXhEqSPNHxcyvvP8/Nxd903RaNwCuEzcE=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "npm__esbuild_0.19.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild", + "version": "0.19.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-U9CHtKSy+EpPsEBa+/A2gMs/h3ylBC0H0KSqIg7tpztHerLi6nrrcoUJAkNCEPumx8yJ+Byic4BVwHgRbN0TBg==", + "url": "", + "commit": "", + "patch_args": [ + "-p0" + ], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": false + } + }, + "npm__esbuild_0.19.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild", + "version": "0.19.9", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": {}, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "esbuild_linux-x64": { + "bzlFile": "@@aspect_rules_esbuild~//esbuild:repositories.bzl", + "ruleClassName": "esbuild_repositories", + "attributes": { + "esbuild_version": "0.19.9", + "platform": "linux-x64" + } + }, + "esbuild_toolchains": { + "bzlFile": "@@aspect_rules_esbuild~//esbuild/private:toolchains_repo.bzl", + "ruleClassName": "toolchains_repo", + "attributes": { + "esbuild_version": "0.19.9", + "user_repository_name": "esbuild" + } + }, + "esbuild_darwin-arm64": { + "bzlFile": "@@aspect_rules_esbuild~//esbuild:repositories.bzl", + "ruleClassName": "esbuild_repositories", + "attributes": { + "esbuild_version": "0.19.9", + "platform": "darwin-arm64" + } + }, + "esbuild_win32-x64": { + "bzlFile": "@@aspect_rules_esbuild~//esbuild:repositories.bzl", + "ruleClassName": "esbuild_repositories", + "attributes": { + "esbuild_version": "0.19.9", + "platform": "win32-x64" + } + }, + "esbuild_darwin-x64": { + "bzlFile": "@@aspect_rules_esbuild~//esbuild:repositories.bzl", + "ruleClassName": "esbuild_repositories", + "attributes": { + "esbuild_version": "0.19.9", + "platform": "darwin-x64" + } + }, + "esbuild_linux-arm64": { + "bzlFile": "@@aspect_rules_esbuild~//esbuild:repositories.bzl", + "ruleClassName": "esbuild_repositories", + "attributes": { + "esbuild_version": "0.19.9", + "platform": "linux-arm64" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "aspect_bazel_lib~", + "bazel_tools", + "bazel_tools" + ], + [ + "aspect_rules_esbuild~", + "aspect_rules_js", + "aspect_rules_js~" + ], + [ + "aspect_rules_esbuild~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "aspect_rules_js~", + "aspect_bazel_lib", + "aspect_bazel_lib~" + ], + [ + "aspect_rules_js~", + "bazel_features", + "bazel_features~" + ], + [ + "aspect_rules_js~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "aspect_rules_js~", + "bazel_tools", + "bazel_tools" + ], + [ + "bazel_features~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@aspect_rules_js~//npm:extensions.bzl%npm": { + "general": { + "bzlTransitiveDigest": "2nkYCSmcLqPTKNMrg3DKjkK0tcr+cEF9gToFp7IjIxw=", + "recordedFileInputs": { + "@@//pnpm-lock.yaml": "5df93481cb37be2797fafb72c863f79ae5e5ea952c6711c985dc4cf5f213c32a", + "@@//.npmrc": "25afec638a4a1dc4a7277d8babd30464e9d942cf93d3e47505a4677adad1a901" + }, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "npm__at_babel_compat-data__7.20.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/compat-data", + "version": "7.20.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/compat-data": [ + "7.20.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_private-theming__5.15.8__28312804": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/private-theming", + "version": "5.15.8_28312804", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HMDPO416iMZPqs8nGUL3GJMDNpJtE1Uefw/Aw+zTKJHX5JnT+Bms41e2065BUT/zR5dYcKjFP4gQMwW5QX7nvA==", + "url": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.15.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__to-fast-properties__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "to-fast-properties", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "url": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_floating-ui_dom__1.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@floating-ui/dom", + "version": "1.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iA8qE43/H5iGozC3W0YSnVSW42Vh522yyM1gj+BqRwVsTNOyr231PsXDaV04yT39PsO0QL2QpbI/M0ZaLUQgRQ==", + "url": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jridgewell_trace-mapping__0.3.20__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/trace-mapping", + "version": "0.3.20", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + }, + "transitive_closure": { + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__chokidar__3.5.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "chokidar", + "version": "3.5.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "url": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_eslint-plugin__5.44.0__909934447__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/eslint-plugin", + "version": "5.44.0_909934447", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/parser": "5.44.0_-679725046", + "@typescript-eslint/scope-manager": "5.44.0", + "@typescript-eslint/type-utils": "5.44.0_-679725046", + "@typescript-eslint/utils": "5.44.0_-679725046", + "debug": "4.3.4_supports-color_8.1.1", + "eslint": "8.52.0", + "ignore": "5.2.4", + "natural-compare-lite": "1.4.0", + "regexpp": "3.2.0", + "semver": "7.5.4", + "tsutils": "3.21.0_typescript_5.3.3", + "typescript": "5.3.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json-schema": [ + "7.0.11" + ], + "@types/semver": [ + "7.3.13" + ], + "@typescript-eslint/eslint-plugin": [ + "5.44.0_909934447" + ], + "@typescript-eslint/parser": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-union": [ + "2.1.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "natural-compare-lite": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "slash": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fresh__0.5.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fresh", + "version": "0.5.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fresh": [ + "0.5.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_yargs-parser__21.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/yargs-parser", + "version": "21.0.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/yargs-parser": [ + "21.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__color-convert__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "color-convert", + "version": "2.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "color-name": "1.1.4" + }, + "transitive_closure": { + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__synckit__0.8.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "synckit", + "version": "0.8.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@pkgr/core": "0.1.0", + "tslib": "2.6.2" + }, + "transitive_closure": { + "@pkgr/core": [ + "0.1.0" + ], + "synckit": [ + "0.8.8" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__merge2__1.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "merge2", + "version": "1.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "merge2": [ + "1.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_stack-utils__2.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/stack-utils", + "version": "2.0.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/stack-utils": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__stack-utils__2.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "stack-utils", + "version": "2.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "url": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__wrap-ansi__7.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "wrap-ansi", + "version": "7.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "ansi-styles": "4.3.0", + "string-width": "4.2.3", + "strip-ansi": "6.0.1" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "emoji-regex": [ + "8.0.0" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ], + "wrap-ansi": [ + "7.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jake__10.8.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jake", + "version": "10.8.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "async": "3.2.4", + "chalk": "4.1.2", + "filelist": "1.0.4", + "minimatch": "3.1.2" + }, + "transitive_closure": { + "ansi-styles": [ + "4.3.0" + ], + "async": [ + "3.2.4" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11", + "2.0.1" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "filelist": [ + "1.0.4" + ], + "has-flag": [ + "4.0.0" + ], + "jake": [ + "10.8.5" + ], + "minimatch": [ + "3.1.2", + "5.1.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__statuses__1.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "statuses", + "version": "1.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "statuses": [ + "1.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-weakset__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-weakset", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.1.3" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "is-weakset": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__deep-is__0.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "deep-is", + "version": "0.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "url": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fsevents__2.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fsevents", + "version": "2.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fsevents": [ + "2.3.2" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ansi-styles__3.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-styles", + "version": "3.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "color-convert": "1.9.3" + }, + "transitive_closure": { + "ansi-styles": [ + "3.2.1" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__standard-engine__15.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "standard-engine", + "version": "15.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4xwUhJNo1g/L2cleysUqUv7/btn7GEbYJvmgKrQ2vd/8pkTmN8cpqAZg+BT8Z1hNeEH787iWUdOpL8fmApLtxA==", + "url": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__define-properties__1.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "define-properties", + "version": "1.1.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-property-descriptors": "1.0.0", + "object-keys": "1.1.1" + }, + "transitive_closure": { + "define-properties": [ + "1.1.4" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "object-keys": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fsevents__2.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fsevents", + "version": "2.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "url": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fastq__1.13.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fastq", + "version": "1.13.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "reusify": "1.0.4" + }, + "transitive_closure": { + "fastq": [ + "1.13.0" + ], + "reusify": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__merge2__1.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "merge2", + "version": "1.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "url": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_react-router-dom__5.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react-router-dom", + "version": "5.3.3", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react-router-dom" + ] + }, + "deps": { + "@types/history": "4.7.11", + "@types/react": "18.2.48", + "@types/react-router": "5.1.19" + }, + "transitive_closure": { + "@types/history": [ + "4.7.11" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-router": [ + "5.1.19" + ], + "@types/react-router-dom": [ + "5.3.3" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_istanbul-lib-coverage__2.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/istanbul-lib-coverage", + "version": "2.0.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/istanbul-lib-coverage": [ + "2.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__csstype__3.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "csstype", + "version": "3.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__zen-observable-ts__1.2.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "zen-observable-ts", + "version": "1.2.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "zen-observable": "0.8.15" + }, + "transitive_closure": { + "zen-observable": [ + "0.8.15" + ], + "zen-observable-ts": [ + "1.2.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__glob__8.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "glob", + "version": "8.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.4", + "minimatch": "5.1.0", + "once": "1.4.0" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "8.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "5.1.0" + ], + "once": [ + "1.4.0" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__balanced-match__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "balanced-match", + "version": "1.0.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-router__6.21.3__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-router", + "version": "6.21.3_react_18.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@remix-run/router": "1.14.2", + "react": "18.2.0" + }, + "transitive_closure": { + "@remix-run/router": [ + "1.14.2" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "react": [ + "18.2.0" + ], + "react-router": [ + "6.21.3_react_18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__which-boxed-primitive__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "which-boxed-primitive", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-bigint": "1.0.4", + "is-boolean-object": "1.1.2", + "is-number-object": "1.0.7", + "is-string": "1.0.7", + "is-symbol": "1.0.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_utils__5.15.8__28312804": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/utils", + "version": "5.15.8_28312804", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Q6Z/xSxi1Z6xQ5Qj9p4ZTHudwfrrwFALtU6H1O222pXudg9Qm0zHdiwJQiHT9L6jMIN78ZujEfGHserMoHUrQw==", + "url": "https://registry.npmjs.org/@mui/utils/-/utils-5.15.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-number-object__1.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-number-object", + "version": "1.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "url": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_darwin-arm64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/darwin-arm64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/darwin-arm64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helpers__7.20.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helpers", + "version": "7.20.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", + "url": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__js-tokens__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "js-tokens", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "url": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__readable-stream__2.3.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "readable-stream", + "version": "2.3.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "url": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__typescript__5.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "typescript", + "version": "5.3.3", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "typescript" + ] + }, + "deps": {}, + "transitive_closure": { + "typescript": [ + "5.3.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_popperjs_core__2.11.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@popperjs/core", + "version": "2.11.8", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@popperjs/core": [ + "2.11.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__on-finished__2.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "on-finished", + "version": "2.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ee-first": "1.1.1" + }, + "transitive_closure": { + "ee-first": [ + "1.1.1" + ], + "on-finished": [ + "2.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-exists__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-exists", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-exists": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__string.prototype.matchall__4.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.matchall", + "version": "4.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "url": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__async__3.2.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "async", + "version": "3.2.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "url": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__y18n__5.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "y18n", + "version": "5.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "url": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_eslint_eslintrc__2.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint/eslintrc", + "version": "2.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ajv": "6.12.6", + "debug": "4.3.4_supports-color_8.1.1", + "espree": "9.6.1", + "globals": "13.23.0", + "ignore": "5.2.4", + "import-fresh": "3.3.0", + "js-yaml": "4.1.0", + "minimatch": "3.1.2", + "strip-json-comments": "3.1.1" + }, + "transitive_closure": { + "@eslint/eslintrc": [ + "2.1.2" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "concat-map": [ + "0.0.1" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "globals": [ + "13.23.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "parent-module": [ + "1.0.1" + ], + "punycode": [ + "2.1.1" + ], + "resolve-from": [ + "4.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "8.1.1" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-transform-react-jsx-development__7.22.5__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-react-jsx-development", + "version": "7.22.5_at_babel_core_7.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.20.2", + "@babel/plugin-transform-react-jsx": "7.23.4_at_babel_core_7.20.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.20.2" + ], + "@babel/plugin-transform-react-jsx-development": [ + "7.22.5_at_babel_core_7.20.2" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__p-limit__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-limit", + "version": "3.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "yocto-queue": "0.1.0" + }, + "transitive_closure": { + "p-limit": [ + "3.1.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_sinonjs_commons__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sinonjs/commons", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "url": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__md5__2.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "md5", + "version": "2.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "url": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yargs-parser__20.2.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yargs-parser", + "version": "20.2.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "url": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yargs-parser__20.2.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yargs-parser", + "version": "20.2.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "url": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__graphql__16.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "graphql", + "version": "16.8.1", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "graphql" + ] + }, + "deps": {}, + "transitive_closure": { + "graphql": [ + "16.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__builtins__5.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "builtins", + "version": "5.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "semver": "7.5.4" + }, + "transitive_closure": { + "builtins": [ + "5.0.1" + ], + "lru-cache": [ + "6.0.0" + ], + "semver": [ + "7.5.4" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-lifecycles-compat__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-lifecycles-compat", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", + "url": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ee-first__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ee-first", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ee-first": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ws__8.16.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ws", + "version": "8.16.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "ws" + ] + }, + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "url": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_config-array__0.11.13": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@humanwhocodes/config-array", + "version": "0.11.13", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "url": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_config-array__0.11.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@humanwhocodes/config-array", + "version": "0.11.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "url": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__diff-sequences__29.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "diff-sequences", + "version": "29.6.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "diff-sequences": [ + "29.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jridgewell_set-array__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/set-array", + "version": "1.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@jridgewell/set-array": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__he__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "he", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "url": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yargs__16.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yargs", + "version": "16.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "url": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__color-convert__1.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "color-convert", + "version": "1.9.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "color-name": "1.1.3" + }, + "transitive_closure": { + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_win32-arm64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/win32-arm64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/win32-arm64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_is-prop-valid__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/is-prop-valid", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", + "url": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_nodelib_fs.scandir__2.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@nodelib/fs.scandir", + "version": "2.1.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "1.2.0" + }, + "transitive_closure": { + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "queue-microtask": [ + "1.2.3" + ], + "run-parallel": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-config-standard-with-typescript__23.0.0__-1246222472": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-config-standard-with-typescript", + "version": "23.0.0_-1246222472", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iaaWifImn37Z1OXbNW1es7KI+S7D408F9ys0bpaQf2temeBWlvb0Nc5qHkOgYaRb5QxTZT32GGeN1gtswASOXA==", + "url": "https://registry.npmjs.org/eslint-config-standard-with-typescript/-/eslint-config-standard-with-typescript-23.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ws__8.16.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ws", + "version": "8.16.0", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "ws" + ] + }, + "deps": {}, + "transitive_closure": { + "ws": [ + "8.16.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-plugin-n__15.5.1__eslint_8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-n", + "version": "15.5.1_eslint_8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kAd+xhZm7brHoFLzKLB7/FGRFJNg/srmv67mqb7tto22rpr4wv/LV6RuXzAfv3jbab7+k1wi42PsIhGviywaaw==", + "url": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.5.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pako__1.0.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pako", + "version": "1.0.11", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pako": [ + "1.0.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_yargs__17.0.32": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/yargs", + "version": "17.0.32", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "url": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__optionator__0.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "optionator", + "version": "0.9.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@aashutoshrathi/word-wrap": "1.2.6", + "deep-is": "0.1.4", + "fast-levenshtein": "2.0.6", + "levn": "0.4.1", + "prelude-ls": "1.2.1", + "type-check": "0.4.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "deep-is": [ + "0.1.4" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "levn": [ + "0.4.1" + ], + "optionator": [ + "0.9.3" + ], + "prelude-ls": [ + "1.2.1" + ], + "type-check": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__safe-buffer__5.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "safe-buffer", + "version": "5.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "safe-buffer": [ + "5.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__object-assign__4.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object-assign", + "version": "4.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "url": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", + "url": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__find-up__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "find-up", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "url": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__import-fresh__3.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "import-fresh", + "version": "3.3.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "parent-module": "1.0.1", + "resolve-from": "4.0.0" + }, + "transitive_closure": { + "callsites": [ + "3.1.0" + ], + "import-fresh": [ + "3.3.0" + ], + "parent-module": [ + "1.0.1" + ], + "resolve-from": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-typed-array__1.1.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-typed-array", + "version": "1.1.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "url": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_scheduler__0.16.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/scheduler", + "version": "0.16.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", + "url": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__qs__6.11.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "qs", + "version": "6.11.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "side-channel": "1.0.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "object-inspect": [ + "1.12.2" + ], + "qs": [ + "6.11.0" + ], + "side-channel": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__find-root__1.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "find-root", + "version": "1.1.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "find-root": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__parent-module__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "parent-module", + "version": "1.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "callsites": "3.1.0" + }, + "transitive_closure": { + "callsites": [ + "3.1.0" + ], + "parent-module": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__destroy__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "destroy", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "destroy": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__p-locate__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-locate", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "url": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__update-browserslist-db__1.0.10__browserslist_4.21.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "update-browserslist-db", + "version": "1.0.10_browserslist_4.21.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "browserslist": "4.21.4", + "escalade": "3.1.1", + "picocolors": "1.0.0" + }, + "transitive_closure": { + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_typescript-eslint_visitor-keys__5.44.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/visitor-keys", + "version": "5.44.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ==", + "url": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_fake-timers__11.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sinonjs/fake-timers", + "version": "11.2.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@sinonjs/commons": "3.0.0" + }, + "transitive_closure": { + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "11.2.2" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array-flatten__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array-flatten", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "url": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__escape-string-regexp__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "escape-string-regexp", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escape-string-regexp": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-mips64el__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-mips64el", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-mips64el": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-riscv64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-riscv64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-riscv64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jridgewell_sourcemap-codec__1.4.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/sourcemap-codec", + "version": "1.4.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "url": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__globby__11.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "globby", + "version": "11.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "url": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__path-type__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-type", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "url": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__glob__8.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "glob", + "version": "8.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "url": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_aashutoshrathi_word-wrap__1.2.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@aashutoshrathi/word-wrap", + "version": "1.2.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "url": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__regexp.prototype.flags__1.4.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regexp.prototype.flags", + "version": "1.4.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "functions-have-names": "1.2.3" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "object-keys": [ + "1.1.1" + ], + "regexp.prototype.flags": [ + "1.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-unicode-supported__0.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-unicode-supported", + "version": "0.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "url": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_code-frame__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/code-frame", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "url": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-transition-group__4.4.5__react-dom_18.2.0__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-transition-group", + "version": "4.4.5_react-dom_18.2.0__react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "url": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-ppc64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-ppc64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-ppc64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__chalk__2.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "chalk", + "version": "2.4.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "ansi-styles": "3.2.1", + "escape-string-regexp": "1.0.5", + "supports-color": "5.5.0" + }, + "transitive_closure": { + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "supports-color": [ + "5.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-transition-group__4.4.5__react-dom_18.2.0__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-transition-group", + "version": "4.4.5_react-dom_18.2.0__react_18.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "dom-helpers": "5.2.1", + "loose-envify": "1.4.0", + "prop-types": "15.8.1", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.9" + ], + "csstype": [ + "3.1.2" + ], + "dom-helpers": [ + "5.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "16.13.1" + ], + "react-transition-group": [ + "4.4.5_react-dom_18.2.0__react_18.2.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "scheduler": [ + "0.23.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__queue-microtask__1.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "queue-microtask", + "version": "1.2.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "queue-microtask": [ + "1.2.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__call-bind__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "call-bind", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "function-bind": "1.1.1", + "get-intrinsic": "1.1.3" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__escape-string-regexp__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "escape-string-regexp", + "version": "1.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escape-string-regexp": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-bigint__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-bigint", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-bigints": "1.0.2" + }, + "transitive_closure": { + "has-bigints": [ + "1.0.2" + ], + "is-bigint": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_history__4.7.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/history", + "version": "4.7.11", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/history": [ + "4.7.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_sheet__1.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/sheet", + "version": "1.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==", + "url": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__md5__2.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "md5", + "version": "2.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "1.1.6" + }, + "transitive_closure": { + "charenc": [ + "0.0.2" + ], + "crypt": [ + "0.0.2" + ], + "is-buffer": [ + "1.1.6" + ], + "md5": [ + "2.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__string.prototype.trimend__1.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.trimend", + "version": "1.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "url": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__esutils__2.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esutils", + "version": "2.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "url": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__get-symbol-description__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-symbol-description", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.1.3" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_aria-query__5.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/aria-query", + "version": "5.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", + "url": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__brace-expansion__1.1.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "brace-expansion", + "version": "1.1.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "url": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__accepts__1.3.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "accepts", + "version": "1.3.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "mime-types": "2.1.35", + "negotiator": "0.6.3" + }, + "transitive_closure": { + "accepts": [ + "1.3.8" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "negotiator": [ + "0.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__inflight__1.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "inflight", + "version": "1.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "url": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__expect__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "expect", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "url": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__supports-color__8.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "supports-color", + "version": "8.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "url": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__wrappy__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "wrappy", + "version": "1.0.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__iconv-lite__0.4.24__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "iconv-lite", + "version": "0.4.24", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "safer-buffer": "2.1.2" + }, + "transitive_closure": { + "iconv-lite": [ + "0.4.24" + ], + "safer-buffer": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__warning__4.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "warning", + "version": "4.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "url": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__side-channel__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "side-channel", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "url": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__parent-module__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "parent-module", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "url": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__graphql__16.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "graphql", + "version": "16.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "graphql" + ] + }, + "integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==", + "url": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__path-is-absolute__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-is-absolute", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "url": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__xml__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "xml", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "xml": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jridgewell_gen-mapping__0.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/gen-mapping", + "version": "0.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "url": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yocto-queue__0.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yocto-queue", + "version": "0.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "url": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_hash__0.9.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/hash", + "version": "0.9.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@emotion/hash": [ + "0.9.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-to-regexp__6.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-to-regexp", + "version": "6.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "url": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__isarray__2.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "isarray", + "version": "2.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "isarray": [ + "2.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ansi-colors__4.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-colors", + "version": "4.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ansi-colors": [ + "4.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__for-each__0.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "for-each", + "version": "0.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "url": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__which-typed-array__1.1.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "which-typed-array", + "version": "1.1.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "available-typed-arrays": "1.0.5", + "call-bind": "1.0.2", + "for-each": "0.3.3", + "gopd": "1.0.1", + "has-tostringtag": "1.0.0", + "is-typed-array": "1.1.10" + }, + "transitive_closure": { + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.10" + ], + "which-typed-array": [ + "1.1.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__braces__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "braces", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "url": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__string.prototype.matchall__4.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.matchall", + "version": "4.0.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4", + "get-intrinsic": "1.1.3", + "has-symbols": "1.0.3", + "internal-slot": "1.0.3", + "regexp.prototype.flags": "1.4.3", + "side-channel": "1.0.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.matchall": [ + "4.0.8" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__pkg-conf__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pkg-conf", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", + "url": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_eslint_js__8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint/js", + "version": "8.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@eslint/js": [ + "8.57.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_pkgr_core__0.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@pkgr/core", + "version": "0.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@pkgr/core": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__source-map__0.5.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map", + "version": "0.5.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "source-map": [ + "0.5.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__for-each__0.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "for-each", + "version": "0.3.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-callable": "1.2.7" + }, + "transitive_closure": { + "for-each": [ + "0.3.3" + ], + "is-callable": [ + "1.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__type-fest__0.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "type-fest", + "version": "0.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "type-fest": [ + "0.20.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__natural-compare__1.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "natural-compare", + "version": "1.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "natural-compare": [ + "1.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__regexpp__3.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regexpp", + "version": "3.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "url": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-modal__3.16.1__react-dom_18.2.0__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-modal", + "version": "3.16.1_react-dom_18.2.0__react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "react-modal" + ] + }, + "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==", + "url": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__safe-buffer__5.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "safe-buffer", + "version": "5.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "safe-buffer": [ + "5.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_typescript-eslint_utils__5.44.0__-679725046": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "5.44.0_-679725046", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fMzA8LLQ189gaBjS0MZszw5HBdZgVwxVFShCO3QN+ws3GlPkcy9YuS3U4wkT6su0w+Byjq3mS3uamy9HE4Yfjw==", + "url": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__available-typed-arrays__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "available-typed-arrays", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "available-typed-arrays": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-to-regexp__0.1.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-to-regexp", + "version": "0.1.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-to-regexp": [ + "0.1.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_react__11.11.3__28312804": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/react", + "version": "11.11.3_28312804", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@emotion/react" + ] + }, + "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==", + "url": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-scope__5.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-scope", + "version": "5.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "url": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__lru-cache__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lru-cache", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "url": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.assign__4.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.assign", + "version": "4.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "url": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__side-channel__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "side-channel", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.1.3", + "object-inspect": "1.12.2" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "object-inspect": [ + "1.12.2" + ], + "side-channel": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-environment-visitor__7.22.20__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-environment-visitor", + "version": "7.22.20", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/helper-environment-visitor": [ + "7.22.20" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_core-downloads-tracker__5.15.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/core-downloads-tracker", + "version": "5.15.8", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@mui/core-downloads-tracker": [ + "5.15.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_parse-json__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/parse-json", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "url": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__depd__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "depd", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "depd": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cookie-signature__1.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cookie-signature", + "version": "1.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "url": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-set__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-set", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "url": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__strip-bom__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-bom", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "strip-bom": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__setprototypeof__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "setprototypeof", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "setprototypeof": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__immediate__3.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "immediate", + "version": "3.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "url": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.values__1.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.values", + "version": "1.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "url": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinclair_typebox__0.27.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sinclair/typebox", + "version": "0.27.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "url": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.entries__1.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.entries", + "version": "1.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "url": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_testing-library_user-event__14.5.2__at_testing-library_dom_9.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@testing-library/user-event", + "version": "14.5.2_at_testing-library_dom_9.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@testing-library/user-event" + ] + }, + "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==", + "url": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-arguments__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-arguments", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-arguments": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__express__4.18.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "express", + "version": "4.18.3", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "express" + ] + }, + "deps": { + "accepts": "1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "1.1.2", + "on-finished": "2.4.1", + "parseurl": "1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "2.0.7", + "qs": "6.11.0", + "range-parser": "1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "1.6.18", + "utils-merge": "1.0.1", + "vary": "1.1.2" + }, + "transitive_closure": { + "accepts": [ + "1.3.8" + ], + "array-flatten": [ + "1.1.1" + ], + "body-parser": [ + "1.20.2" + ], + "bytes": [ + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.4", + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "debug": [ + "2.6.9" + ], + "depd": [ + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "ee-first": [ + "1.1.1" + ], + "encodeurl": [ + "1.0.2" + ], + "escape-html": [ + "1.0.3" + ], + "etag": [ + "1.8.1" + ], + "express": [ + "4.18.3" + ], + "finalhandler": [ + "1.2.0" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "http-errors": [ + "2.0.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "inherits": [ + "2.0.4" + ], + "ipaddr.js": [ + "1.9.1" + ], + "media-typer": [ + "0.3.0" + ], + "merge-descriptors": [ + "1.0.1" + ], + "methods": [ + "1.1.2" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.0.0", + "2.1.3" + ], + "negotiator": [ + "0.6.3" + ], + "object-inspect": [ + "1.12.2" + ], + "on-finished": [ + "2.4.1" + ], + "parseurl": [ + "1.3.3" + ], + "path-to-regexp": [ + "0.1.7" + ], + "proxy-addr": [ + "2.0.7" + ], + "qs": [ + "6.11.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.2" + ], + "safe-buffer": [ + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "send": [ + "0.18.0" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.2.0" + ], + "side-channel": [ + "1.0.4" + ], + "statuses": [ + "2.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "unpipe": [ + "1.0.0" + ], + "utils-merge": [ + "1.0.1" + ], + "vary": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__forwarded__0.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "forwarded", + "version": "0.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "url": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_memoize__0.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/memoize", + "version": "0.8.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@emotion/memoize": [ + "0.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-plugin-react__7.31.11__eslint_8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-react", + "version": "7.31.11_eslint_8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==", + "url": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_core__7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/core", + "version": "7.20.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@ampproject/remapping": "2.2.0", + "@babel/code-frame": "7.23.5", + "@babel/generator": "7.23.6", + "@babel/helper-compilation-targets": "7.20.0_at_babel_core_7.20.2", + "@babel/helper-module-transforms": "7.20.2", + "@babel/helpers": "7.20.1", + "@babel/parser": "7.23.6", + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.7", + "@babel/types": "7.23.6", + "convert-source-map": "1.9.0", + "debug": "4.3.4_supports-color_8.1.1", + "gensync": "1.0.0-beta.2", + "json5": "2.2.3", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ms__2.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ms", + "version": "2.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "url": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-limit__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-limit", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "yocto-queue": "1.0.0" + }, + "transitive_closure": { + "p-limit": [ + "4.0.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ms__2.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ms", + "version": "2.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "url": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__which-typed-array__1.1.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "which-typed-array", + "version": "1.1.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "url": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_samsam__8.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sinonjs/samsam", + "version": "8.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@sinonjs/commons": "2.0.0", + "lodash.get": "4.4.2", + "type-detect": "4.0.8" + }, + "transitive_closure": { + "@sinonjs/commons": [ + "2.0.0" + ], + "@sinonjs/samsam": [ + "8.0.0" + ], + "lodash.get": [ + "4.4.2" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_highlight__7.23.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/highlight", + "version": "7.23.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "url": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_preset-react__7.23.3__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/preset-react", + "version": "7.23.3_at_babel_core_7.20.2", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@babel/preset-react" + ] + }, + "deps": { + "@babel/core": "7.20.2", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-validator-option": "7.23.5", + "@babel/plugin-transform-react-display-name": "7.23.3_at_babel_core_7.20.2", + "@babel/plugin-transform-react-jsx": "7.23.4_at_babel_core_7.20.2", + "@babel/plugin-transform-react-jsx-development": "7.22.5_at_babel_core_7.20.2", + "@babel/plugin-transform-react-pure-annotations": "7.23.3_at_babel_core_7.20.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/plugin-transform-react-display-name": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.20.2" + ], + "@babel/plugin-transform-react-jsx-development": [ + "7.22.5_at_babel_core_7.20.2" + ], + "@babel/plugin-transform-react-pure-annotations": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/preset-react": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__wrap-ansi__7.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "wrap-ansi", + "version": "7.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "url": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__dom-helpers__5.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dom-helpers", + "version": "5.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "url": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__tslib__1.14.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tslib", + "version": "1.14.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "url": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__type-fest__0.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "type-fest", + "version": "0.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "url": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__log-symbols__4.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "log-symbols", + "version": "4.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "url": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__safer-buffer__2.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "safer-buffer", + "version": "2.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "safer-buffer": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-visitor-keys__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-visitor-keys", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "eslint-visitor-keys": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jridgewell_resolve-uri__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/resolve-uri", + "version": "3.1.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@jridgewell/resolve-uri": [ + "3.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has-symbols__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has-symbols", + "version": "1.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cosmiconfig__7.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cosmiconfig", + "version": "7.1.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/parse-json": "4.0.0", + "import-fresh": "3.3.0", + "parse-json": "5.2.0", + "path-type": "4.0.0", + "yaml": "1.10.2" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@types/parse-json": [ + "4.0.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "cosmiconfig": [ + "7.1.0" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-type": [ + "4.0.0" + ], + "resolve-from": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__mocha-junit-reporter__2.2.1__mocha_10.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mocha-junit-reporter", + "version": "2.2.1_mocha_10.3.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "mocha-junit-reporter" + ] + }, + "deps": { + "debug": "4.3.4_supports-color_8.1.1", + "md5": "2.3.0", + "mkdirp": "3.0.1", + "mocha": "10.3.0", + "strip-ansi": "6.0.1", + "xml": "1.0.1" + }, + "transitive_closure": { + "ansi-colors": [ + "4.1.1" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "binary-extensions": [ + "2.2.0" + ], + "brace-expansion": [ + "2.0.1" + ], + "braces": [ + "3.0.2" + ], + "browser-stdout": [ + "1.3.1" + ], + "camelcase": [ + "6.3.0" + ], + "chalk": [ + "4.1.2" + ], + "charenc": [ + "0.0.2" + ], + "chokidar": [ + "3.5.3" + ], + "cliui": [ + "7.0.4" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "crypt": [ + "0.0.2" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "decamelize": [ + "4.0.0" + ], + "diff": [ + "5.0.0" + ], + "emoji-regex": [ + "8.0.0" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat": [ + "5.0.2" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.2" + ], + "get-caller-file": [ + "2.0.5" + ], + "glob": [ + "8.1.0" + ], + "glob-parent": [ + "5.1.2" + ], + "has-flag": [ + "4.0.0" + ], + "he": [ + "1.2.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-buffer": [ + "1.1.6" + ], + "is-extglob": [ + "2.1.1" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "2.1.0" + ], + "is-unicode-supported": [ + "0.1.0" + ], + "js-yaml": [ + "4.1.0" + ], + "locate-path": [ + "6.0.0" + ], + "log-symbols": [ + "4.1.0" + ], + "md5": [ + "2.3.0" + ], + "minimatch": [ + "5.0.1", + "5.1.0" + ], + "mkdirp": [ + "3.0.1" + ], + "mocha": [ + "10.3.0" + ], + "mocha-junit-reporter": [ + "2.2.1_mocha_10.3.0" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "path-exists": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "randombytes": [ + "2.1.0" + ], + "readdirp": [ + "3.6.0" + ], + "require-directory": [ + "2.1.1" + ], + "safe-buffer": [ + "5.2.1" + ], + "serialize-javascript": [ + "6.0.0" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "to-regex-range": [ + "5.0.1" + ], + "workerpool": [ + "6.2.1" + ], + "wrap-ansi": [ + "7.0.0" + ], + "wrappy": [ + "1.0.2" + ], + "xml": [ + "1.0.1" + ], + "y18n": [ + "5.0.8" + ], + "yargs": [ + "16.2.0" + ], + "yargs-parser": [ + "20.2.4", + "20.2.9" + ], + "yargs-unparser": [ + "2.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cosmiconfig__7.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cosmiconfig", + "version": "7.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "url": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__merge-descriptors__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "merge-descriptors", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "merge-descriptors": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__object-keys__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object-keys", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "object-keys": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__lodash.get__4.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lodash.get", + "version": "4.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lodash.get": [ + "4.4.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__mkdirp__0.5.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mkdirp", + "version": "0.5.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "url": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_mui_base__5.0.0-beta.34__-810481204__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/base", + "version": "5.0.0-beta.34_-810481204", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "@floating-ui/react-dom": "2.0.8_react-dom_18.2.0__react_18.2.0", + "@mui/types": "7.2.13_at_types_react_18.2.48", + "@mui/utils": "5.15.8_28312804", + "@popperjs/core": "2.11.8", + "@types/react": "18.2.48", + "clsx": "2.1.0", + "prop-types": "15.8.1", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.9" + ], + "@floating-ui/core": [ + "1.6.0" + ], + "@floating-ui/dom": [ + "1.6.1" + ], + "@floating-ui/react-dom": [ + "2.0.8_react-dom_18.2.0__react_18.2.0" + ], + "@floating-ui/utils": [ + "0.2.1" + ], + "@mui/base": [ + "5.0.0-beta.34_-810481204" + ], + "@mui/types": [ + "7.2.13_at_types_react_18.2.48" + ], + "@mui/utils": [ + "5.15.8_28312804" + ], + "@popperjs/core": [ + "2.11.8" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "clsx": [ + "2.1.0" + ], + "csstype": [ + "3.1.2" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "16.13.1", + "18.2.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "scheduler": [ + "0.23.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-config-prettier__9.1.0__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-config-prettier", + "version": "9.1.0_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-config-prettier" + ] + }, + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "url": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__merge-descriptors__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "merge-descriptors", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "url": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_win32-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/win32-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/win32-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-import-resolver-node__0.3.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-import-resolver-node", + "version": "0.3.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "3.2.7", + "resolve": "1.22.1" + }, + "transitive_closure": { + "debug": [ + "3.2.7" + ], + "eslint-import-resolver-node": [ + "0.3.6" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.11.0" + ], + "ms": [ + "2.1.3" + ], + "path-parse": [ + "1.0.7" + ], + "resolve": [ + "1.22.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__open__7.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "open", + "version": "7.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "url": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jridgewell_gen-mapping__0.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/gen-mapping", + "version": "0.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "url": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__safe-buffer__5.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "safe-buffer", + "version": "5.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "url": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__string.prototype.trimend__1.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.trimend", + "version": "1.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__babel-literal-to-ast__2.1.0__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-literal-to-ast", + "version": "2.1.0_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CxfpQ0ysQ0bZOhlaPgcWjl79Em16Rhqc6++UAFn0A3duiXmuyhhj8yyl9PYbj0I0CyjrHovdDbp2QEKT7uIMxw==", + "url": "https://registry.npmjs.org/babel-literal-to-ast/-/babel-literal-to-ast-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_plugin-syntax-jsx__7.23.3__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-jsx", + "version": "7.23.3_at_babel_core_7.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.20.2", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__globals__13.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "globals", + "version": "13.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "url": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_adobe_css-tools__4.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@adobe/css-tools", + "version": "4.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==", + "url": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__array-union__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array-union", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "array-union": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-lifecycles-compat__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-lifecycles-compat", + "version": "3.0.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "react-lifecycles-compat": [ + "3.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ee-first__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ee-first", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "url": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jridgewell_gen-mapping__0.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/gen-mapping", + "version": "0.3.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/set-array": "1.1.2", + "@jridgewell/sourcemap-codec": "1.4.14", + "@jridgewell/trace-mapping": "0.3.20" + }, + "transitive_closure": { + "@jridgewell/gen-mapping": [ + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__dir-glob__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dir-glob", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "url": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__multer__1.4.5-lts.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "multer", + "version": "1.4.5-lts.1", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "multer" + ] + }, + "deps": { + "append-field": "1.0.0", + "busboy": "1.6.0", + "concat-stream": "1.6.2", + "mkdirp": "0.5.6", + "object-assign": "4.1.1", + "type-is": "1.6.18", + "xtend": "4.0.2" + }, + "transitive_closure": { + "append-field": [ + "1.0.0" + ], + "buffer-from": [ + "1.1.2" + ], + "busboy": [ + "1.6.0" + ], + "concat-stream": [ + "1.6.2" + ], + "core-util-is": [ + "1.0.3" + ], + "inherits": [ + "2.0.4" + ], + "isarray": [ + "1.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "minimist": [ + "1.2.7" + ], + "mkdirp": [ + "0.5.6" + ], + "multer": [ + "1.4.5-lts.1" + ], + "object-assign": [ + "4.1.1" + ], + "process-nextick-args": [ + "2.0.1" + ], + "readable-stream": [ + "2.3.7" + ], + "safe-buffer": [ + "5.1.2" + ], + "streamsearch": [ + "1.1.0" + ], + "string_decoder": [ + "1.1.1" + ], + "type-is": [ + "1.6.18" + ], + "typedarray": [ + "0.0.6" + ], + "util-deprecate": [ + "1.0.2" + ], + "xtend": [ + "4.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_weak-memoize__0.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/weak-memoize", + "version": "0.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==", + "url": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__http-errors__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-errors", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "url": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-node__11.1.0__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-node", + "version": "11.1.0_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-plugin-node" + ] + }, + "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", + "url": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__minimist__1.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimist", + "version": "1.2.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "minimist": [ + "1.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-shared-array-buffer__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-shared-array-buffer", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "url": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__prettier__3.2.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "prettier", + "version": "3.2.5", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "prettier" + ] + }, + "deps": {}, + "transitive_closure": { + "prettier": [ + "3.2.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__inherits__2.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "inherits", + "version": "2.0.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "inherits": [ + "2.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-string__1.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-string", + "version": "1.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-string": [ + "1.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__json-stable-stringify-without-jsonify__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json-stable-stringify-without-jsonify", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-transform-react-pure-annotations__7.23.3__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-react-pure-annotations", + "version": "7.23.3_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-es__3.0.1__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-es", + "version": "3.0.1_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", + "url": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pify__4.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pify", + "version": "4.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "url": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_code-frame__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/code-frame", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/highlight": "7.23.4", + "chalk": "2.4.2" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_humanwhocodes_object-schema__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@humanwhocodes/object-schema", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@humanwhocodes/object-schema": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-wsl__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-wsl", + "version": "2.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "is-docker": "2.2.1" + }, + "transitive_closure": { + "is-docker": [ + "2.2.1" + ], + "is-wsl": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__escalade__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "escalade", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "url": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__define-properties__1.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "define-properties", + "version": "1.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "url": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__type-fest__0.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "type-fest", + "version": "0.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "type-fest": [ + "0.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_parser__7.23.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/parser", + "version": "7.23.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", + "url": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-config-standard-with-typescript__23.0.0__-1246222472__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-config-standard-with-typescript", + "version": "23.0.0_-1246222472", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/eslint-plugin": "5.44.0_909934447", + "@typescript-eslint/parser": "5.44.0_-679725046", + "eslint": "8.52.0", + "eslint-config-standard": "17.0.0_978117738", + "eslint-plugin-import": "2.26.0_-730645774", + "eslint-plugin-n": "15.5.1_eslint_8.52.0", + "eslint-plugin-promise": "6.1.1_eslint_8.52.0", + "typescript": "5.3.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json-schema": [ + "7.0.11" + ], + "@types/json5": [ + "0.0.29" + ], + "@types/semver": [ + "7.3.13" + ], + "@typescript-eslint/eslint-plugin": [ + "5.44.0_909934447" + ], + "@typescript-eslint/parser": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-includes": [ + "3.1.6" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.flat": [ + "1.3.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "builtins": [ + "5.0.1" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "3.2.7", + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "define-properties": [ + "1.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-config-standard": [ + "17.0.0_978117738" + ], + "eslint-config-standard-with-typescript": [ + "23.0.0_-1246222472" + ], + "eslint-import-resolver-node": [ + "0.3.6" + ], + "eslint-module-utils": [ + "2.7.4_-814034063" + ], + "eslint-plugin-es": [ + "4.1.0_eslint_8.52.0" + ], + "eslint-plugin-import": [ + "2.26.0_-730645774" + ], + "eslint-plugin-n": [ + "15.5.1_eslint_8.52.0" + ], + "eslint-plugin-promise": [ + "6.1.1_eslint_8.52.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "2.1.0", + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "1.3.0", + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.11.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number": [ + "7.0.0" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.7" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "natural-compare-lite": [ + "1.4.0" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.values": [ + "1.1.6" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__parseurl__1.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "parseurl", + "version": "1.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "url": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__json5__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json5", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "minimist": "1.2.7" + }, + "transitive_closure": { + "json5": [ + "1.0.2" + ], + "minimist": [ + "1.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react__18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react", + "version": "18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "react" + ] + }, + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "url": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_eslint_js__8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint/js", + "version": "8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "url": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__has-flag__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has-flag", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "url": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__levn__0.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "levn", + "version": "0.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "prelude-ls": "1.2.1", + "type-check": "0.4.0" + }, + "transitive_closure": { + "levn": [ + "0.4.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "type-check": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__mocha-junit-reporter__2.2.1__mocha_10.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mocha-junit-reporter", + "version": "2.2.1_mocha_10.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "mocha-junit-reporter" + ] + }, + "integrity": "sha512-iDn2tlKHn8Vh8o4nCzcUVW4q7iXp7cC4EB78N0cDHIobLymyHNwe0XG8HEHHjc3hJlXm0Vy6zcrxaIhnI2fWmw==", + "url": "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-2.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-promise__6.1.1__eslint_8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-promise", + "version": "6.1.1_eslint_8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.52.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-plugin-promise": [ + "6.1.1_eslint_8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-weakref__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-weakref", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "is-weakref": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__es-get-iterator__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-get-iterator", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", + "url": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__which-collection__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "which-collection", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "url": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__color-convert__1.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "color-convert", + "version": "1.9.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "url": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__parse-json__5.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "parse-json", + "version": "5.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "url": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__run-parallel__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "run-parallel", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "url": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-is__17.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-is", + "version": "17.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "url": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jest_types__29.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/types", + "version": "29.6.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/schemas": "29.6.3", + "@types/istanbul-lib-coverage": "2.0.6", + "@types/istanbul-reports": "3.0.4", + "@types/node": "20.11.6", + "@types/yargs": "17.0.32", + "chalk": "4.1.2" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ], + "@types/istanbul-reports": [ + "3.0.4" + ], + "@types/node": [ + "20.11.6" + ], + "@types/yargs": [ + "17.0.32" + ], + "@types/yargs-parser": [ + "21.0.3" + ], + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "has-flag": [ + "4.0.0" + ], + "supports-color": [ + "7.2.0" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__encodeurl__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "encodeurl", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "url": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__get-caller-file__2.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-caller-file", + "version": "2.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "url": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__has-flag__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has-flag", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "url": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__type-check__0.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "type-check", + "version": "0.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "prelude-ls": "1.2.1" + }, + "transitive_closure": { + "prelude-ls": [ + "1.2.1" + ], + "type-check": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-key__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-key", + "version": "3.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-key": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__convert-source-map__1.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "convert-source-map", + "version": "1.9.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "convert-source-map": [ + "1.9.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__rimraf__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "rimraf", + "version": "3.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "glob": "7.2.3" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "rimraf": [ + "3.0.2" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_openbsd-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/openbsd-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/openbsd-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__node-releases__2.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "node-releases", + "version": "2.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "url": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_istanbul-lib-report__3.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/istanbul-lib-report", + "version": "3.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "url": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__json-parse-even-better-errors__2.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json-parse-even-better-errors", + "version": "2.3.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "json-parse-even-better-errors": [ + "2.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_win32-arm64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/win32-arm64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", + "url": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_react-dom__18.2.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react-dom", + "version": "18.2.18", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react-dom" + ] + }, + "integrity": "sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==", + "url": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.18.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__cookie__0.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cookie", + "version": "0.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "url": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__flat__5.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "flat", + "version": "5.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "flat": [ + "5.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ansi-regex__5.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-regex", + "version": "5.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__css.escape__1.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "css.escape", + "version": "1.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "css.escape": [ + "1.5.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__p-locate__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-locate", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "url": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_parser__7.23.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/parser", + "version": "7.23.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/types": [ + "7.23.6" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_sheet__1.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/sheet", + "version": "1.2.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@emotion/sheet": [ + "1.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__statuses__1.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "statuses", + "version": "1.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "url": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__isarray__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "isarray", + "version": "1.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "isarray": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__batch__0.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "batch", + "version": "0.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "url": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__indent-string__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "indent-string", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "indent-string": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__depd__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "depd", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "url": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__lie__3.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lie", + "version": "3.3.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "immediate": "3.0.6" + }, + "transitive_closure": { + "immediate": [ + "3.0.6" + ], + "lie": [ + "3.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__slash__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "slash", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "url": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_android-arm__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/android-arm", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__dom-accessibility-api__0.5.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dom-accessibility-api", + "version": "0.5.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==", + "url": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.14.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_module-importer__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@humanwhocodes/module-importer", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "url": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-utils__3.0.0__eslint_8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-utils", + "version": "3.0.0_eslint_8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.52.0", + "eslint-visitor-keys": "2.1.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__esrecurse__4.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esrecurse", + "version": "4.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "estraverse": "5.3.0" + }, + "transitive_closure": { + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-arrayish__0.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-arrayish", + "version": "0.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-arrayish": [ + "0.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__which__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "which", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "isexe": "2.0.0" + }, + "transitive_closure": { + "isexe": [ + "2.0.0" + ], + "which": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_json5__0.0.29": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/json5", + "version": "0.0.29", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "url": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__scheduler__0.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "scheduler", + "version": "0.23.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "loose-envify": "1.4.0" + }, + "transitive_closure": { + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "scheduler": [ + "0.23.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__locate-path__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "locate-path", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "url": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_use-insertion-effect-with-fallbacks__1.0.1__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/use-insertion-effect-with-fallbacks", + "version": "1.0.1_react_18.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "react": "18.2.0" + }, + "transitive_closure": { + "@emotion/use-insertion-effect-with-fallbacks": [ + "1.0.1_react_18.2.0" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "react": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has-tostringtag__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has-tostringtag", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-symbols": "1.0.3" + }, + "transitive_closure": { + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-arm__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-arm", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", + "url": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__acorn-jsx__5.3.2__acorn_8.10.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn-jsx", + "version": "5.3.2_acorn_8.10.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "acorn": "8.10.0" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jsesc__2.5.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jsesc", + "version": "2.5.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "jsesc": [ + "2.5.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__loose-envify__1.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "loose-envify", + "version": "1.4.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "js-tokens": "4.0.0" + }, + "transitive_closure": { + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__utils-merge__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "utils-merge", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "utils-merge": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__source-map-explorer__2.5.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map-explorer", + "version": "2.5.3", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "source-map-explorer" + ] + }, + "deps": { + "btoa": "1.2.1", + "chalk": "4.1.2", + "convert-source-map": "1.9.0", + "ejs": "3.1.8", + "escape-html": "1.0.3", + "glob": "7.2.3", + "gzip-size": "6.0.0", + "lodash": "4.17.21", + "open": "7.4.2", + "source-map": "0.7.4", + "temp": "0.9.4", + "yargs": "16.2.0" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "async": [ + "3.2.4" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11", + "2.0.1" + ], + "btoa": [ + "1.2.1" + ], + "chalk": [ + "4.1.2" + ], + "cliui": [ + "7.0.4" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "1.9.0" + ], + "duplexer": [ + "0.1.2" + ], + "ejs": [ + "3.1.8" + ], + "emoji-regex": [ + "8.0.0" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "filelist": [ + "1.0.4" + ], + "fs.realpath": [ + "1.0.0" + ], + "get-caller-file": [ + "2.0.5" + ], + "glob": [ + "7.2.3" + ], + "gzip-size": [ + "6.0.0" + ], + "has-flag": [ + "4.0.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-docker": [ + "2.2.1" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "is-wsl": [ + "2.2.0" + ], + "jake": [ + "10.8.5" + ], + "lodash": [ + "4.17.21" + ], + "minimatch": [ + "3.1.2", + "5.1.0" + ], + "minimist": [ + "1.2.7" + ], + "mkdirp": [ + "0.5.6" + ], + "once": [ + "1.4.0" + ], + "open": [ + "7.4.2" + ], + "path-is-absolute": [ + "1.0.1" + ], + "require-directory": [ + "2.1.1" + ], + "rimraf": [ + "2.6.3" + ], + "source-map": [ + "0.7.4" + ], + "source-map-explorer": [ + "2.5.3" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ], + "supports-color": [ + "7.2.0" + ], + "temp": [ + "0.9.4" + ], + "wrap-ansi": [ + "7.0.0" + ], + "wrappy": [ + "1.0.2" + ], + "y18n": [ + "5.0.8" + ], + "yargs": [ + "16.2.0" + ], + "yargs-parser": [ + "20.2.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_highlight__7.23.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/highlight", + "version": "7.23.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/helper-validator-identifier": "7.22.20", + "chalk": "2.4.2", + "js-tokens": "4.0.0" + }, + "transitive_closure": { + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_bazel_runfiles__5.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@bazel/runfiles", + "version": "5.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "@bazel/runfiles" + ] + }, + "integrity": "sha512-NDdfpdQ6rZlylgv++iMn5FkObC/QlBQvipinGLSOguTYpRywmieOyJ29XHvUilspwTFSILWpoE9CqMGkHXug1g==", + "url": "https://registry.npmjs.org/@bazel/runfiles/-/runfiles-5.8.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__http-errors__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-errors", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "transitive_closure": { + "depd": [ + "2.0.0" + ], + "http-errors": [ + "2.0.0" + ], + "inherits": [ + "2.0.4" + ], + "setprototypeof": [ + "1.2.0" + ], + "statuses": [ + "2.0.1" + ], + "toidentifier": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__minimatch__3.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimatch", + "version": "3.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "brace-expansion": "1.1.11" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "minimatch": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ansi-colors__4.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-colors", + "version": "4.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "url": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__graphemer__1.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "graphemer", + "version": "1.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "graphemer": [ + "1.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__to-regex-range__5.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "to-regex-range", + "version": "5.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "is-number": "7.0.0" + }, + "transitive_closure": { + "is-number": [ + "7.0.0" + ], + "to-regex-range": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__binary-extensions__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "binary-extensions", + "version": "2.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "binary-extensions": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__yallist__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yallist", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "url": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__content-type__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "content-type", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "content-type": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__object-keys__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object-keys", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "url": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__file-entry-cache__6.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "file-entry-cache", + "version": "6.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "url": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ipaddr.js__1.9.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ipaddr.js", + "version": "1.9.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "url": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__chalk__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "chalk", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "url": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__get-stdin__8.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-stdin", + "version": "8.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "get-stdin": [ + "8.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__setimmediate__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "setimmediate", + "version": "1.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "setimmediate": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-arm64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-arm64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-arm64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__async__3.2.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "async", + "version": "3.2.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "async": [ + "3.2.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_sinonjs_commons__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sinonjs/commons", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "url": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__readdirp__3.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "readdirp", + "version": "3.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "picomatch": "2.3.1" + }, + "transitive_closure": { + "picomatch": [ + "2.3.1" + ], + "readdirp": [ + "3.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__tslib__2.6.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tslib", + "version": "2.6.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-split-export-declaration__7.22.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-split-export-declaration", + "version": "7.22.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.6" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-type__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-type", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-type": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-wsl__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-wsl", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "url": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__function.prototype.name__1.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "function.prototype.name", + "version": "1.1.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4", + "functions-have-names": "1.2.3" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__which-boxed-primitive__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "which-boxed-primitive", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "url": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_mui_material__5.15.7__679435683__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/material", + "version": "5.15.7_679435683", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@mui/material" + ] + }, + "deps": { + "@babel/runtime": "7.23.9", + "@emotion/react": "11.11.3_28312804", + "@emotion/styled": "11.11.0_1048222695", + "@mui/base": "5.0.0-beta.34_-810481204", + "@mui/core-downloads-tracker": "5.15.8", + "@mui/system": "5.15.8_-1696370565", + "@mui/types": "7.2.13_at_types_react_18.2.48", + "@mui/utils": "5.15.8_28312804", + "@types/react": "18.2.48", + "@types/react-transition-group": "4.4.10", + "clsx": "2.1.0", + "csstype": "3.1.2", + "prop-types": "15.8.1", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0", + "react-is": "18.2.0", + "react-transition-group": "4.4.5_react-dom_18.2.0__react_18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/types": [ + "7.23.6" + ], + "@emotion/babel-plugin": [ + "11.11.0" + ], + "@emotion/cache": [ + "11.11.0" + ], + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/is-prop-valid": [ + "1.2.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/react": [ + "11.11.3_28312804" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/sheet": [ + "1.2.2" + ], + "@emotion/styled": [ + "11.11.0_1048222695" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/use-insertion-effect-with-fallbacks": [ + "1.0.1_react_18.2.0" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@emotion/weak-memoize": [ + "0.3.1" + ], + "@floating-ui/core": [ + "1.6.0" + ], + "@floating-ui/dom": [ + "1.6.1" + ], + "@floating-ui/react-dom": [ + "2.0.8_react-dom_18.2.0__react_18.2.0" + ], + "@floating-ui/utils": [ + "0.2.1" + ], + "@mui/base": [ + "5.0.0-beta.34_-810481204" + ], + "@mui/core-downloads-tracker": [ + "5.15.8" + ], + "@mui/material": [ + "5.15.7_679435683" + ], + "@mui/private-theming": [ + "5.15.8_28312804" + ], + "@mui/styled-engine": [ + "5.15.8_602618506" + ], + "@mui/system": [ + "5.15.8_-1696370565" + ], + "@mui/types": [ + "7.2.13_at_types_react_18.2.48" + ], + "@mui/utils": [ + "5.15.8_28312804" + ], + "@popperjs/core": [ + "2.11.8" + ], + "@types/parse-json": [ + "4.0.0" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-transition-group": [ + "4.4.10" + ], + "@types/scheduler": [ + "0.16.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "clsx": [ + "2.1.0" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "csstype": [ + "3.1.2" + ], + "dom-helpers": [ + "5.2.1" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "find-root": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "hoist-non-react-statics": [ + "3.3.2" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "16.13.1", + "18.2.0" + ], + "react-transition-group": [ + "4.4.5_react-dom_18.2.0__react_18.2.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "scheduler": [ + "0.23.0" + ], + "source-map": [ + "0.5.7" + ], + "stylis": [ + "4.2.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-riscv64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-riscv64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", + "url": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__builtins__5.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "builtins", + "version": "5.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "url": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__deep-equal__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "deep-equal", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "es-get-iterator": "1.1.2", + "get-intrinsic": "1.1.3", + "is-arguments": "1.1.1", + "is-date-object": "1.0.5", + "is-regex": "1.1.4", + "isarray": "2.0.5", + "object-is": "1.1.5", + "object-keys": "1.1.1", + "object.assign": "4.1.4", + "regexp.prototype.flags": "1.4.3", + "side-channel": "1.0.4", + "which-boxed-primitive": "1.0.2", + "which-collection": "1.0.1", + "which-typed-array": "1.1.9" + }, + "transitive_closure": { + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "deep-equal": [ + "2.1.0" + ], + "define-properties": [ + "1.1.4" + ], + "es-get-iterator": [ + "1.1.2" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-arguments": [ + "1.1.1" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-map": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.10" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.2" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "side-channel": [ + "1.0.4" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__babel-plugin-macros__2.8.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-macros", + "version": "2.8.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "url": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_eslint-community_eslint-utils__4.4.0__eslint_8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint-community/eslint-utils", + "version": "4.4.0_eslint_8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.52.0", + "eslint-visitor-keys": "3.4.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__zen-observable__0.8.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "zen-observable", + "version": "0.8.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==", + "url": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-validator-option__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-validator-option", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/helper-validator-option": [ + "7.23.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__mkdirp__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mkdirp", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mkdirp": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-router-dom__6.21.3__react-dom_18.2.0__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-router-dom", + "version": "6.21.3_react-dom_18.2.0__react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "react-router-dom" + ] + }, + "integrity": "sha512-kNzubk7n4YHSrErzjLK72j0B5i969GsuCGazRl3G6j1zqZBLjuSlYBdVdkDOgzGdPIffUOc9nmgiadTEVoq91g==", + "url": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.21.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__optionator__0.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "optionator", + "version": "0.9.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "url": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__tslib__2.6.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tslib", + "version": "2.6.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "url": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-glob__4.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-glob", + "version": "4.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-extglob": "2.1.1" + }, + "transitive_closure": { + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-plain-obj__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-plain-obj", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-plain-obj": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__aria-query__5.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "aria-query", + "version": "5.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "url": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__response-iterator__0.2.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "response-iterator", + "version": "0.2.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==", + "url": "https://registry.npmjs.org/response-iterator/-/response-iterator-0.2.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__busboy__1.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "busboy", + "version": "1.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "streamsearch": "1.1.0" + }, + "transitive_closure": { + "busboy": [ + "1.6.0" + ], + "streamsearch": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_eslint_eslintrc__2.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint/eslintrc", + "version": "2.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "url": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__accepts__1.3.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "accepts", + "version": "1.3.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "url": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_eslint_eslintrc__2.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint/eslintrc", + "version": "2.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "url": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__resolve__2.0.0-next.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve", + "version": "2.0.0-next.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-core-module": "2.11.0", + "path-parse": "1.0.7", + "supports-preserve-symlinks-flag": "1.0.0" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.11.0" + ], + "path-parse": [ + "1.0.7" + ], + "resolve": [ + "2.0.0-next.4" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_nodelib_fs.scandir__2.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@nodelib/fs.scandir", + "version": "2.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "url": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-map__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-map", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-map": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__lz-string__1.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lz-string", + "version": "1.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lz-string": [ + "1.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__charenc__0.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "charenc", + "version": "0.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "url": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_config-array__0.11.13__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@humanwhocodes/config-array", + "version": "0.11.13", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@humanwhocodes/object-schema": "2.0.1", + "debug": "4.3.4_supports-color_8.1.1", + "minimatch": "3.1.2" + }, + "transitive_closure": { + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "has-flag": [ + "4.0.0" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "8.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_material__5.15.7__679435683": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/material", + "version": "5.15.7_679435683", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@mui/material" + ] + }, + "integrity": "sha512-l6+AiKZH3iOJmZCnlpel8ghYQe9Lq0BEuKP8fGj3g5xz4arO9GydqYAtLPMvuHKtArj8lJGNuT2yHYxmejincA==", + "url": "https://registry.npmjs.org/@mui/material/-/material-5.15.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fast-json-stable-stringify__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fast-json-stable-stringify", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fast-json-stable-stringify": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_types__7.23.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/types", + "version": "7.23.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/helper-string-parser": "7.23.4", + "@babel/helper-validator-identifier": "7.22.20", + "to-fast-properties": "2.0.0" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.6" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-compilation-targets__7.20.0__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-compilation-targets", + "version": "7.20.0_at_babel_core_7.20.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/compat-data": "7.20.1", + "@babel/core": "7.20.2", + "@babel/helper-validator-option": "7.23.5", + "browserslist": "4.21.4", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array-includes__3.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array-includes", + "version": "3.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4", + "get-intrinsic": "1.1.3", + "is-string": "1.0.7" + }, + "transitive_closure": { + "array-includes": [ + "3.1.6" + ], + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__es-get-iterator__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-get-iterator", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.1.3", + "has-symbols": "1.0.3", + "is-arguments": "1.1.1", + "is-map": "2.0.2", + "is-set": "2.0.2", + "is-string": "1.0.7", + "isarray": "2.0.5" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "es-get-iterator": [ + "1.1.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-arguments": [ + "1.1.1" + ], + "is-map": [ + "2.0.2" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "isarray": [ + "2.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__vary__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vary", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "url": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__media-typer__0.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "media-typer", + "version": "0.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "url": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pkg-conf__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pkg-conf", + "version": "3.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "find-up": "3.0.0", + "load-json-file": "5.3.0" + }, + "transitive_closure": { + "error-ex": [ + "1.3.2" + ], + "find-up": [ + "3.0.0" + ], + "graceful-fs": [ + "4.2.10" + ], + "is-arrayish": [ + "0.2.1" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "load-json-file": [ + "5.3.0" + ], + "locate-path": [ + "3.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "3.0.0" + ], + "p-try": [ + "2.2.0" + ], + "parse-json": [ + "4.0.0" + ], + "path-exists": [ + "3.0.0" + ], + "pify": [ + "4.0.1" + ], + "pkg-conf": [ + "3.1.0" + ], + "strip-bom": [ + "3.0.0" + ], + "type-fest": [ + "0.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_freebsd-arm64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/freebsd-arm64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/freebsd-arm64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_pkgr_core__0.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@pkgr/core", + "version": "0.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==", + "url": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_plugin-transform-react-display-name__7.23.3__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-react-display-name", + "version": "7.23.3_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_prop-types__15.7.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/prop-types", + "version": "15.7.11", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/prop-types": [ + "15.7.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__express__4.18.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "express", + "version": "4.18.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "express" + ] + }, + "integrity": "sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==", + "url": "https://registry.npmjs.org/express/-/express-4.18.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__node-releases__2.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "node-releases", + "version": "2.0.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "node-releases": [ + "2.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__yallist__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yallist", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-simple-access__7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-simple-access", + "version": "7.20.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.6" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__tmp__0.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tmp", + "version": "0.2.3", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "tmp" + ] + }, + "deps": {}, + "transitive_closure": { + "tmp": [ + "0.2.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_sunos-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/sunos-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", + "url": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_remix-run_router__1.14.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@remix-run/router", + "version": "1.14.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ACXpdMM9hmKZww21yEqWwiLws/UPLhNKvimN8RrYSqPSvB3ov7sLvAcfvaxePeLvccTQKGdkDIhLYApZVDFuKg==", + "url": "https://registry.npmjs.org/@remix-run/router/-/router-1.14.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_wry_caches__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@wry/caches", + "version": "1.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "@wry/caches": [ + "1.0.1" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__get-symbol-description__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-symbol-description", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "url": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__tmp__0.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tmp", + "version": "0.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "tmp" + ] + }, + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "url": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__to-regex-range__5.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "to-regex-range", + "version": "5.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "url": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__destroy__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "destroy", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "url": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helpers__7.20.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helpers", + "version": "7.20.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.7", + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__gensync__1.0.0-beta.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "gensync", + "version": "1.0.0-beta.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "gensync": [ + "1.0.0-beta.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fs.realpath__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fs.realpath", + "version": "1.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fs.realpath": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has-bigints__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has-bigints", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "url": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__serve-index__1.9.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "serve-index", + "version": "1.9.1", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "serve-index" + ] + }, + "deps": { + "accepts": "1.3.8", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "1.0.3", + "http-errors": "1.6.3", + "mime-types": "2.1.35", + "parseurl": "1.3.3" + }, + "transitive_closure": { + "accepts": [ + "1.3.8" + ], + "batch": [ + "0.6.1" + ], + "debug": [ + "2.6.9" + ], + "depd": [ + "1.1.2" + ], + "escape-html": [ + "1.0.3" + ], + "http-errors": [ + "1.6.3" + ], + "inherits": [ + "2.0.3" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.0.0" + ], + "negotiator": [ + "0.6.3" + ], + "parseurl": [ + "1.3.3" + ], + "serve-index": [ + "1.9.1" + ], + "setprototypeof": [ + "1.1.0" + ], + "statuses": [ + "1.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__prettier-linter-helpers__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "prettier-linter-helpers", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "url": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__rimraf__2.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "rimraf", + "version": "2.6.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "glob": "7.2.3" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "rimraf": [ + "2.6.3" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-binary-path__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-binary-path", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "url": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__cookie__0.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cookie", + "version": "0.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cookie": [ + "0.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__get-stdin__8.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-stdin", + "version": "8.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "url": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_floating-ui_core__1.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@floating-ui/core", + "version": "1.6.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@floating-ui/utils": "0.2.1" + }, + "transitive_closure": { + "@floating-ui/core": [ + "1.6.0" + ], + "@floating-ui/utils": [ + "0.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_react-router__5.1.19__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react-router", + "version": "5.1.19", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/history": "4.7.11", + "@types/react": "18.2.48" + }, + "transitive_closure": { + "@types/history": [ + "4.7.11" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-router": [ + "5.1.19" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_darwin-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/darwin-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", + "url": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__camelcase__6.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "camelcase", + "version": "6.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "url": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__strip-json-comments__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-json-comments", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "url": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-no-only-tests__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-no-only-tests", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-plugin-no-only-tests" + ] + }, + "integrity": "sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==", + "url": "https://registry.npmjs.org/eslint-plugin-no-only-tests/-/eslint-plugin-no-only-tests-3.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__concat-map__0.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "concat-map", + "version": "0.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "concat-map": [ + "0.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__yargs-parser__20.2.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yargs-parser", + "version": "20.2.9", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yargs-parser": [ + "20.2.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array.prototype.flatmap__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array.prototype.flatmap", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4", + "es-shim-unscopables": "1.0.0" + }, + "transitive_closure": { + "array.prototype.flatmap": [ + "1.3.1" + ], + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__functions-have-names__1.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "functions-have-names", + "version": "1.2.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "functions-have-names": [ + "1.2.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_system__5.15.8__-1696370565__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/system", + "version": "5.15.8_-1696370565", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "@emotion/react": "11.11.3_28312804", + "@emotion/styled": "11.11.0_1048222695", + "@mui/private-theming": "5.15.8_28312804", + "@mui/styled-engine": "5.15.8_602618506", + "@mui/types": "7.2.13_at_types_react_18.2.48", + "@mui/utils": "5.15.8_28312804", + "@types/react": "18.2.48", + "clsx": "2.1.0", + "csstype": "3.1.2", + "prop-types": "15.8.1", + "react": "18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/types": [ + "7.23.6" + ], + "@emotion/babel-plugin": [ + "11.11.0" + ], + "@emotion/cache": [ + "11.11.0" + ], + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/is-prop-valid": [ + "1.2.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/react": [ + "11.11.3_28312804" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/sheet": [ + "1.2.2" + ], + "@emotion/styled": [ + "11.11.0_1048222695" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/use-insertion-effect-with-fallbacks": [ + "1.0.1_react_18.2.0" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@emotion/weak-memoize": [ + "0.3.1" + ], + "@mui/private-theming": [ + "5.15.8_28312804" + ], + "@mui/styled-engine": [ + "5.15.8_602618506" + ], + "@mui/system": [ + "5.15.8_-1696370565" + ], + "@mui/types": [ + "7.2.13_at_types_react_18.2.48" + ], + "@mui/utils": [ + "5.15.8_28312804" + ], + "@types/parse-json": [ + "4.0.0" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "clsx": [ + "2.1.0" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "csstype": [ + "3.1.2" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "find-root": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "hoist-non-react-statics": [ + "3.3.2" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-is": [ + "16.13.1", + "18.2.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "source-map": [ + "0.5.7" + ], + "stylis": [ + "4.2.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__babel-plugin-macros__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-macros", + "version": "3.1.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "cosmiconfig": "7.1.0", + "resolve": "1.22.1" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@types/parse-json": [ + "4.0.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "cosmiconfig": [ + "7.1.0" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__open__7.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "open", + "version": "7.4.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "is-docker": "2.2.1", + "is-wsl": "2.2.0" + }, + "transitive_closure": { + "is-docker": [ + "2.2.1" + ], + "is-wsl": [ + "2.2.0" + ], + "open": [ + "7.4.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-core-module__2.11.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-core-module", + "version": "2.11.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "has": "1.0.3" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.11.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_icons-material__5.15.8__-108852140__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/icons-material", + "version": "5.15.8_-108852140", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@mui/icons-material" + ] + }, + "deps": { + "@babel/runtime": "7.23.9", + "@mui/material": "5.15.7_679435683", + "@types/react": "18.2.48", + "react": "18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/types": [ + "7.23.6" + ], + "@emotion/babel-plugin": [ + "11.11.0" + ], + "@emotion/cache": [ + "11.11.0" + ], + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/is-prop-valid": [ + "1.2.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/react": [ + "11.11.3_28312804" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/sheet": [ + "1.2.2" + ], + "@emotion/styled": [ + "11.11.0_1048222695" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/use-insertion-effect-with-fallbacks": [ + "1.0.1_react_18.2.0" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@emotion/weak-memoize": [ + "0.3.1" + ], + "@floating-ui/core": [ + "1.6.0" + ], + "@floating-ui/dom": [ + "1.6.1" + ], + "@floating-ui/react-dom": [ + "2.0.8_react-dom_18.2.0__react_18.2.0" + ], + "@floating-ui/utils": [ + "0.2.1" + ], + "@mui/base": [ + "5.0.0-beta.34_-810481204" + ], + "@mui/core-downloads-tracker": [ + "5.15.8" + ], + "@mui/icons-material": [ + "5.15.8_-108852140" + ], + "@mui/material": [ + "5.15.7_679435683" + ], + "@mui/private-theming": [ + "5.15.8_28312804" + ], + "@mui/styled-engine": [ + "5.15.8_602618506" + ], + "@mui/system": [ + "5.15.8_-1696370565" + ], + "@mui/types": [ + "7.2.13_at_types_react_18.2.48" + ], + "@mui/utils": [ + "5.15.8_28312804" + ], + "@popperjs/core": [ + "2.11.8" + ], + "@types/parse-json": [ + "4.0.0" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-transition-group": [ + "4.4.10" + ], + "@types/scheduler": [ + "0.16.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "clsx": [ + "2.1.0" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "csstype": [ + "3.1.2" + ], + "dom-helpers": [ + "5.2.1" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "find-root": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "hoist-non-react-statics": [ + "3.3.2" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "16.13.1", + "18.2.0" + ], + "react-transition-group": [ + "4.4.5_react-dom_18.2.0__react_18.2.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "scheduler": [ + "0.23.0" + ], + "source-map": [ + "0.5.7" + ], + "stylis": [ + "4.2.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__tsconfig-paths__3.14.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tsconfig-paths", + "version": "3.14.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/json5": "0.0.29", + "json5": "1.0.2", + "minimist": "1.2.7", + "strip-bom": "3.0.0" + }, + "transitive_closure": { + "@types/json5": [ + "0.0.29" + ], + "json5": [ + "1.0.2" + ], + "minimist": [ + "1.2.7" + ], + "strip-bom": [ + "3.0.0" + ], + "tsconfig-paths": [ + "3.14.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__content-type__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "content-type", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "url": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__minimatch__5.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimatch", + "version": "5.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "url": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__content-type__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "content-type", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "url": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__esrecurse__4.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esrecurse", + "version": "4.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "url": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__globals__13.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "globals", + "version": "13.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "type-fest": "0.20.2" + }, + "transitive_closure": { + "globals": [ + "13.23.0" + ], + "type-fest": [ + "0.20.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ms__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ms", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ms": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__picomatch__2.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "picomatch", + "version": "2.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "url": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_win32-ia32__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/win32-ia32", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", + "url": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object-inspect__1.12.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object-inspect", + "version": "1.12.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "url": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_semver__7.3.13__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/semver", + "version": "7.3.13", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/semver": [ + "7.3.13" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__json-stable-stringify-without-jsonify__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json-stable-stringify-without-jsonify", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "url": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_istanbul-reports__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/istanbul-reports", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "url": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__duplexer__0.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "duplexer", + "version": "0.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "url": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__rimraf__2.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "rimraf", + "version": "2.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "url": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-config-standard-jsx__11.0.0__1925191382": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-config-standard-jsx", + "version": "11.0.0_1925191382", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", + "url": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_freebsd-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/freebsd-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", + "url": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__picocolors__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "picocolors", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "url": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-utils__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-utils", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "url": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pretty-format__27.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pretty-format", + "version": "27.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "url": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__statuses__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "statuses", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "statuses": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_aria-query__5.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/aria-query", + "version": "5.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/aria-query": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-is__18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-is", + "version": "18.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_wry_equality__0.5.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@wry/equality", + "version": "0.5.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "@wry/equality": [ + "0.5.6" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-plugin-import__2.26.0__-730645774": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-import", + "version": "2.26.0_-730645774", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "url": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__resolve-from__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve-from", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "url": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_samsam__8.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sinonjs/samsam", + "version": "8.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==", + "url": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-8.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__brace-expansion__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "brace-expansion", + "version": "2.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "balanced-match": "1.0.2" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__esbuild__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "esbuild" + ] + }, + "deps": { + "@esbuild/aix-ppc64": "0.19.12", + "@esbuild/android-arm": "0.19.12", + "@esbuild/android-arm64": "0.19.12", + "@esbuild/android-x64": "0.19.12", + "@esbuild/darwin-arm64": "0.19.12", + "@esbuild/darwin-x64": "0.19.12", + "@esbuild/freebsd-arm64": "0.19.12", + "@esbuild/freebsd-x64": "0.19.12", + "@esbuild/linux-arm": "0.19.12", + "@esbuild/linux-arm64": "0.19.12", + "@esbuild/linux-ia32": "0.19.12", + "@esbuild/linux-loong64": "0.19.12", + "@esbuild/linux-mips64el": "0.19.12", + "@esbuild/linux-ppc64": "0.19.12", + "@esbuild/linux-riscv64": "0.19.12", + "@esbuild/linux-s390x": "0.19.12", + "@esbuild/linux-x64": "0.19.12", + "@esbuild/netbsd-x64": "0.19.12", + "@esbuild/openbsd-x64": "0.19.12", + "@esbuild/sunos-x64": "0.19.12", + "@esbuild/win32-arm64": "0.19.12", + "@esbuild/win32-ia32": "0.19.12", + "@esbuild/win32-x64": "0.19.12" + }, + "transitive_closure": { + "@esbuild/aix-ppc64": [ + "0.19.12" + ], + "@esbuild/android-arm": [ + "0.19.12" + ], + "@esbuild/android-arm64": [ + "0.19.12" + ], + "@esbuild/android-x64": [ + "0.19.12" + ], + "@esbuild/darwin-arm64": [ + "0.19.12" + ], + "@esbuild/darwin-x64": [ + "0.19.12" + ], + "@esbuild/freebsd-arm64": [ + "0.19.12" + ], + "@esbuild/freebsd-x64": [ + "0.19.12" + ], + "@esbuild/linux-arm": [ + "0.19.12" + ], + "@esbuild/linux-arm64": [ + "0.19.12" + ], + "@esbuild/linux-ia32": [ + "0.19.12" + ], + "@esbuild/linux-loong64": [ + "0.19.12" + ], + "@esbuild/linux-mips64el": [ + "0.19.12" + ], + "@esbuild/linux-ppc64": [ + "0.19.12" + ], + "@esbuild/linux-riscv64": [ + "0.19.12" + ], + "@esbuild/linux-s390x": [ + "0.19.12" + ], + "@esbuild/linux-x64": [ + "0.19.12" + ], + "@esbuild/netbsd-x64": [ + "0.19.12" + ], + "@esbuild/openbsd-x64": [ + "0.19.12" + ], + "@esbuild/sunos-x64": [ + "0.19.12" + ], + "@esbuild/win32-arm64": [ + "0.19.12" + ], + "@esbuild/win32-ia32": [ + "0.19.12" + ], + "@esbuild/win32-x64": [ + "0.19.12" + ], + "esbuild": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__on-finished__2.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "on-finished", + "version": "2.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "url": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__babel-plugin-macros__2.8.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-macros", + "version": "2.8.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "cosmiconfig": "6.0.0", + "resolve": "1.22.1" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@types/parse-json": [ + "4.0.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "2.8.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "cosmiconfig": [ + "6.0.0" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-negative-zero__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-negative-zero", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-negative-zero": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has-symbols__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has-symbols", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "url": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__json-schema-traverse__0.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json-schema-traverse", + "version": "0.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "json-schema-traverse": [ + "0.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__shebang-command__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "shebang-command", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "shebang-regex": "3.0.0" + }, + "transitive_closure": { + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__streamsearch__1.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "streamsearch", + "version": "1.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "url": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_floating-ui_utils__0.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@floating-ui/utils", + "version": "0.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@floating-ui/utils": [ + "0.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_testing-library_react__14.1.2__react-dom_18.2.0__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@testing-library/react", + "version": "14.1.2_react-dom_18.2.0__react_18.2.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@testing-library/react" + ] + }, + "deps": { + "@babel/runtime": "7.23.9", + "@testing-library/dom": "9.3.0", + "@types/react-dom": "18.2.18", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@testing-library/dom": [ + "9.3.0" + ], + "@testing-library/react": [ + "14.1.2_react-dom_18.2.0__react_18.2.0" + ], + "@types/aria-query": [ + "5.0.1" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-dom": [ + "18.2.18" + ], + "@types/scheduler": [ + "0.16.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "aria-query": [ + "5.1.3" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "csstype": [ + "3.1.2" + ], + "deep-equal": [ + "2.1.0" + ], + "define-properties": [ + "1.1.4" + ], + "dom-accessibility-api": [ + "0.5.14" + ], + "es-get-iterator": [ + "1.1.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-arguments": [ + "1.1.1" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-map": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.10" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "lz-string": [ + "1.5.0" + ], + "object-inspect": [ + "1.12.2" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "pretty-format": [ + "27.5.1" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "17.0.2" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "scheduler": [ + "0.23.0" + ], + "side-channel": [ + "1.0.4" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__find-up__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "find-up", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "locate-path": "6.0.0", + "path-exists": "4.0.0" + }, + "transitive_closure": { + "find-up": [ + "5.0.0" + ], + "locate-path": [ + "6.0.0" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "path-exists": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__diff__5.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "diff", + "version": "5.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "url": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_is-prop-valid__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/is-prop-valid", + "version": "1.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@emotion/memoize": "0.8.1" + }, + "transitive_closure": { + "@emotion/is-prop-valid": [ + "1.2.1" + ], + "@emotion/memoize": [ + "0.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__parse-json__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "parse-json", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "url": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__utils-merge__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "utils-merge", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "url": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.entries__1.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.entries", + "version": "1.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.6" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_humanwhocodes_object-schema__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@humanwhocodes/object-schema", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@humanwhocodes/object-schema": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jridgewell_set-array__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/set-array", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "url": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__parseurl__1.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "parseurl", + "version": "1.3.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "parseurl": [ + "1.3.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__color-name__1.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "color-name", + "version": "1.1.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "color-name": [ + "1.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react__18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react", + "version": "18.2.0", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "react" + ] + }, + "deps": { + "loose-envify": "1.4.0" + }, + "transitive_closure": { + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "react": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_wry_trie__0.4.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@wry/trie", + "version": "0.4.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==", + "url": "https://registry.npmjs.org/@wry/trie/-/trie-0.4.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_stack-utils__2.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/stack-utils", + "version": "2.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "url": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__readdirp__3.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "readdirp", + "version": "3.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "url": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__regenerator-runtime__0.14.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regenerator-runtime", + "version": "0.14.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "url": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__json5__2.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json5", + "version": "2.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "url": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__depd__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "depd", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "depd": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__doctrine__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "doctrine", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "url": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yaml__1.10.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yaml", + "version": "1.10.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array.prototype.tosorted__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array.prototype.tosorted", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "url": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__graphql.macro__1.4.2__2109932580__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "graphql.macro", + "version": "1.4.2_2109932580", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "graphql.macro" + ] + }, + "deps": { + "@babel/template": "7.22.15", + "babel-literal-to-ast": "2.1.0_at_babel_core_7.20.2", + "babel-plugin-macros": "2.8.0", + "graphql-tag": "2.12.6_graphql_16.8.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "@types/parse-json": [ + "4.0.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-literal-to-ast": [ + "2.1.0_at_babel_core_7.20.2" + ], + "babel-plugin-macros": [ + "2.8.0" + ], + "browserslist": [ + "4.21.4" + ], + "callsites": [ + "3.1.0" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "6.0.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "error-ex": [ + "1.3.2" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "graphql": [ + "16.8.1" + ], + "graphql-tag": [ + "2.12.6_graphql_16.8.1" + ], + "graphql.macro": [ + "1.4.2_2109932580" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "lines-and-columns": [ + "1.2.4" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picocolors": [ + "1.0.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "tslib": [ + "2.6.2" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_json-schema__7.0.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/json-schema", + "version": "7.0.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "url": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__serialize-javascript__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "serialize-javascript", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "url": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_traverse__7.23.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/traverse", + "version": "7.23.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==", + "url": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object-is__1.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object-is", + "version": "1.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "url": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__xml__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "xml", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", + "url": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_adobe_css-tools__4.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@adobe/css-tools", + "version": "4.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@adobe/css-tools": [ + "4.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__nise__5.1.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "nise", + "version": "5.1.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wWtNUhkT7k58uvWTB/Gy26eA/EJKtPZFVAhEilN5UYVmmGRYOURbejRUyKm0Uu9XVEW7K5nBOZfR8VMB4QR2RQ==", + "url": "https://registry.npmjs.org/nise/-/nise-5.1.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__es-shim-unscopables__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-shim-unscopables", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "url": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_translate_lock.bzl", + "ruleClassName": "npm_translate_lock_rule", + "attributes": { + "pnpm_lock": "@@//:pnpm-lock.yaml", + "update_pnpm_lock": true, + "npmrc": "@@//:.npmrc", + "use_home_npmrc": false, + "patches": {}, + "patch_args": {}, + "custom_postinstalls": {}, + "package_visibility": {}, + "prod": false, + "public_hoist_packages": {}, + "dev": false, + "no_optional": false, + "lifecycle_hooks": { + "*": [ + "preinstall", + "install", + "postinstall" + ] + }, + "lifecycle_hooks_envs": {}, + "lifecycle_hooks_execution_requirements": { + "*": [ + "no-sandbox" + ] + }, + "bins": {}, + "verify_node_modules_ignored": "@@//:.bazelignore", + "external_repository_action_cache": ".aspect/rules/external_repository_action_cache", + "link_workspace": "", + "root_package": ".", + "additional_file_contents": {}, + "repositories_bzl_filename": "repositories.bzl", + "defs_bzl_filename": "defs.bzl", + "generate_bzl_library_targets": true, + "data": [ + "@@//:package.json", + "@@//:pnpm-workspace.yaml", + "@@//javascript/grid-ui:package.json", + "@@//javascript/node/selenium-webdriver:package.json" + ], + "preupdate": [], + "quiet": true, + "update_pnpm_lock_node_toolchain_prefix": "nodejs", + "npm_package_target_name": "{dirname}" + } + }, + "npm__strip-ansi__6.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-ansi", + "version": "6.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "url": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fast-glob__3.2.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fast-glob", + "version": "3.2.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "url": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-buffer__1.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-buffer", + "version": "1.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "url": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__resolve-from__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve-from", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "resolve-from": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__mime__1.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mime", + "version": "1.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mime": [ + "1.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__supports-color__8.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "supports-color", + "version": "8.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "has-flag": "4.0.0" + }, + "transitive_closure": { + "has-flag": [ + "4.0.0" + ], + "supports-color": [ + "8.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__parse-ms__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "parse-ms", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "parse-ms": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_eslint_js__8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint/js", + "version": "8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@eslint/js": [ + "8.52.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fast-deep-equal__3.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fast-deep-equal", + "version": "3.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "url": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__workerpool__6.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "workerpool", + "version": "6.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "workerpool": [ + "6.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_yargs-parser__21.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/yargs-parser", + "version": "21.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "url": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-string-parser__7.23.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-string-parser", + "version": "7.23.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_ampproject_remapping__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@ampproject/remapping", + "version": "2.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/gen-mapping": "0.1.1", + "@jridgewell/trace-mapping": "0.3.20" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@jridgewell/gen-mapping": [ + "0.1.1" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-annotate-as-pure__7.22.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-annotate-as-pure", + "version": "7.22.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.6" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__p-limit__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-limit", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "url": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__load-json-file__5.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "load-json-file", + "version": "5.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "graceful-fs": "4.2.10", + "parse-json": "4.0.0", + "pify": "4.0.1", + "strip-bom": "3.0.0", + "type-fest": "0.3.1" + }, + "transitive_closure": { + "error-ex": [ + "1.3.2" + ], + "graceful-fs": [ + "4.2.10" + ], + "is-arrayish": [ + "0.2.1" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "load-json-file": [ + "5.3.0" + ], + "parse-json": [ + "4.0.0" + ], + "pify": [ + "4.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "type-fest": [ + "0.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-ia32__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-ia32", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", + "url": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_testing-library_dom__9.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@testing-library/dom", + "version": "9.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "@babel/runtime": "7.23.9", + "@types/aria-query": "5.0.1", + "aria-query": "5.1.3", + "chalk": "4.1.2", + "dom-accessibility-api": "0.5.14", + "lz-string": "1.5.0", + "pretty-format": "27.5.1" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@testing-library/dom": [ + "9.3.0" + ], + "@types/aria-query": [ + "5.0.1" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "aria-query": [ + "5.1.3" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "deep-equal": [ + "2.1.0" + ], + "define-properties": [ + "1.1.4" + ], + "dom-accessibility-api": [ + "0.5.14" + ], + "es-get-iterator": [ + "1.1.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-arguments": [ + "1.1.1" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-map": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.10" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "js-tokens": [ + "4.0.0" + ], + "lz-string": [ + "1.5.0" + ], + "object-inspect": [ + "1.12.2" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "pretty-format": [ + "27.5.1" + ], + "react-is": [ + "17.0.2" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "side-channel": [ + "1.0.4" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__body-parser__1.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "body-parser", + "version": "1.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "url": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_unitless__0.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/unitless", + "version": "0.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==", + "url": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__graphql-tag__2.12.6__graphql_16.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "graphql-tag", + "version": "2.12.6_graphql_16.8.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "graphql": "16.8.1", + "tslib": "2.6.2" + }, + "transitive_closure": { + "graphql": [ + "16.8.1" + ], + "graphql-tag": [ + "2.12.6_graphql_16.8.1" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-visitor-keys__1.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-visitor-keys", + "version": "1.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "eslint-visitor-keys": [ + "1.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__minimist__1.2.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimist", + "version": "1.2.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "url": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_generator__7.23.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/generator", + "version": "7.23.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "url": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-prettier__5.1.3__-1234801097": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-prettier", + "version": "5.1.3_-1234801097", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-plugin-prettier" + ] + }, + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "url": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__flat-cache__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "flat-cache", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "url": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__clsx__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "clsx", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==", + "url": "https://registry.npmjs.org/clsx/-/clsx-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__concat-stream__1.6.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "concat-stream", + "version": "1.6.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "buffer-from": "1.1.2", + "inherits": "2.0.4", + "readable-stream": "2.3.7", + "typedarray": "0.0.6" + }, + "transitive_closure": { + "buffer-from": [ + "1.1.2" + ], + "concat-stream": [ + "1.6.2" + ], + "core-util-is": [ + "1.0.3" + ], + "inherits": [ + "2.0.4" + ], + "isarray": [ + "1.0.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "readable-stream": [ + "2.3.7" + ], + "safe-buffer": [ + "5.1.2" + ], + "string_decoder": [ + "1.1.1" + ], + "typedarray": [ + "0.0.6" + ], + "util-deprecate": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-extglob__2.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-extglob", + "version": "2.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "url": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__encodeurl__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "encodeurl", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "encodeurl": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_compat-data__7.20.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/compat-data", + "version": "7.20.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", + "url": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__path-key__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-key", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "url": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-is__16.13.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-is", + "version": "16.13.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "url": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__cross-spawn__7.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cross-spawn", + "version": "7.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "path-key": "3.1.1", + "shebang-command": "2.0.0", + "which": "2.0.2" + }, + "transitive_closure": { + "cross-spawn": [ + "7.0.3" + ], + "isexe": [ + "2.0.0" + ], + "path-key": [ + "3.1.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "which": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__esquery__1.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esquery", + "version": "1.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "url": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pkg-conf__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pkg-conf", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "find-up": "6.3.0", + "load-json-file": "7.0.1" + }, + "transitive_closure": { + "find-up": [ + "6.3.0" + ], + "load-json-file": [ + "7.0.1" + ], + "locate-path": [ + "7.1.1" + ], + "p-limit": [ + "4.0.0" + ], + "p-locate": [ + "6.0.0" + ], + "path-exists": [ + "5.0.0" + ], + "pkg-conf": [ + "4.0.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__prop-types__15.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "prop-types", + "version": "15.8.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "loose-envify": "1.4.0", + "object-assign": "4.1.1", + "react-is": "16.13.1" + }, + "transitive_closure": { + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "prop-types": [ + "15.8.1" + ], + "react-is": [ + "16.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-is__17.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-is", + "version": "17.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "react-is": [ + "17.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__proxy-addr__2.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "proxy-addr", + "version": "2.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "url": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__estraverse__5.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "estraverse", + "version": "5.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "estraverse": [ + "5.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-fullwidth-code-point__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-fullwidth-code-point", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "url": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yargs-unparser__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yargs-unparser", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "camelcase": "6.3.0", + "decamelize": "4.0.0", + "flat": "5.0.2", + "is-plain-obj": "2.1.0" + }, + "transitive_closure": { + "camelcase": [ + "6.3.0" + ], + "decamelize": [ + "4.0.0" + ], + "flat": [ + "5.0.2" + ], + "is-plain-obj": [ + "2.1.0" + ], + "yargs-unparser": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__color-convert__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "color-convert", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "url": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pkg-conf__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pkg-conf", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==", + "url": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-set__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-set", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-set": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__yargs-unparser__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yargs-unparser", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "url": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_types__5.44.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/types", + "version": "5.44.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ==", + "url": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__strip-ansi__6.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-ansi", + "version": "6.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "ansi-regex": "5.0.1" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "strip-ansi": [ + "6.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__readable-stream__2.3.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "readable-stream", + "version": "2.3.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "core-util-is": "1.0.3", + "inherits": "2.0.4", + "isarray": "1.0.0", + "process-nextick-args": "2.0.1", + "safe-buffer": "5.1.2", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + }, + "transitive_closure": { + "core-util-is": [ + "1.0.3" + ], + "inherits": [ + "2.0.4" + ], + "isarray": [ + "1.0.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "readable-stream": [ + "2.3.7" + ], + "safe-buffer": [ + "5.1.2" + ], + "string_decoder": [ + "1.1.1" + ], + "util-deprecate": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-function-name__7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-function-name", + "version": "7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "url": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_graphql-typed-document-node_core__3.1.1__graphql_16.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@graphql-typed-document-node/core", + "version": "3.1.1_graphql_16.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==", + "url": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__expect__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "expect", + "version": "29.7.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/expect-utils": "29.7.0", + "jest-get-type": "29.6.3", + "jest-matcher-utils": "29.7.0", + "jest-message-util": "29.7.0", + "jest-util": "29.7.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ], + "@types/istanbul-reports": [ + "3.0.4" + ], + "@types/node": [ + "20.11.6" + ], + "@types/stack-utils": [ + "2.0.3" + ], + "@types/yargs": [ + "17.0.32" + ], + "@types/yargs-parser": [ + "21.0.3" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "braces": [ + "3.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.9.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "expect": [ + "29.7.0" + ], + "fill-range": [ + "7.0.1" + ], + "graceful-fs": [ + "4.2.10" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "slash": [ + "3.0.0" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ajv__6.12.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ajv", + "version": "6.12.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fast-deep-equal": "3.1.3", + "fast-json-stable-stringify": "2.1.0", + "json-schema-traverse": "0.4.1", + "uri-js": "4.4.1" + }, + "transitive_closure": { + "ajv": [ + "6.12.6" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "punycode": [ + "2.1.1" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__lines-and-columns__1.2.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lines-and-columns", + "version": "1.2.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lines-and-columns": [ + "1.2.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__run-parallel__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "run-parallel", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "queue-microtask": "1.2.3" + }, + "transitive_closure": { + "queue-microtask": [ + "1.2.3" + ], + "run-parallel": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-to-regexp__6.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-to-regexp", + "version": "6.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-to-regexp": [ + "6.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-config-standard-jsx__11.0.0__1925191382__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-config-standard-jsx", + "version": "11.0.0_1925191382", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.52.0", + "eslint-plugin-react": "7.31.11_eslint_8.52.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-includes": [ + "3.1.6" + ], + "array.prototype.flatmap": [ + "1.3.1" + ], + "array.prototype.tosorted": [ + "1.1.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "define-properties": [ + "1.1.4" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-config-standard-jsx": [ + "11.0.0_1925191382" + ], + "eslint-plugin-react": [ + "7.31.11_eslint_8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.11.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "isexe": [ + "2.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "jsx-ast-utils": [ + "3.3.3" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "loose-envify": [ + "1.4.0" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.6" + ], + "object.fromentries": [ + "2.0.6" + ], + "object.hasown": [ + "1.1.2" + ], + "object.values": [ + "1.1.6" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "prelude-ls": [ + "1.2.1" + ], + "prop-types": [ + "15.8.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "react-is": [ + "16.13.1" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "resolve": [ + "2.0.0-next.4" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.matchall": [ + "4.0.8" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__object.values__1.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.values", + "version": "1.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.values": [ + "1.1.6" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__chalk__4.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "chalk", + "version": "4.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "ansi-styles": "4.3.0", + "supports-color": "7.2.0" + }, + "transitive_closure": { + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "has-flag": [ + "4.0.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_styled-engine__5.15.8__602618506__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/styled-engine", + "version": "5.15.8_602618506", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "@emotion/cache": "11.11.0", + "@emotion/react": "11.11.3_28312804", + "@emotion/styled": "11.11.0_1048222695", + "csstype": "3.1.2", + "prop-types": "15.8.1", + "react": "18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/types": [ + "7.23.6" + ], + "@emotion/babel-plugin": [ + "11.11.0" + ], + "@emotion/cache": [ + "11.11.0" + ], + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/is-prop-valid": [ + "1.2.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/react": [ + "11.11.3_28312804" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/sheet": [ + "1.2.2" + ], + "@emotion/styled": [ + "11.11.0_1048222695" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/use-insertion-effect-with-fallbacks": [ + "1.0.1_react_18.2.0" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@emotion/weak-memoize": [ + "0.3.1" + ], + "@mui/styled-engine": [ + "5.15.8_602618506" + ], + "@types/parse-json": [ + "4.0.0" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "csstype": [ + "3.1.2" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "find-root": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "hoist-non-react-statics": [ + "3.3.2" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-is": [ + "16.13.1" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "source-map": [ + "0.5.7" + ], + "stylis": [ + "4.2.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_remix-run_router__1.14.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@remix-run/router", + "version": "1.14.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@remix-run/router": [ + "1.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__dom-helpers__5.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dom-helpers", + "version": "5.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "csstype": "3.1.2" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.9" + ], + "csstype": [ + "3.1.2" + ], + "dom-helpers": [ + "5.2.1" + ], + "regenerator-runtime": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__he__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "he", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "he": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__locate-path__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "locate-path", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "url": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__media-typer__0.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "media-typer", + "version": "0.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "media-typer": [ + "0.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ansi-styles__5.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-styles", + "version": "5.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "url": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__sinon__17.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sinon", + "version": "17.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "sinon" + ] + }, + "integrity": "sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==", + "url": "https://registry.npmjs.org/sinon/-/sinon-17.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__balanced-match__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "balanced-match", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "url": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__js-tokens__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "js-tokens", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "js-tokens": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-fullwidth-code-point__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-fullwidth-code-point", + "version": "3.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-fullwidth-code-point": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_icons-material__5.15.8__-108852140": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/icons-material", + "version": "5.15.8_-108852140", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@mui/icons-material" + ] + }, + "integrity": "sha512-3Ikivf+BOJ7jT1/71HrbKeicgF9ENM4qo+J1050HMJLtLiJEVXbicnsg2oWJZL+0AsrOMaKnTmx1URBpkctLWg==", + "url": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.15.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__glob-parent__6.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "glob-parent", + "version": "6.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "url": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_typescript-estree__5.44.0__typescript_5.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/typescript-estree", + "version": "5.44.0_typescript_5.3.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "5.44.0", + "@typescript-eslint/visitor-keys": "5.44.0", + "debug": "4.3.4_supports-color_8.1.1", + "globby": "11.1.0", + "is-glob": "4.0.3", + "semver": "7.5.4", + "tsutils": "3.21.0_typescript_5.3.3", + "typescript": "5.3.3" + }, + "transitive_closure": { + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "array-union": [ + "2.1.0" + ], + "braces": [ + "3.0.2" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "dir-glob": [ + "3.0.1" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fastq": [ + "1.13.0" + ], + "fill-range": [ + "7.0.1" + ], + "glob-parent": [ + "5.1.2" + ], + "globby": [ + "11.1.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "ms": [ + "2.1.2" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "reusify": [ + "1.0.4" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "7.5.4" + ], + "slash": [ + "3.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "typescript": [ + "5.3.3" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__serialize-javascript__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "serialize-javascript", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "randombytes": "2.1.0" + }, + "transitive_closure": { + "randombytes": [ + "2.1.0" + ], + "safe-buffer": [ + "5.2.1" + ], + "serialize-javascript": [ + "6.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has-flag__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has-flag", + "version": "3.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "has-flag": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__once__1.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "once", + "version": "1.4.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "wrappy": "1.0.2" + }, + "transitive_closure": { + "once": [ + "1.4.0" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-core-module__2.11.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-core-module", + "version": "2.11.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "url": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-no-only-tests__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-no-only-tests", + "version": "3.1.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-plugin-no-only-tests" + ] + }, + "deps": {}, + "transitive_closure": { + "eslint-plugin-no-only-tests": [ + "3.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__globby__11.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "globby", + "version": "11.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-union": "2.1.0", + "dir-glob": "3.0.1", + "fast-glob": "3.2.12", + "ignore": "5.2.4", + "merge2": "1.4.1", + "slash": "3.0.0" + }, + "transitive_closure": { + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "array-union": [ + "2.1.0" + ], + "braces": [ + "3.0.2" + ], + "dir-glob": [ + "3.0.1" + ], + "fast-glob": [ + "3.2.12" + ], + "fastq": [ + "1.13.0" + ], + "fill-range": [ + "7.0.1" + ], + "glob-parent": [ + "5.1.2" + ], + "globby": [ + "11.1.0" + ], + "ignore": [ + "5.2.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "reusify": [ + "1.0.4" + ], + "run-parallel": [ + "1.2.0" + ], + "slash": [ + "3.0.0" + ], + "to-regex-range": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-map__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-map", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "url": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ms__2.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ms", + "version": "2.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__natural-compare-lite__1.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "natural-compare-lite", + "version": "1.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "natural-compare-lite": [ + "1.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__multer__1.4.5-lts.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "multer", + "version": "1.4.5-lts.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "multer" + ] + }, + "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "url": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__rimraf__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "rimraf", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "url": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_wry_context__0.7.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@wry/context", + "version": "0.7.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "@wry/context": [ + "0.7.4" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-scope__7.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-scope", + "version": "7.2.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "esrecurse": "4.3.0", + "estraverse": "5.3.0" + }, + "transitive_closure": { + "eslint-scope": [ + "7.2.2" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__supports-color__7.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "supports-color", + "version": "7.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "url": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-modal__3.16.1__react-dom_18.2.0__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-modal", + "version": "3.16.1_react-dom_18.2.0__react_18.2.0", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "react-modal" + ] + }, + "deps": { + "exenv": "1.2.2", + "prop-types": "15.8.1", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0", + "react-lifecycles-compat": "3.0.4", + "warning": "4.0.3" + }, + "transitive_closure": { + "exenv": [ + "1.2.2" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "16.13.1" + ], + "react-lifecycles-compat": [ + "3.0.4" + ], + "react-modal": [ + "3.16.1_react-dom_18.2.0__react_18.2.0" + ], + "scheduler": [ + "0.23.0" + ], + "warning": [ + "4.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-symbol__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-symbol", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-symbols": "1.0.3" + }, + "transitive_closure": { + "has-symbols": [ + "1.0.3" + ], + "is-symbol": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__lz-string__1.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lz-string", + "version": "1.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "url": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jest_schemas__29.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/schemas", + "version": "29.6.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@sinclair/typebox": "0.27.8" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-scope__7.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-scope", + "version": "7.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "url": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__shebang-command__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "shebang-command", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "url": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_floating-ui_core__1.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@floating-ui/core", + "version": "1.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", + "url": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__esbuild__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "esbuild" + ] + }, + "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", + "url": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-function-name__7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-function-name", + "version": "7.23.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/template": "7.22.15", + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/types": [ + "7.23.6" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_istanbul-lib-report__3.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/istanbul-lib-report", + "version": "3.0.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/istanbul-lib-coverage": "2.0.6" + }, + "transitive_closure": { + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_typescript-eslint_type-utils__5.44.0__-679725046__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/type-utils", + "version": "5.44.0_-679725046", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/typescript-estree": "5.44.0_typescript_5.3.3", + "@typescript-eslint/utils": "5.44.0_-679725046", + "debug": "4.3.4_supports-color_8.1.1", + "eslint": "8.52.0", + "tsutils": "3.21.0_typescript_5.3.3", + "typescript": "5.3.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json-schema": [ + "7.0.11" + ], + "@types/semver": [ + "7.3.13" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-union": [ + "2.1.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "slash": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__regenerator-runtime__0.14.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regenerator-runtime", + "version": "0.14.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "regenerator-runtime": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__find-root__1.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "find-root", + "version": "1.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "url": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__source-map__0.7.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map", + "version": "0.7.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "source-map": [ + "0.7.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_eslint_js__8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint/js", + "version": "8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==", + "url": "https://registry.npmjs.org/@eslint/js/-/js-8.52.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_commons__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sinonjs/commons", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "type-detect": "4.0.8" + }, + "transitive_closure": { + "@sinonjs/commons": [ + "2.0.0" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__http-errors__1.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-errors", + "version": "1.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "url": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_eslint-community_eslint-utils__4.4.0__eslint_8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint-community/eslint-utils", + "version": "4.4.0_eslint_8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "url": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__brace-expansion__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "brace-expansion", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "url": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__concat-stream__1.6.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "concat-stream", + "version": "1.6.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "url": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_yargs__17.0.32__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/yargs", + "version": "17.0.32", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/yargs-parser": "21.0.3" + }, + "transitive_closure": { + "@types/yargs": [ + "17.0.32" + ], + "@types/yargs-parser": [ + "21.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__isexe__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "isexe", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "isexe": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-transform-react-display-name__7.23.3__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-react-display-name", + "version": "7.23.3_at_babel_core_7.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.20.2", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/plugin-transform-react-display-name": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array-flatten__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array-flatten", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "array-flatten": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__zen-observable__0.8.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "zen-observable", + "version": "0.8.15", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "zen-observable": [ + "0.8.15" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__argparse__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "argparse", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "argparse": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__debug__4.3.4__supports-color_8.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "debug", + "version": "4.3.4_supports-color_8.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "ms": "2.1.2", + "supports-color": "8.1.1" + }, + "transitive_closure": { + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "has-flag": [ + "4.0.0" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "8.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint__8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint", + "version": "8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==", + "url": "https://registry.npmjs.org/eslint/-/eslint-8.52.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__get-caller-file__2.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-caller-file", + "version": "2.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "get-caller-file": [ + "2.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-date-object__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-date-object", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-date-object": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-import-resolver-node__0.3.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-import-resolver-node", + "version": "0.3.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "url": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__load-json-file__7.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "load-json-file", + "version": "7.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", + "url": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__debug__4.3.4__supports-color_8.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "debug", + "version": "4.3.4_supports-color_8.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "url": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_generator__7.23.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/generator", + "version": "7.23.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.6", + "@jridgewell/gen-mapping": "0.3.2", + "@jridgewell/trace-mapping": "0.3.20", + "jsesc": "2.5.2" + }, + "transitive_closure": { + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "jsesc": [ + "2.5.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_win32-ia32__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/win32-ia32", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/win32-ia32": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__update-browserslist-db__1.0.10__browserslist_4.21.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "update-browserslist-db", + "version": "1.0.10_browserslist_4.21.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "url": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-path-inside__3.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-path-inside", + "version": "3.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-path-inside": [ + "3.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__json5__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json5", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "url": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-dom__18.2.0__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-dom", + "version": "18.2.0_react_18.2.0", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "react-dom" + ] + }, + "deps": { + "loose-envify": "1.4.0", + "react": "18.2.0", + "scheduler": "0.23.0" + }, + "transitive_closure": { + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "scheduler": [ + "0.23.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-callable__1.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-callable", + "version": "1.2.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-callable": [ + "1.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jest-matcher-utils__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-matcher-utils", + "version": "29.7.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "chalk": "4.1.2", + "jest-diff": "29.7.0", + "jest-get-type": "29.6.3", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "ansi-styles": [ + "4.3.0", + "5.2.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "has-flag": [ + "4.0.0" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__type-is__1.6.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "type-is", + "version": "1.6.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "url": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yargs__16.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yargs", + "version": "16.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "cliui": "7.0.4", + "escalade": "3.1.1", + "get-caller-file": "2.0.5", + "require-directory": "2.1.1", + "string-width": "4.2.3", + "y18n": "5.0.8", + "yargs-parser": "20.2.9" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "cliui": [ + "7.0.4" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "emoji-regex": [ + "8.0.0" + ], + "escalade": [ + "3.1.1" + ], + "get-caller-file": [ + "2.0.5" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "require-directory": [ + "2.1.1" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ], + "wrap-ansi": [ + "7.0.0" + ], + "y18n": [ + "5.0.8" + ], + "yargs": [ + "16.2.0" + ], + "yargs-parser": [ + "20.2.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__require-directory__2.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "require-directory", + "version": "2.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "url": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yargs-parser__20.2.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yargs-parser", + "version": "20.2.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yargs-parser": [ + "20.2.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-plugin-node__11.1.0__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-node", + "version": "11.1.0_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-plugin-node" + ] + }, + "deps": { + "eslint": "8.57.0", + "eslint-plugin-es": "3.0.1_eslint_8.57.0", + "eslint-utils": "2.1.0", + "ignore": "5.2.4", + "minimatch": "3.1.2", + "resolve": "1.22.1", + "semver": "6.3.1" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.57.0" + ], + "@humanwhocodes/config-array": [ + "0.11.14" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.2" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-es": [ + "3.0.1_eslint_8.57.0" + ], + "eslint-plugin-node": [ + "11.1.0_eslint_8.57.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "2.1.0" + ], + "eslint-visitor-keys": [ + "1.3.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-core-module": [ + "2.11.0" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "6.3.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__functions-have-names__1.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "functions-have-names", + "version": "1.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "url": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_mui_utils__5.15.8__28312804__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/utils", + "version": "5.15.8_28312804", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "@types/prop-types": "15.7.11", + "@types/react": "18.2.48", + "prop-types": "15.8.1", + "react": "18.2.0", + "react-is": "18.2.0" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.9" + ], + "@mui/utils": [ + "5.15.8_28312804" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-is": [ + "16.13.1", + "18.2.0" + ], + "regenerator-runtime": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__buffer-from__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "buffer-from", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "url": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__string.prototype.trimstart__1.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.trimstart", + "version": "1.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "url": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__optimism__0.18.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "optimism", + "version": "0.18.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@wry/caches": "1.0.1", + "@wry/context": "0.7.4", + "@wry/trie": "0.4.3", + "tslib": "2.6.2" + }, + "transitive_closure": { + "@wry/caches": [ + "1.0.1" + ], + "@wry/context": [ + "0.7.4" + ], + "@wry/trie": [ + "0.4.3" + ], + "optimism": [ + "0.18.0" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__setprototypeof__1.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "setprototypeof", + "version": "1.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "url": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-extglob__2.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-extglob", + "version": "2.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-extglob": [ + "2.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-number-object__1.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-number-object", + "version": "1.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-number-object": [ + "1.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__bytes__3.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "bytes", + "version": "3.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "bytes": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__esutils__2.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esutils", + "version": "2.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esutils": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_react-router__5.1.19": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react-router", + "version": "5.1.19", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Fv/5kb2STAEMT3wHzdKQK2z8xKq38EDIGVrutYLmQVVLe+4orDFquU52hQrULnEHinMKv9FSA6lf9+uNT1ITtA==", + "url": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.19.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__json-parse-even-better-errors__2.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json-parse-even-better-errors", + "version": "2.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "url": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_mui_core-downloads-tracker__5.15.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/core-downloads-tracker", + "version": "5.15.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-W6R1dZJgbYfLmQKf7Es2WUw0pkDkEVUf2jA22DYu0JOa9M3pjvOqoC9HgOPGNNJTu6SCWLSWh3euv1Jn2NmeQA==", + "url": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.15.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pretty-ms__9.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pretty-ms", + "version": "9.0.0", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "pretty-ms" + ] + }, + "deps": { + "parse-ms": "4.0.0" + }, + "transitive_closure": { + "parse-ms": [ + "4.0.0" + ], + "pretty-ms": [ + "9.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__body-parser__1.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "body-parser", + "version": "1.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "bytes": "3.1.2", + "content-type": "1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "1.6.18", + "unpipe": "1.0.0" + }, + "transitive_closure": { + "body-parser": [ + "1.20.2" + ], + "bytes": [ + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "content-type": [ + "1.0.5" + ], + "debug": [ + "2.6.9" + ], + "depd": [ + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "ee-first": [ + "1.1.1" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "http-errors": [ + "2.0.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "inherits": [ + "2.0.4" + ], + "media-typer": [ + "0.3.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.0.0" + ], + "object-inspect": [ + "1.12.2" + ], + "on-finished": [ + "2.4.1" + ], + "qs": [ + "6.11.0" + ], + "raw-body": [ + "2.5.2" + ], + "safer-buffer": [ + "2.1.2" + ], + "setprototypeof": [ + "1.2.0" + ], + "side-channel": [ + "1.0.4" + ], + "statuses": [ + "2.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "unpipe": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__braces__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "braces", + "version": "3.0.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "fill-range": "7.0.1" + }, + "transitive_closure": { + "braces": [ + "3.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "is-number": [ + "7.0.0" + ], + "to-regex-range": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__inflight__1.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "inflight", + "version": "1.0.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "once": "1.4.0", + "wrappy": "1.0.2" + }, + "transitive_closure": { + "inflight": [ + "1.0.6" + ], + "once": [ + "1.4.0" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-split-export-declaration__7.22.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-split-export-declaration", + "version": "7.22.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "url": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_json-schema__7.0.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/json-schema", + "version": "7.0.11", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/json-schema": [ + "7.0.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jridgewell_sourcemap-codec__1.4.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/sourcemap-codec", + "version": "1.4.14", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__json-parse-better-errors__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json-parse-better-errors", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "json-parse-better-errors": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__pretty-format__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pretty-format", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "url": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__min-indent__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "min-indent", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "url": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-limit__2.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-limit", + "version": "2.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "url": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-visitor-keys__1.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-visitor-keys", + "version": "1.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "url": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__content-disposition__0.5.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "content-disposition", + "version": "0.5.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "url": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_react__18.2.48__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react", + "version": "18.2.48", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react" + ] + }, + "deps": { + "@types/prop-types": "15.7.11", + "@types/scheduler": "0.16.2", + "csstype": "3.1.2" + }, + "transitive_closure": { + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__warning__4.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "warning", + "version": "4.0.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "loose-envify": "1.4.0" + }, + "transitive_closure": { + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "warning": [ + "4.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_android-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/android-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", + "url": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_fake-timers__11.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sinonjs/fake-timers", + "version": "11.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==", + "url": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-11.2.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-router-dom__6.21.3__react-dom_18.2.0__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-router-dom", + "version": "6.21.3_react-dom_18.2.0__react_18.2.0", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "react-router-dom" + ] + }, + "deps": { + "@remix-run/router": "1.14.2", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0", + "react-router": "6.21.3_react_18.2.0" + }, + "transitive_closure": { + "@remix-run/router": [ + "1.14.2" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-router": [ + "6.21.3_react_18.2.0" + ], + "react-router-dom": [ + "6.21.3_react-dom_18.2.0__react_18.2.0" + ], + "scheduler": [ + "0.23.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__internal-slot__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "internal-slot", + "version": "1.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-intrinsic": "1.1.3", + "has": "1.0.3", + "side-channel": "1.0.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "internal-slot": [ + "1.0.3" + ], + "object-inspect": [ + "1.12.2" + ], + "side-channel": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint__8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint", + "version": "8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@eslint-community/eslint-utils": "4.4.0_eslint_8.52.0", + "@eslint-community/regexpp": "4.9.1", + "@eslint/eslintrc": "2.1.2", + "@eslint/js": "8.52.0", + "@humanwhocodes/config-array": "0.11.13", + "@humanwhocodes/module-importer": "1.0.1", + "@nodelib/fs.walk": "1.2.8", + "@ungap/structured-clone": "1.2.0", + "ajv": "6.12.6", + "chalk": "4.1.2", + "cross-spawn": "7.0.3", + "debug": "4.3.4_supports-color_8.1.1", + "doctrine": "3.0.0", + "escape-string-regexp": "4.0.0", + "eslint-scope": "7.2.2", + "eslint-visitor-keys": "3.4.3", + "espree": "9.6.1", + "esquery": "1.5.0", + "esutils": "2.0.3", + "fast-deep-equal": "3.1.3", + "file-entry-cache": "6.0.1", + "find-up": "5.0.0", + "glob-parent": "6.0.2", + "globals": "13.23.0", + "graphemer": "1.4.0", + "ignore": "5.2.4", + "imurmurhash": "0.1.4", + "is-glob": "4.0.3", + "is-path-inside": "3.0.3", + "js-yaml": "4.1.0", + "json-stable-stringify-without-jsonify": "1.0.1", + "levn": "0.4.1", + "lodash.merge": "4.6.2", + "minimatch": "3.1.2", + "natural-compare": "1.4.0", + "optionator": "0.9.3", + "strip-ansi": "6.0.1", + "text-table": "0.2.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__yocto-queue__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yocto-queue", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__semver__7.5.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "semver", + "version": "7.5.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "lru-cache": "6.0.0" + }, + "transitive_closure": { + "lru-cache": [ + "6.0.0" + ], + "semver": [ + "7.5.4" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__send__0.18.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "send", + "version": "0.18.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "1.2.1", + "statuses": "2.0.1" + }, + "transitive_closure": { + "debug": [ + "2.6.9" + ], + "depd": [ + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "ee-first": [ + "1.1.1" + ], + "encodeurl": [ + "1.0.2" + ], + "escape-html": [ + "1.0.3" + ], + "etag": [ + "1.8.1" + ], + "fresh": [ + "0.5.2" + ], + "http-errors": [ + "2.0.0" + ], + "inherits": [ + "2.0.4" + ], + "mime": [ + "1.6.0" + ], + "ms": [ + "2.0.0", + "2.1.3" + ], + "on-finished": [ + "2.4.1" + ], + "range-parser": [ + "1.2.1" + ], + "send": [ + "0.18.0" + ], + "setprototypeof": [ + "1.2.0" + ], + "statuses": [ + "2.0.1" + ], + "toidentifier": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_typescript-eslint_scope-manager__5.44.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/scope-manager", + "version": "5.44.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "5.44.0", + "@typescript-eslint/visitor-keys": "5.44.0" + }, + "transitive_closure": { + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "eslint-visitor-keys": [ + "3.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-visitor-keys__3.4.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-visitor-keys", + "version": "3.4.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "eslint-visitor-keys": [ + "3.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__just-extend__6.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "just-extend", + "version": "6.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==", + "url": "https://registry.npmjs.org/just-extend/-/just-extend-6.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__flat__5.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "flat", + "version": "5.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "url": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object-inspect__1.12.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object-inspect", + "version": "1.12.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "object-inspect": [ + "1.12.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cosmiconfig__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cosmiconfig", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "url": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__string-width__4.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string-width", + "version": "4.2.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "emoji-regex": "8.0.0", + "is-fullwidth-code-point": "3.0.0", + "strip-ansi": "6.0.1" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "emoji-regex": [ + "8.0.0" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__anymatch__3.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "anymatch", + "version": "3.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "url": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-utils__3.0.0__eslint_8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-utils", + "version": "3.0.0_eslint_8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "url": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__es-to-primitive__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-to-primitive", + "version": "1.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-callable": "1.2.7", + "is-date-object": "1.0.5", + "is-symbol": "1.0.4" + }, + "transitive_closure": { + "es-to-primitive": [ + "1.2.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-symbol": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__content-disposition__0.5.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "content-disposition", + "version": "0.5.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "safe-buffer": "5.2.1" + }, + "transitive_closure": { + "content-disposition": [ + "0.5.4" + ], + "safe-buffer": [ + "5.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__string_decoder__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string_decoder", + "version": "1.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "safe-buffer": "5.1.2" + }, + "transitive_closure": { + "safe-buffer": [ + "5.1.2" + ], + "string_decoder": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-module-transforms__7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-module-transforms", + "version": "7.20.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-module-imports": "7.22.15", + "@babel/helper-simple-access": "7.20.2", + "@babel/helper-split-export-declaration": "7.22.6", + "@babel/helper-validator-identifier": "7.22.20", + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.7", + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__xtend__4.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "xtend", + "version": "4.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "xtend": [ + "4.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_template__7.22.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/template", + "version": "7.22.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "url": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__graceful-fs__4.2.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "graceful-fs", + "version": "4.2.10", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "graceful-fs": [ + "4.2.10" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__object-assign__4.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object-assign", + "version": "4.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "object-assign": [ + "4.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__xdg-basedir__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "xdg-basedir", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "xdg-basedir": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__argparse__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "argparse", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "url": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__toidentifier__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "toidentifier", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "url": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__supports-color__5.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "supports-color", + "version": "5.5.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "has-flag": "3.0.0" + }, + "transitive_closure": { + "has-flag": [ + "3.0.0" + ], + "supports-color": [ + "5.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__micromatch__4.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "micromatch", + "version": "4.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "url": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jridgewell_resolve-uri__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/resolve-uri", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "url": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__gopd__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "gopd", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "url": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-loong64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-loong64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", + "url": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__source-map__0.7.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map", + "version": "0.7.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "url": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_unitless__0.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/unitless", + "version": "0.8.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@emotion/unitless": [ + "0.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__estraverse__4.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "estraverse", + "version": "4.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "url": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__standard-engine__15.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "standard-engine", + "version": "15.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-stdin": "8.0.0", + "minimist": "1.2.7", + "pkg-conf": "3.1.0", + "xdg-basedir": "4.0.0" + }, + "transitive_closure": { + "error-ex": [ + "1.3.2" + ], + "find-up": [ + "3.0.0" + ], + "get-stdin": [ + "8.0.0" + ], + "graceful-fs": [ + "4.2.10" + ], + "is-arrayish": [ + "0.2.1" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "load-json-file": [ + "5.3.0" + ], + "locate-path": [ + "3.0.0" + ], + "minimist": [ + "1.2.7" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "3.0.0" + ], + "p-try": [ + "2.2.0" + ], + "parse-json": [ + "4.0.0" + ], + "path-exists": [ + "3.0.0" + ], + "pify": [ + "4.0.1" + ], + "pkg-conf": [ + "3.1.0" + ], + "standard-engine": [ + "15.0.0" + ], + "strip-bom": [ + "3.0.0" + ], + "type-fest": [ + "0.3.1" + ], + "xdg-basedir": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__etag__1.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "etag", + "version": "1.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "url": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jsesc__2.5.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jsesc", + "version": "2.5.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "url": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__core-util-is__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "core-util-is", + "version": "1.0.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "core-util-is": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-bigint__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-bigint", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "url": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__diff__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "diff", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "diff": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_utils__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/utils", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==", + "url": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-config-standard__17.0.0__978117738": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-config-standard", + "version": "17.0.0_978117738", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==", + "url": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-annotate-as-pure__7.22.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-annotate-as-pure", + "version": "7.22.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "url": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ci-info__3.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ci-info", + "version": "3.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "url": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__setprototypeof__1.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "setprototypeof", + "version": "1.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "setprototypeof": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fast-diff__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fast-diff", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "url": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__unbox-primitive__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "unbox-primitive", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "url": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_parse-json__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/parse-json", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/parse-json": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint__8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint", + "version": "8.57.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint" + ] + }, + "deps": { + "@eslint-community/eslint-utils": "4.4.0_eslint_8.57.0", + "@eslint-community/regexpp": "4.9.1", + "@eslint/eslintrc": "2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "0.11.14", + "@humanwhocodes/module-importer": "1.0.1", + "@nodelib/fs.walk": "1.2.8", + "@ungap/structured-clone": "1.2.0", + "ajv": "6.12.6", + "chalk": "4.1.2", + "cross-spawn": "7.0.3", + "debug": "4.3.4_supports-color_8.1.1", + "doctrine": "3.0.0", + "escape-string-regexp": "4.0.0", + "eslint-scope": "7.2.2", + "eslint-visitor-keys": "3.4.3", + "espree": "9.6.1", + "esquery": "1.5.0", + "esutils": "2.0.3", + "fast-deep-equal": "3.1.3", + "file-entry-cache": "6.0.1", + "find-up": "5.0.0", + "glob-parent": "6.0.2", + "globals": "13.23.0", + "graphemer": "1.4.0", + "ignore": "5.2.4", + "imurmurhash": "0.1.4", + "is-glob": "4.0.3", + "is-path-inside": "3.0.3", + "js-yaml": "4.1.0", + "json-stable-stringify-without-jsonify": "1.0.1", + "levn": "0.4.1", + "lodash.merge": "4.6.2", + "minimatch": "3.1.2", + "natural-compare": "1.4.0", + "optionator": "0.9.3", + "strip-ansi": "6.0.1", + "text-table": "0.2.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.57.0" + ], + "@humanwhocodes/config-array": [ + "0.11.14" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.2" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_win32-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/win32-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", + "url": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.assign__4.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.assign", + "version": "4.1.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "has-symbols": "1.0.3", + "object-keys": "1.1.1" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__require-directory__2.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "require-directory", + "version": "2.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "require-directory": [ + "2.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__p-try__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-try", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "url": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__batch__0.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "batch", + "version": "0.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "batch": [ + "0.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__escape-string-regexp__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "escape-string-regexp", + "version": "2.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escape-string-regexp": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__scheduler__0.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "scheduler", + "version": "0.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "url": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__tsutils__3.21.0__typescript_5.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tsutils", + "version": "3.21.0_typescript_5.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "url": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_react-modal__3.16.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react-modal", + "version": "3.16.3", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react-modal" + ] + }, + "deps": { + "@types/react": "18.2.48" + }, + "transitive_closure": { + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-modal": [ + "3.16.3" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__response-iterator__0.2.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "response-iterator", + "version": "0.2.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "response-iterator": [ + "0.2.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ansi-regex__5.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-regex", + "version": "5.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "url": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__yocto-queue__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yocto-queue", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "url": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-mips64el__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-mips64el", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", + "url": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__has-bigints__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has-bigints", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "has-bigints": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__lines-and-columns__1.2.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lines-and-columns", + "version": "1.2.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "url": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__parse-json__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "parse-json", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "error-ex": "1.3.2", + "json-parse-better-errors": "1.0.2" + }, + "transitive_closure": { + "error-ex": [ + "1.3.2" + ], + "is-arrayish": [ + "0.2.1" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "parse-json": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__bytes__3.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "bytes", + "version": "3.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "url": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ansi-styles__3.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-styles", + "version": "3.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "url": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fs.realpath__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fs.realpath", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "url": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_text-encoding__0.7.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sinonjs/text-encoding", + "version": "0.7.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@sinonjs/text-encoding": [ + "0.7.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fast-json-stable-stringify__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fast-json-stable-stringify", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "url": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__reusify__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "reusify", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "url": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_react-transition-group__4.4.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react-transition-group", + "version": "4.4.10", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/react": "18.2.48" + }, + "transitive_closure": { + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-transition-group": [ + "4.4.10" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__isarray__2.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "isarray", + "version": "2.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "url": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ts-invariant__0.10.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ts-invariant", + "version": "0.10.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==", + "url": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.10.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mocha__10.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mocha", + "version": "10.3.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "mocha" + ] + }, + "deps": { + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4_supports-color_8.1.1", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "8.1.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "transitive_closure": { + "ansi-colors": [ + "4.1.1" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "binary-extensions": [ + "2.2.0" + ], + "brace-expansion": [ + "2.0.1" + ], + "braces": [ + "3.0.2" + ], + "browser-stdout": [ + "1.3.1" + ], + "camelcase": [ + "6.3.0" + ], + "chalk": [ + "4.1.2" + ], + "chokidar": [ + "3.5.3" + ], + "cliui": [ + "7.0.4" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "decamelize": [ + "4.0.0" + ], + "diff": [ + "5.0.0" + ], + "emoji-regex": [ + "8.0.0" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat": [ + "5.0.2" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.2" + ], + "get-caller-file": [ + "2.0.5" + ], + "glob": [ + "8.1.0" + ], + "glob-parent": [ + "5.1.2" + ], + "has-flag": [ + "4.0.0" + ], + "he": [ + "1.2.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-extglob": [ + "2.1.1" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "2.1.0" + ], + "is-unicode-supported": [ + "0.1.0" + ], + "js-yaml": [ + "4.1.0" + ], + "locate-path": [ + "6.0.0" + ], + "log-symbols": [ + "4.1.0" + ], + "minimatch": [ + "5.0.1", + "5.1.0" + ], + "mocha": [ + "10.3.0" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "path-exists": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "randombytes": [ + "2.1.0" + ], + "readdirp": [ + "3.6.0" + ], + "require-directory": [ + "2.1.1" + ], + "safe-buffer": [ + "5.2.1" + ], + "serialize-javascript": [ + "6.0.0" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "to-regex-range": [ + "5.0.1" + ], + "workerpool": [ + "6.2.1" + ], + "wrap-ansi": [ + "7.0.0" + ], + "wrappy": [ + "1.0.2" + ], + "y18n": [ + "5.0.8" + ], + "yargs": [ + "16.2.0" + ], + "yargs-parser": [ + "20.2.4", + "20.2.9" + ], + "yargs-unparser": [ + "2.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__decamelize__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "decamelize", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "decamelize": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-number__7.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-number", + "version": "7.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "url": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__locate-path__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "locate-path", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-locate": "5.0.0" + }, + "transitive_closure": { + "locate-path": [ + "6.0.0" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__parse-json__5.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "parse-json", + "version": "5.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "error-ex": "1.3.2", + "json-parse-even-better-errors": "2.3.1", + "lines-and-columns": "1.2.4" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "parse-json": [ + "5.2.0" + ], + "supports-color": [ + "5.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_eslint-community_regexpp__4.9.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint-community/regexpp", + "version": "4.9.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@eslint-community/regexpp": [ + "4.9.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jest_schemas__29.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/schemas", + "version": "29.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "url": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__json5__2.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json5", + "version": "2.2.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "json5": [ + "2.2.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__prettier-linter-helpers__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "prettier-linter-helpers", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fast-diff": "1.2.0" + }, + "transitive_closure": { + "fast-diff": [ + "1.2.0" + ], + "prettier-linter-helpers": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-callable__1.2.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-callable", + "version": "1.2.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "url": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__etag__1.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "etag", + "version": "1.8.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "etag": [ + "1.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__graphemer__1.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "graphemer", + "version": "1.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "url": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_react-dom__18.2.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react-dom", + "version": "18.2.18", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react-dom" + ] + }, + "deps": { + "@types/react": "18.2.48" + }, + "transitive_closure": { + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/react-dom": [ + "18.2.18" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_json5__0.0.29__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/json5", + "version": "0.0.29", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/json5": [ + "0.0.29" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__punycode__2.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "punycode", + "version": "2.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "url": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__estraverse__5.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "estraverse", + "version": "5.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "url": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__finalhandler__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "finalhandler", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "2.6.9", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "on-finished": "2.4.1", + "parseurl": "1.3.3", + "statuses": "2.0.1", + "unpipe": "1.0.0" + }, + "transitive_closure": { + "debug": [ + "2.6.9" + ], + "ee-first": [ + "1.1.1" + ], + "encodeurl": [ + "1.0.2" + ], + "escape-html": [ + "1.0.3" + ], + "finalhandler": [ + "1.2.0" + ], + "ms": [ + "2.0.0" + ], + "on-finished": [ + "2.4.1" + ], + "parseurl": [ + "1.3.3" + ], + "statuses": [ + "2.0.1" + ], + "unpipe": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__camelcase__6.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "camelcase", + "version": "6.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "camelcase": [ + "6.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__strip-indent__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-indent", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "url": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_history__4.7.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/history", + "version": "4.7.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", + "url": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__exenv__1.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "exenv", + "version": "1.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==", + "url": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pretty-format__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pretty-format", + "version": "29.7.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/schemas": "29.6.3", + "ansi-styles": "5.2.0", + "react-is": "18.2.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "ansi-styles": [ + "5.2.0" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__source-map__0.5.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map", + "version": "0.5.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "url": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__uri-js__4.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "uri-js", + "version": "4.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "punycode": "2.1.1" + }, + "transitive_closure": { + "punycode": [ + "2.1.1" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__internal-slot__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "internal-slot", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "url": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_ampproject_remapping__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@ampproject/remapping", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "url": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinclair_typebox__0.27.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sinclair/typebox", + "version": "0.27.8", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@sinclair/typebox": [ + "0.27.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__type-detect__4.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "type-detect", + "version": "4.0.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__electron-to-chromium__1.4.284__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "electron-to-chromium", + "version": "1.4.284", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "electron-to-chromium": [ + "1.4.284" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-router__6.21.3__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-router", + "version": "6.21.3_react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-a0H638ZXULv1OdkmiK6s6itNhoy33ywxmUFT/xtSoVyf9VnC7n7+VT4LjVzdIHSaF5TIh9ylUgxMXksHTgGrKg==", + "url": "https://registry.npmjs.org/react-router/-/react-router-6.21.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__util-deprecate__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "util-deprecate", + "version": "1.0.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "util-deprecate": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__pretty-format__27.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pretty-format", + "version": "27.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ansi-regex": "5.0.1", + "ansi-styles": "5.2.0", + "react-is": "17.0.2" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "5.2.0" + ], + "pretty-format": [ + "27.5.1" + ], + "react-is": [ + "17.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-docker__2.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-docker", + "version": "2.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-docker": [ + "2.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_react-modal__3.16.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react-modal", + "version": "3.16.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react-modal" + ] + }, + "integrity": "sha512-xXuGavyEGaFQDgBv4UVm8/ZsG+qxeQ7f77yNrW3n+1J6XAstUy5rYHeIHPh1KzsGc6IkCIdu6lQ2xWzu1jBTLg==", + "url": "https://registry.npmjs.org/@types/react-modal/-/react-modal-3.16.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__glob__7.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "glob", + "version": "7.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "url": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__content-type__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "content-type", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "content-type": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__undici-types__5.26.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "undici-types", + "version": "5.26.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__serve-static__1.15.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "serve-static", + "version": "1.15.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "url": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__get-intrinsic__1.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-intrinsic", + "version": "1.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "url": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__callsites__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "callsites", + "version": "3.1.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "callsites": [ + "3.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jest_expect-utils__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/expect-utils", + "version": "29.7.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "jest-get-type": "29.6.3" + }, + "transitive_closure": { + "@jest/expect-utils": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__deep-equal__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "deep-equal", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==", + "url": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__semver__7.5.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "semver", + "version": "7.5.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "url": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_netbsd-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/netbsd-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", + "url": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-es__4.1.0__eslint_8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-es", + "version": "4.1.0_eslint_8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "url": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__path-browserify__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-browserify", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "path-browserify" + ] + }, + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "url": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__regexp.prototype.flags__1.4.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regexp.prototype.flags", + "version": "1.4.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "url": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__type-is__1.6.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "type-is", + "version": "1.6.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "media-typer": "0.3.0", + "mime-types": "2.1.35" + }, + "transitive_closure": { + "media-typer": [ + "0.3.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "type-is": [ + "1.6.18" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_react-router-dom__5.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react-router-dom", + "version": "5.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react-router-dom" + ] + }, + "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", + "url": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-module-utils__2.7.4__-814034063__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-module-utils", + "version": "2.7.4_-814034063", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/parser": "5.44.0_-679725046", + "debug": "3.2.7", + "eslint": "8.52.0", + "eslint-import-resolver-node": "0.3.6" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@typescript-eslint/parser": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-union": [ + "2.1.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "3.2.7", + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-import-resolver-node": [ + "0.3.6" + ], + "eslint-module-utils": [ + "2.7.4_-814034063" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-core-module": [ + "2.11.0" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "slash": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__safer-buffer__2.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "safer-buffer", + "version": "2.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "url": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mime-types__2.1.35__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mime-types", + "version": "2.1.35", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "mime-db": "1.52.0" + }, + "transitive_closure": { + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint__8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint", + "version": "8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint" + ] + }, + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "url": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_mui_system__5.15.8__-1696370565": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/system", + "version": "5.15.8_-1696370565", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BUMJvlz1UqIqDPyrvc+MwjOUkWKskUPAOUuRh2KMAworiXuuUmtIivxSfdGll2ex6RHSylu4yc5dJZByOI8EcQ==", + "url": "https://registry.npmjs.org/@mui/system/-/system-5.15.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_eslint-plugin__5.44.0__909934447": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/eslint-plugin", + "version": "5.44.0_909934447", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-j5ULd7FmmekcyWeArx+i8x7sdRHzAtXTkmDPthE4amxZOWKFK7bomoJ4r7PJ8K7PoMzD16U8MmuZFAonr1ERvw==", + "url": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__core-util-is__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "core-util-is", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "url": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__lru-cache__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lru-cache", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "yallist": "4.0.0" + }, + "transitive_closure": { + "lru-cache": [ + "6.0.0" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_apollo_client__3.8.10__1356184083__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@apollo/client", + "version": "3.8.10_1356184083", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@apollo/client" + ] + }, + "deps": { + "@graphql-typed-document-node/core": "3.1.1_graphql_16.8.1", + "@wry/equality": "0.5.6", + "@wry/trie": "0.5.0", + "graphql": "16.8.1", + "graphql-tag": "2.12.6_graphql_16.8.1", + "hoist-non-react-statics": "3.3.2", + "optimism": "0.18.0", + "prop-types": "15.8.1", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0", + "response-iterator": "0.2.6", + "symbol-observable": "4.0.0", + "ts-invariant": "0.10.3", + "tslib": "2.6.2", + "zen-observable-ts": "1.2.5" + }, + "transitive_closure": { + "@apollo/client": [ + "3.8.10_1356184083" + ], + "@graphql-typed-document-node/core": [ + "3.1.1_graphql_16.8.1" + ], + "@wry/caches": [ + "1.0.1" + ], + "@wry/context": [ + "0.7.4" + ], + "@wry/equality": [ + "0.5.6" + ], + "@wry/trie": [ + "0.4.3", + "0.5.0" + ], + "graphql": [ + "16.8.1" + ], + "graphql-tag": [ + "2.12.6_graphql_16.8.1" + ], + "hoist-non-react-statics": [ + "3.3.2" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "optimism": [ + "0.18.0" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "16.13.1" + ], + "response-iterator": [ + "0.2.6" + ], + "scheduler": [ + "0.23.0" + ], + "symbol-observable": [ + "4.0.0" + ], + "ts-invariant": [ + "0.10.3" + ], + "tslib": [ + "2.6.2" + ], + "zen-observable": [ + "0.8.15" + ], + "zen-observable-ts": [ + "1.2.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__acorn__8.10.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn", + "version": "8.10.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "url": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-limit__2.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-limit", + "version": "2.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-try": "2.2.0" + }, + "transitive_closure": { + "p-limit": [ + "2.3.0" + ], + "p-try": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-validator-option__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-validator-option", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "url": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__emoji-regex__8.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "emoji-regex", + "version": "8.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "url": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.fromentries__2.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.fromentries", + "version": "2.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.fromentries": [ + "2.0.6" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-transform-react-pure-annotations__7.23.3__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-react-pure-annotations", + "version": "7.23.3_at_babel_core_7.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.20.2", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/plugin-transform-react-pure-annotations": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__caniuse-lite__1.0.30001434__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "caniuse-lite", + "version": "1.0.30001434", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "caniuse-lite": [ + "1.0.30001434" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__doctrine__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "doctrine", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "url": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.hasown__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.hasown", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "url": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_android-arm__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/android-arm", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", + "url": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mime-types__2.1.35": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mime-types", + "version": "2.1.35", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "url": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__y18n__5.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "y18n", + "version": "5.0.8", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "y18n": [ + "5.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-string-parser__7.23.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-string-parser", + "version": "7.23.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "url": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_serialize__1.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/serialize", + "version": "1.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", + "url": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__randombytes__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "randombytes", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "url": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_runtime__7.23.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/runtime", + "version": "7.23.9", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "regenerator-runtime": "0.14.0" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.9" + ], + "regenerator-runtime": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_graphql-typed-document-node_core__3.1.1__graphql_16.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@graphql-typed-document-node/core", + "version": "3.1.1_graphql_16.8.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "graphql": "16.8.1" + }, + "transitive_closure": { + "@graphql-typed-document-node/core": [ + "3.1.1_graphql_16.8.1" + ], + "graphql": [ + "16.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__source-map-explorer__2.5.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map-explorer", + "version": "2.5.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "source-map-explorer" + ] + }, + "integrity": "sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==", + "url": "https://registry.npmjs.org/source-map-explorer/-/source-map-explorer-2.5.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__util-deprecate__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "util-deprecate", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "url": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ts-standard__12.0.2__typescript_5.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ts-standard", + "version": "12.0.2_typescript_5.3.3", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "ts-standard" + ] + }, + "deps": { + "@typescript-eslint/eslint-plugin": "5.44.0_909934447", + "@typescript-eslint/parser": "5.44.0_-679725046", + "eslint": "8.52.0", + "eslint-config-standard-jsx": "11.0.0_1925191382", + "eslint-config-standard-with-typescript": "23.0.0_-1246222472", + "eslint-plugin-import": "2.26.0_-730645774", + "eslint-plugin-n": "15.5.1_eslint_8.52.0", + "eslint-plugin-promise": "6.1.1_eslint_8.52.0", + "eslint-plugin-react": "7.31.11_eslint_8.52.0", + "minimist": "1.2.7", + "pkg-conf": "4.0.0", + "standard-engine": "15.0.0", + "typescript": "5.3.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json-schema": [ + "7.0.11" + ], + "@types/json5": [ + "0.0.29" + ], + "@types/semver": [ + "7.3.13" + ], + "@typescript-eslint/eslint-plugin": [ + "5.44.0_909934447" + ], + "@typescript-eslint/parser": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-includes": [ + "3.1.6" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.flat": [ + "1.3.1" + ], + "array.prototype.flatmap": [ + "1.3.1" + ], + "array.prototype.tosorted": [ + "1.1.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "builtins": [ + "5.0.1" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "3.2.7", + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "define-properties": [ + "1.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "error-ex": [ + "1.3.2" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-config-standard": [ + "17.0.0_978117738" + ], + "eslint-config-standard-jsx": [ + "11.0.0_1925191382" + ], + "eslint-config-standard-with-typescript": [ + "23.0.0_-1246222472" + ], + "eslint-import-resolver-node": [ + "0.3.6" + ], + "eslint-module-utils": [ + "2.7.4_-814034063" + ], + "eslint-plugin-es": [ + "4.1.0_eslint_8.52.0" + ], + "eslint-plugin-import": [ + "2.26.0_-730645774" + ], + "eslint-plugin-n": [ + "15.5.1_eslint_8.52.0" + ], + "eslint-plugin-promise": [ + "6.1.1_eslint_8.52.0" + ], + "eslint-plugin-react": [ + "7.31.11_eslint_8.52.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "2.1.0", + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "1.3.0", + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "3.0.0", + "5.0.0", + "6.3.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-stdin": [ + "8.0.0" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graceful-fs": [ + "4.2.10" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "internal-slot": [ + "1.0.3" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.11.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number": [ + "7.0.0" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "isexe": [ + "2.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "jsx-ast-utils": [ + "3.3.3" + ], + "levn": [ + "0.4.1" + ], + "load-json-file": [ + "5.3.0", + "7.0.1" + ], + "locate-path": [ + "3.0.0", + "6.0.0", + "7.1.1" + ], + "lodash.merge": [ + "4.6.2" + ], + "loose-envify": [ + "1.4.0" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.7" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "natural-compare-lite": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.6" + ], + "object.fromentries": [ + "2.0.6" + ], + "object.hasown": [ + "1.1.2" + ], + "object.values": [ + "1.1.6" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "2.3.0", + "3.1.0", + "4.0.0" + ], + "p-locate": [ + "3.0.0", + "5.0.0", + "6.0.0" + ], + "p-try": [ + "2.2.0" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "4.0.0" + ], + "path-exists": [ + "3.0.0", + "4.0.0", + "5.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pify": [ + "4.0.1" + ], + "pkg-conf": [ + "3.1.0", + "4.0.0" + ], + "prelude-ls": [ + "1.2.1" + ], + "prop-types": [ + "15.8.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "react-is": [ + "16.13.1" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.1", + "2.0.0-next.4" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "standard-engine": [ + "15.0.0" + ], + "string.prototype.matchall": [ + "4.0.8" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "ts-standard": [ + "12.0.2_typescript_5.3.3" + ], + "tsconfig-paths": [ + "3.14.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2", + "0.3.1" + ], + "typescript": [ + "5.3.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "xdg-basedir": [ + "4.0.0" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0", + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__globals__11.12.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "globals", + "version": "11.12.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "globals": [ + "11.12.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-symbol__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-symbol", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "url": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__isarray__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "isarray", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "url": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__es-abstract__1.20.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-abstract", + "version": "1.20.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==", + "url": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_node__20.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/node", + "version": "20.11.6", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/node" + ] + }, + "deps": { + "undici-types": "5.26.5" + }, + "transitive_closure": { + "@types/node": [ + "20.11.6" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_typescript-eslint_typescript-estree__5.44.0__typescript_5.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/typescript-estree", + "version": "5.44.0_typescript_5.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw==", + "url": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__string_decoder__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string_decoder", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "url": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__tsutils__3.21.0__typescript_5.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tsutils", + "version": "3.21.0_typescript_5.3.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "1.14.1", + "typescript": "5.3.3" + }, + "transitive_closure": { + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "typescript": [ + "5.3.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ignore__5.2.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ignore", + "version": "5.2.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "url": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__chokidar__3.5.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "chokidar", + "version": "3.5.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fsevents": "2.3.2", + "anymatch": "3.1.3", + "braces": "3.0.2", + "glob-parent": "5.1.2", + "is-binary-path": "2.1.0", + "is-glob": "4.0.3", + "normalize-path": "3.0.0", + "readdirp": "3.6.0" + }, + "transitive_closure": { + "anymatch": [ + "3.1.3" + ], + "binary-extensions": [ + "2.2.0" + ], + "braces": [ + "3.0.2" + ], + "chokidar": [ + "3.5.3" + ], + "fill-range": [ + "7.0.1" + ], + "fsevents": [ + "2.3.2" + ], + "glob-parent": [ + "5.1.2" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "normalize-path": [ + "3.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "readdirp": [ + "3.6.0" + ], + "to-regex-range": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_serialize__1.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/serialize", + "version": "1.1.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@emotion/hash": "0.9.1", + "@emotion/memoize": "0.8.1", + "@emotion/unitless": "0.8.1", + "@emotion/utils": "1.2.1", + "csstype": "3.1.2" + }, + "transitive_closure": { + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/utils": [ + "1.2.1" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__p-locate__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-locate", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-limit": "2.3.0" + }, + "transitive_closure": { + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "3.0.0" + ], + "p-try": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__minimatch__5.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimatch", + "version": "5.1.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "brace-expansion": "2.0.1" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "minimatch": [ + "5.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array.prototype.flat__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array.prototype.flat", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "url": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__uri-js__4.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "uri-js", + "version": "4.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "url": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__isexe__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "isexe", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "url": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__array.prototype.flatmap__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array.prototype.flatmap", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "url": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__to-fast-properties__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "to-fast-properties", + "version": "2.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__diff-sequences__29.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "diff-sequences", + "version": "29.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "url": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__chalk__4.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "chalk", + "version": "4.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "url": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ts-standard__12.0.2__typescript_5.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ts-standard", + "version": "12.0.2_typescript_5.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "ts-standard" + ] + }, + "integrity": "sha512-XX2wrB9fKKTfBj4yD3ABm9iShzZcS2iWcPK8XzlBvuL20+wMiLgiz/k5tXgZwTaYq5wRhbks1Y9PelhujF/9ag==", + "url": "https://registry.npmjs.org/ts-standard/-/ts-standard-12.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__babel-literal-to-ast__2.1.0__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-literal-to-ast", + "version": "2.1.0_at_babel_core_7.20.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.20.2", + "@babel/parser": "7.23.6", + "@babel/traverse": "7.23.7", + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-literal-to-ast": [ + "2.1.0_at_babel_core_7.20.2" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__minimatch__3.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimatch", + "version": "3.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "url": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__xtend__4.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "xtend", + "version": "4.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "url": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__natural-compare-lite__1.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "natural-compare-lite", + "version": "1.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "url": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__locate-path__7.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "locate-path", + "version": "7.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==", + "url": "https://registry.npmjs.org/locate-path/-/locate-path-7.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__setimmediate__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "setimmediate", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "url": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__import-fresh__3.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "import-fresh", + "version": "3.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "url": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-buffer__1.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-buffer", + "version": "1.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-buffer": [ + "1.1.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_preset-react__7.23.3__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/preset-react", + "version": "7.23.3_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@babel/preset-react" + ] + }, + "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", + "url": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_commons__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sinonjs/commons", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "type-detect": "4.0.8" + }, + "transitive_closure": { + "@sinonjs/commons": [ + "3.0.0" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__immediate__3.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "immediate", + "version": "3.0.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "immediate": [ + "3.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ms__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ms", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "url": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__escape-html__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "escape-html", + "version": "1.0.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escape-html": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__xdg-basedir__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "xdg-basedir", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "url": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-es__4.1.0__eslint_8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-es", + "version": "4.1.0_eslint_8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.52.0", + "eslint-utils": "2.1.0", + "regexpp": "3.2.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-plugin-es": [ + "4.1.0_eslint_8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "2.1.0" + ], + "eslint-visitor-keys": [ + "1.3.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jszip__3.10.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jszip", + "version": "3.10.1", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "jszip" + ] + }, + "deps": { + "lie": "3.3.0", + "pako": "1.0.11", + "readable-stream": "2.3.7", + "setimmediate": "1.0.5" + }, + "transitive_closure": { + "core-util-is": [ + "1.0.3" + ], + "immediate": [ + "3.0.6" + ], + "inherits": [ + "2.0.4" + ], + "isarray": [ + "1.0.0" + ], + "jszip": [ + "3.10.1" + ], + "lie": [ + "3.3.0" + ], + "pako": [ + "1.0.11" + ], + "process-nextick-args": [ + "2.0.1" + ], + "readable-stream": [ + "2.3.7" + ], + "safe-buffer": [ + "5.1.2" + ], + "setimmediate": [ + "1.0.5" + ], + "string_decoder": [ + "1.1.1" + ], + "util-deprecate": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__es-abstract__1.20.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-abstract", + "version": "1.20.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "es-to-primitive": "1.2.1", + "function-bind": "1.1.1", + "function.prototype.name": "1.1.5", + "get-intrinsic": "1.1.3", + "get-symbol-description": "1.0.0", + "has": "1.0.3", + "has-property-descriptors": "1.0.0", + "has-symbols": "1.0.3", + "internal-slot": "1.0.3", + "is-callable": "1.2.7", + "is-negative-zero": "2.0.2", + "is-regex": "1.1.4", + "is-shared-array-buffer": "1.0.2", + "is-string": "1.0.7", + "is-weakref": "1.0.2", + "object-inspect": "1.12.2", + "object-keys": "1.1.1", + "object.assign": "4.1.4", + "regexp.prototype.flags": "1.4.3", + "safe-regex-test": "1.0.0", + "string.prototype.trimend": "1.0.6", + "string.prototype.trimstart": "1.0.6", + "unbox-primitive": "1.0.2" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has", + "version": "1.0.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "function-bind": "1.1.1" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__statuses__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "statuses", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "url": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__file-entry-cache__6.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "file-entry-cache", + "version": "6.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "flat-cache": "3.0.4" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "file-entry-cache": [ + "6.0.1" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "rimraf": [ + "3.0.2" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__redent__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "redent", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "indent-string": "4.0.0", + "strip-indent": "3.0.0" + }, + "transitive_closure": { + "indent-string": [ + "4.0.0" + ], + "min-indent": [ + "1.0.1" + ], + "redent": [ + "3.0.0" + ], + "strip-indent": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__yocto-queue__0.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yocto-queue", + "version": "0.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-parse__1.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-parse", + "version": "1.0.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-parse": [ + "1.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-typed-array__1.1.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-typed-array", + "version": "1.1.10", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "available-typed-arrays": "1.0.5", + "call-bind": "1.0.2", + "for-each": "0.3.3", + "gopd": "1.0.1", + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.10" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__temp__0.9.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "temp", + "version": "0.9.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "mkdirp": "0.5.6", + "rimraf": "2.6.3" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.7" + ], + "mkdirp": [ + "0.5.6" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "rimraf": [ + "2.6.3" + ], + "temp": [ + "0.9.4" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__stylis__4.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "stylis", + "version": "4.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", + "url": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_android-arm64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/android-arm64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", + "url": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__load-json-file__7.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "load-json-file", + "version": "7.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "load-json-file": [ + "7.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__function.prototype.name__1.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "function.prototype.name", + "version": "1.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "url": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__object.hasown__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.hasown", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "define-properties": "1.1.4", + "es-abstract": "1.20.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.hasown": [ + "1.1.2" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-config-standard__17.0.0__978117738__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-config-standard", + "version": "17.0.0_978117738", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.52.0", + "eslint-plugin-import": "2.26.0_-730645774", + "eslint-plugin-n": "15.5.1_eslint_8.52.0", + "eslint-plugin-promise": "6.1.1_eslint_8.52.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json5": [ + "0.0.29" + ], + "@typescript-eslint/parser": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-includes": [ + "3.1.6" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.flat": [ + "1.3.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "builtins": [ + "5.0.1" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "3.2.7", + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "define-properties": [ + "1.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-config-standard": [ + "17.0.0_978117738" + ], + "eslint-import-resolver-node": [ + "0.3.6" + ], + "eslint-module-utils": [ + "2.7.4_-814034063" + ], + "eslint-plugin-es": [ + "4.1.0_eslint_8.52.0" + ], + "eslint-plugin-import": [ + "2.26.0_-730645774" + ], + "eslint-plugin-n": [ + "15.5.1_eslint_8.52.0" + ], + "eslint-plugin-promise": [ + "6.1.1_eslint_8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "2.1.0", + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "1.3.0", + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.11.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number": [ + "7.0.0" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.7" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.values": [ + "1.1.6" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jest-diff__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-diff", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "url": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_core__7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/core", + "version": "7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", + "url": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_darwin-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/darwin-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/darwin-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__safe-buffer__5.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "safe-buffer", + "version": "5.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "url": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_nodelib_fs.stat__2.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@nodelib/fs.stat", + "version": "2.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@nodelib/fs.stat": [ + "2.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jsx-ast-utils__3.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jsx-ast-utils", + "version": "3.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "url": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__es-to-primitive__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-to-primitive", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "url": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fast-levenshtein__2.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fast-levenshtein", + "version": "2.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fast-levenshtein": [ + "2.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jridgewell_gen-mapping__0.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/gen-mapping", + "version": "0.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/set-array": "1.1.2", + "@jridgewell/sourcemap-codec": "1.4.14" + }, + "transitive_closure": { + "@jridgewell/gen-mapping": [ + "0.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fastq__1.13.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fastq", + "version": "1.13.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "url": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__react-dom__18.2.0__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-dom", + "version": "18.2.0_react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "react-dom" + ] + }, + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "url": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__btoa__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "btoa", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", + "url": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__electron-to-chromium__1.4.284": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "electron-to-chromium", + "version": "1.4.284", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", + "url": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__locate-path__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "locate-path", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-locate": "3.0.0", + "path-exists": "3.0.0" + }, + "transitive_closure": { + "locate-path": [ + "3.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "3.0.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__glob-parent__6.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "glob-parent", + "version": "6.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-glob": "4.0.3" + }, + "transitive_closure": { + "glob-parent": [ + "6.0.2" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jake__10.8.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jake", + "version": "10.8.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "url": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__css.escape__1.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "css.escape", + "version": "1.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "url": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jest-get-type__29.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-get-type", + "version": "29.6.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "jest-get-type": [ + "29.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__process-nextick-args__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "process-nextick-args", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "url": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__forwarded__0.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "forwarded", + "version": "0.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "forwarded": [ + "0.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_cache__11.11.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/cache", + "version": "11.11.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@emotion/memoize": "0.8.1", + "@emotion/sheet": "1.2.2", + "@emotion/utils": "1.2.1", + "@emotion/weak-memoize": "0.3.1", + "stylis": "4.2.0" + }, + "transitive_closure": { + "@emotion/cache": [ + "11.11.0" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/sheet": [ + "1.2.2" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@emotion/weak-memoize": [ + "0.3.1" + ], + "stylis": [ + "4.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__pako__1.0.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pako", + "version": "1.0.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "url": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_scheduler__0.16.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/scheduler", + "version": "0.16.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/scheduler": [ + "0.16.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_jest__29.5.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/jest", + "version": "29.5.11", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/jest" + ] + }, + "deps": { + "expect": "29.7.0", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ], + "@types/istanbul-reports": [ + "3.0.4" + ], + "@types/jest": [ + "29.5.11" + ], + "@types/node": [ + "20.11.6" + ], + "@types/stack-utils": [ + "2.0.3" + ], + "@types/yargs": [ + "17.0.32" + ], + "@types/yargs-parser": [ + "21.0.3" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "braces": [ + "3.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.9.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "expect": [ + "29.7.0" + ], + "fill-range": [ + "7.0.1" + ], + "graceful-fs": [ + "4.2.10" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "slash": [ + "3.0.0" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__glob-parent__5.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "glob-parent", + "version": "5.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-glob": "4.0.3" + }, + "transitive_closure": { + "glob-parent": [ + "5.1.2" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__lodash__4.17.21": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lodash", + "version": "4.17.21", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "url": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__shebang-regex__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "shebang-regex", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "shebang-regex": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__inherits__2.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "inherits", + "version": "2.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "inherits": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__picomatch__2.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "picomatch", + "version": "2.3.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "picomatch": [ + "2.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-validator-identifier__7.22.20__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-validator-identifier", + "version": "7.22.20", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/helper-validator-identifier": [ + "7.22.20" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_novnc_novnc__1.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@novnc/novnc", + "version": "1.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@novnc/novnc" + ] + }, + "integrity": "sha512-kW6ALMc5BuH08e/ond/I1naYcfjc19JYMN1EdtmgjjjzPGCjW8fMtVM3MwM6q7YLRjPlQ3orEvoKMgSS7RkEVQ==", + "url": "https://registry.npmjs.org/@novnc/novnc/-/novnc-1.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__aria-query__5.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "aria-query", + "version": "5.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "deep-equal": "2.1.0" + }, + "transitive_closure": { + "aria-query": [ + "5.1.3" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "deep-equal": [ + "2.1.0" + ], + "define-properties": [ + "1.1.4" + ], + "es-get-iterator": [ + "1.1.2" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-arguments": [ + "1.1.1" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-map": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.10" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.2" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "side-channel": [ + "1.0.4" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_wry_context__0.7.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@wry/context", + "version": "0.7.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==", + "url": "https://registry.npmjs.org/@wry/context/-/context-0.7.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__find-up__6.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "find-up", + "version": "6.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "url": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__flatted__3.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "flatted", + "version": "3.2.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "flatted": [ + "3.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__available-typed-arrays__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "available-typed-arrays", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "url": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__caniuse-lite__1.0.30001434": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "caniuse-lite", + "version": "1.0.30001434", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==", + "url": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_istanbul-lib-coverage__2.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/istanbul-lib-coverage", + "version": "2.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "url": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__string.prototype.trimstart__1.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.trimstart", + "version": "1.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__stylis__4.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "stylis", + "version": "4.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "stylis": [ + "4.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__exenv__1.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "exenv", + "version": "1.2.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "exenv": [ + "1.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_ungap_structured-clone__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@ungap/structured-clone", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "url": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mkdirp__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mkdirp", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "url": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__decamelize__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "decamelize", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "url": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_testing-library_jest-dom__6.3.0__at_types_jest_29.5.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@testing-library/jest-dom", + "version": "6.3.0_at_types_jest_29.5.11", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@testing-library/jest-dom" + ] + }, + "integrity": "sha512-hJVIrkFizEQxoWsGBlycTcQhrpoCH4DhXfrnHFFXgkx3Xdm15zycsq5Ep+vpw4W8S0NJa8cxDHcuJib+1tEbhg==", + "url": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__dom-accessibility-api__0.5.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dom-accessibility-api", + "version": "0.5.14", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "dom-accessibility-api": [ + "0.5.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-plain-obj__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-plain-obj", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "url": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_babel-plugin__11.11.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/babel-plugin", + "version": "11.11.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "url": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-plugin-utils__7.22.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-plugin-utils", + "version": "7.22.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "url": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-s390x__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-s390x", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", + "url": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__lodash.merge__4.6.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lodash.merge", + "version": "4.6.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lodash.merge": [ + "4.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__toidentifier__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "toidentifier", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "toidentifier": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__gzip-size__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "gzip-size", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "url": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_floating-ui_react-dom__2.0.8__react-dom_18.2.0__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@floating-ui/react-dom", + "version": "2.0.8_react-dom_18.2.0__react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==", + "url": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__minimatch__5.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimatch", + "version": "5.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "brace-expansion": "2.0.1" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "minimatch": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-is__16.13.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-is", + "version": "16.13.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "react-is": [ + "16.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__filelist__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "filelist", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "url": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mime__1.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mime", + "version": "1.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "url": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_types__5.44.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/types", + "version": "5.44.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@typescript-eslint/types": [ + "5.44.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__object-is__1.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object-is", + "version": "1.1.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__unbox-primitive__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "unbox-primitive", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "has-bigints": "1.0.2", + "has-symbols": "1.0.3", + "which-boxed-primitive": "1.0.2" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__temp__0.9.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "temp", + "version": "0.9.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "url": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_aix-ppc64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/aix-ppc64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", + "url": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__regexpp__3.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regexpp", + "version": "3.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "regexpp": [ + "3.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array-includes__3.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array-includes", + "version": "3.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "url": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__supports-preserve-symlinks-flag__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "supports-preserve-symlinks-flag", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "url": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__deep-is__0.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "deep-is", + "version": "0.1.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "deep-is": [ + "0.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__range-parser__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "range-parser", + "version": "1.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "range-parser": [ + "1.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_styled-engine__5.15.8__602618506": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/styled-engine", + "version": "5.15.8_602618506", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-31ZKPGsS0OiSwuzi8RWoTiWRdUWXPRiOQkyG9bRYX/zvoYeBXEdbsLEgbryug5mVRsPpvwbH5q/i/t6MkjQ71g==", + "url": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.15.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__flatted__3.2.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "flatted", + "version": "3.2.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "url": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_utils__5.44.0__-679725046__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "5.44.0_-679725046", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/json-schema": "7.0.11", + "@types/semver": "7.3.13", + "@typescript-eslint/scope-manager": "5.44.0", + "@typescript-eslint/types": "5.44.0", + "@typescript-eslint/typescript-estree": "5.44.0_typescript_5.3.3", + "eslint": "8.52.0", + "eslint-scope": "5.1.1", + "eslint-utils": "3.0.0_eslint_8.52.0", + "semver": "7.5.4" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json-schema": [ + "7.0.11" + ], + "@types/semver": [ + "7.3.13" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-union": [ + "2.1.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "slash": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__pretty-ms__9.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pretty-ms", + "version": "9.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "pretty-ms" + ] + }, + "integrity": "sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==", + "url": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__concat-map__0.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "concat-map", + "version": "0.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "url": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-arm__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-arm", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-arm": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__emoji-regex__8.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "emoji-regex", + "version": "8.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "emoji-regex": [ + "8.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ts-invariant__0.10.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ts-invariant", + "version": "0.10.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "ts-invariant": [ + "0.10.3" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_jest_types__29.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/types", + "version": "29.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "url": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__depd__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "depd", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "url": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-number__7.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-number", + "version": "7.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-number": [ + "7.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__semver__6.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "semver", + "version": "6.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "url": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_runtime__7.23.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/runtime", + "version": "7.23.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "url": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jridgewell_trace-mapping__0.3.20": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/trace-mapping", + "version": "0.3.20", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "url": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__csstype__3.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "csstype", + "version": "3.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "url": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__strip-indent__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-indent", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "min-indent": "1.0.1" + }, + "transitive_closure": { + "min-indent": [ + "1.0.1" + ], + "strip-indent": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fast-deep-equal__3.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fast-deep-equal", + "version": "3.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fast-deep-equal": [ + "3.1.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__methods__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "methods", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "url": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__text-table__0.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "text-table", + "version": "0.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "url": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-visitor-keys__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-visitor-keys", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "url": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__levn__0.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "levn", + "version": "0.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "url": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-locate__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-locate", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-limit": "4.0.0" + }, + "transitive_closure": { + "p-limit": [ + "4.0.0" + ], + "p-locate": [ + "6.0.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cliui__7.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cliui", + "version": "7.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "url": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__debug__2.6.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "debug", + "version": "2.6.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ms": "2.0.0" + }, + "transitive_closure": { + "debug": [ + "2.6.9" + ], + "ms": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__supports-preserve-symlinks-flag__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "supports-preserve-symlinks-flag", + "version": "1.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "supports-preserve-symlinks-flag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_styled__11.11.0__1048222695": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/styled", + "version": "11.11.0_1048222695", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@emotion/styled" + ] + }, + "integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==", + "url": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-regex__1.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-regex", + "version": "1.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "url": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_object-schema__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@humanwhocodes/object-schema", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "url": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_object-schema__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@humanwhocodes/object-schema", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "url": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_aashutoshrathi_word-wrap__1.2.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@aashutoshrathi/word-wrap", + "version": "1.2.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fast-diff__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fast-diff", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fast-diff": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__glob__7.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "glob", + "version": "7.2.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.4", + "minimatch": "3.1.2", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-exists__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-exists", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "url": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__busboy__1.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "busboy", + "version": "1.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "url": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_novnc_novnc__1.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@novnc/novnc", + "version": "1.4.0", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@novnc/novnc" + ] + }, + "deps": {}, + "transitive_closure": { + "@novnc/novnc": [ + "1.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_node__20.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/node", + "version": "20.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/node" + ] + }, + "integrity": "sha512-+EOokTnksGVgip2PbYbr3xnR7kZigh4LbybAfBAw5BpnQ+FqBYUsvCEjYd70IXKlbohQ64mzEYmMtlWUY8q//Q==", + "url": "https://registry.npmjs.org/@types/node/-/node-20.11.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-string__1.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-string", + "version": "1.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "url": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__cross-spawn__7.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cross-spawn", + "version": "7.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "url": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_freebsd-arm64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/freebsd-arm64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", + "url": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_parser__5.44.0__-679725046": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "5.44.0_-679725046", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-H7LCqbZnKqkkgQHaKLGC6KUjt3pjJDx8ETDqmwncyb6PuoigYajyAwBGz08VU/l86dZWZgI4zm5k2VaKqayYyA==", + "url": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__crypt__0.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "crypt", + "version": "0.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "url": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mime-db__1.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mime-db", + "version": "1.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "url": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__typedarray__0.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typedarray", + "version": "0.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "url": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_istanbul-reports__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/istanbul-reports", + "version": "3.0.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/istanbul-lib-report": "3.0.3" + }, + "transitive_closure": { + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ], + "@types/istanbul-reports": [ + "3.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__safe-regex-test__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "safe-regex-test", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "url": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-react__7.31.11__eslint_8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-react", + "version": "7.31.11_eslint_8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-includes": "3.1.6", + "array.prototype.flatmap": "1.3.1", + "array.prototype.tosorted": "1.1.1", + "doctrine": "2.1.0", + "eslint": "8.52.0", + "estraverse": "5.3.0", + "jsx-ast-utils": "3.3.3", + "minimatch": "3.1.2", + "object.entries": "1.1.6", + "object.fromentries": "2.0.6", + "object.hasown": "1.1.2", + "object.values": "1.1.6", + "prop-types": "15.8.1", + "resolve": "2.0.0-next.4", + "semver": "6.3.1", + "string.prototype.matchall": "4.0.8" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-includes": [ + "3.1.6" + ], + "array.prototype.flatmap": [ + "1.3.1" + ], + "array.prototype.tosorted": [ + "1.1.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "define-properties": [ + "1.1.4" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-plugin-react": [ + "7.31.11_eslint_8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.11.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "isexe": [ + "2.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "jsx-ast-utils": [ + "3.3.3" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "loose-envify": [ + "1.4.0" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.6" + ], + "object.fromentries": [ + "2.0.6" + ], + "object.hasown": [ + "1.1.2" + ], + "object.values": [ + "1.1.6" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "prelude-ls": [ + "1.2.1" + ], + "prop-types": [ + "15.8.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "react-is": [ + "16.13.1" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "resolve": [ + "2.0.0-next.4" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.matchall": [ + "4.0.8" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-shared-array-buffer__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-shared-array-buffer", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "is-shared-array-buffer": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__minimatch__5.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimatch", + "version": "5.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "url": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__synckit__0.8.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "synckit", + "version": "0.8.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "url": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_use-insertion-effect-with-fallbacks__1.0.1__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/use-insertion-effect-with-fallbacks", + "version": "1.0.1_react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "url": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-binary-path__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-binary-path", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "binary-extensions": "2.2.0" + }, + "transitive_closure": { + "binary-extensions": [ + "2.2.0" + ], + "is-binary-path": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__call-bind__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "call-bind", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "url": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__acorn__8.10.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn", + "version": "8.10.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "acorn": [ + "8.10.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__just-extend__6.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "just-extend", + "version": "6.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "just-extend": [ + "6.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__qs__6.11.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "qs", + "version": "6.11.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "url": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_eslint_eslintrc__2.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint/eslintrc", + "version": "2.1.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ajv": "6.12.6", + "debug": "4.3.4_supports-color_8.1.1", + "espree": "9.6.1", + "globals": "13.23.0", + "ignore": "5.2.4", + "import-fresh": "3.3.0", + "js-yaml": "4.1.0", + "minimatch": "3.1.2", + "strip-json-comments": "3.1.1" + }, + "transitive_closure": { + "@eslint/eslintrc": [ + "2.1.4" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "concat-map": [ + "0.0.1" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "globals": [ + "13.23.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "parent-module": [ + "1.0.1" + ], + "punycode": [ + "2.1.1" + ], + "resolve-from": [ + "4.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "8.1.1" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ms__2.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ms", + "version": "2.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ms": [ + "2.1.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__symbol-observable__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "symbol-observable", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", + "url": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__browser-stdout__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "browser-stdout", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "browser-stdout": [ + "1.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__escape-string-regexp__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "escape-string-regexp", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "url": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__color-name__1.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "color-name", + "version": "1.1.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "color-name": [ + "1.1.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__espree__9.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "espree", + "version": "9.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "acorn": "8.10.0", + "acorn-jsx": "5.3.2_acorn_8.10.0", + "eslint-visitor-keys": "3.4.3" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__randombytes__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "randombytes", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "safe-buffer": "5.2.1" + }, + "transitive_closure": { + "randombytes": [ + "2.1.0" + ], + "safe-buffer": [ + "5.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-environment-visitor__7.22.20": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-environment-visitor", + "version": "7.22.20", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "url": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__anymatch__3.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "anymatch", + "version": "3.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "normalize-path": "3.0.0", + "picomatch": "2.3.1" + }, + "transitive_closure": { + "anymatch": [ + "3.1.3" + ], + "normalize-path": [ + "3.0.0" + ], + "picomatch": [ + "2.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_floating-ui_utils__0.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@floating-ui/utils", + "version": "0.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==", + "url": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__babel-plugin-macros__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-macros", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "url": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_visitor-keys__5.44.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/visitor-keys", + "version": "5.44.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "5.44.0", + "eslint-visitor-keys": "3.4.3" + }, + "transitive_closure": { + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "eslint-visitor-keys": [ + "3.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__mime-db__1.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mime-db", + "version": "1.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mime-db": [ + "1.52.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__duplexer__0.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "duplexer", + "version": "0.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "duplexer": [ + "0.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-exists__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-exists", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-exists": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__range-parser__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "range-parser", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "url": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-module-utils__2.7.4__-814034063": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-module-utils", + "version": "2.7.4_-814034063", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "url": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__once__1.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "once", + "version": "1.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "url": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__prop-types__15.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "prop-types", + "version": "15.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "url": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__typescript__5.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typescript", + "version": "5.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "typescript" + ] + }, + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "url": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__crypt__0.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "crypt", + "version": "0.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "crypt": [ + "0.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-plugin-promise__6.1.1__eslint_8.52.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-promise", + "version": "6.1.1_eslint_8.52.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", + "url": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-hoist-variables__7.22.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-hoist-variables", + "version": "7.22.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.6" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_eslint-community_eslint-utils__4.4.0__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint-community/eslint-utils", + "version": "4.4.0_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.57.0", + "eslint-visitor-keys": "3.4.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.57.0" + ], + "@humanwhocodes/config-array": [ + "0.11.14" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.2" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__imurmurhash__0.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "imurmurhash", + "version": "0.1.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "imurmurhash": [ + "0.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_floating-ui_dom__1.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@floating-ui/dom", + "version": "1.6.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@floating-ui/core": "1.6.0", + "@floating-ui/utils": "0.2.1" + }, + "transitive_closure": { + "@floating-ui/core": [ + "1.6.0" + ], + "@floating-ui/dom": [ + "1.6.1" + ], + "@floating-ui/utils": [ + "0.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__browserslist__4.21.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "browserslist", + "version": "4.21.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "url": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-prettier__5.1.3__-1234801097__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-prettier", + "version": "5.1.3_-1234801097", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-plugin-prettier" + ] + }, + "deps": { + "eslint": "8.57.0", + "eslint-config-prettier": "9.1.0_eslint_8.57.0", + "prettier": "3.2.5", + "prettier-linter-helpers": "1.0.0", + "synckit": "0.8.8" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.57.0" + ], + "@humanwhocodes/config-array": [ + "0.11.14" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.2" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@pkgr/core": [ + "0.1.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-config-prettier": [ + "9.1.0_eslint_8.57.0" + ], + "eslint-plugin-prettier": [ + "5.1.3_-1234801097" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-diff": [ + "1.2.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "prettier": [ + "3.2.5" + ], + "prettier-linter-helpers": [ + "1.0.0" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "synckit": [ + "0.8.8" + ], + "text-table": [ + "0.2.0" + ], + "tslib": [ + "2.6.2" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__process-nextick-args__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "process-nextick-args", + "version": "2.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "process-nextick-args": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-transform-react-jsx__7.23.4__at_babel_core_7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-react-jsx", + "version": "7.23.4_at_babel_core_7.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.20.2", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-module-imports": "7.22.15", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-jsx": "7.23.3_at_babel_core_7.20.2", + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.0" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.20.1" + ], + "@babel/core": [ + "7.20.2" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.20.0_at_babel_core_7.20.2" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.20.2" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.20.2" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.20.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.20.2" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.20.2" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.1.1", + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_memoize__0.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/memoize", + "version": "0.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==", + "url": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_mui_private-theming__5.15.8__28312804__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/private-theming", + "version": "5.15.8_28312804", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.9", + "@mui/utils": "5.15.8_28312804", + "@types/react": "18.2.48", + "prop-types": "15.8.1", + "react": "18.2.0" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.9" + ], + "@mui/private-theming": [ + "5.15.8_28312804" + ], + "@mui/utils": [ + "5.15.8_28312804" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "object-assign": [ + "4.1.1" + ], + "prop-types": [ + "15.8.1" + ], + "react": [ + "18.2.0" + ], + "react-is": [ + "16.13.1", + "18.2.0" + ], + "regenerator-runtime": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__convert-source-map__1.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "convert-source-map", + "version": "1.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "url": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__workerpool__6.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "workerpool", + "version": "6.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "url": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mocha__10.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mocha", + "version": "10.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "mocha" + ] + }, + "integrity": "sha512-uF2XJs+7xSLsrmIvn37i/wnc91nw7XjOQB8ccyx5aEgdnohr7n+rEiZP23WkCYHjilR6+EboEnbq/ZQDz4LSbg==", + "url": "https://registry.npmjs.org/mocha/-/mocha-10.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__which-collection__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "which-collection", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-map": "2.0.2", + "is-set": "2.0.2", + "is-weakmap": "2.0.1", + "is-weakset": "2.0.2" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "is-map": [ + "2.0.2" + ], + "is-set": [ + "2.0.2" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "which-collection": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__callsites__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "callsites", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "url": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__mkdirp__0.5.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mkdirp", + "version": "0.5.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "minimist": "1.2.7" + }, + "transitive_closure": { + "minimist": [ + "1.2.7" + ], + "mkdirp": [ + "0.5.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_weak-memoize__0.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/weak-memoize", + "version": "0.3.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@emotion/weak-memoize": [ + "0.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_jest__29.5.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/jest", + "version": "29.5.11", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/jest" + ] + }, + "integrity": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==", + "url": "https://registry.npmjs.org/@types/jest/-/jest-29.5.11.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__has__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "url": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_nodelib_fs.walk__1.2.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@nodelib/fs.walk", + "version": "1.2.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "1.13.0" + }, + "transitive_closure": { + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "fastq": [ + "1.13.0" + ], + "queue-microtask": [ + "1.2.3" + ], + "reusify": [ + "1.0.4" + ], + "run-parallel": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__brace-expansion__1.1.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "brace-expansion", + "version": "1.1.11", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "balanced-match": "1.0.2", + "concat-map": "0.0.1" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cliui__7.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cliui", + "version": "7.0.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "string-width": "4.2.3", + "strip-ansi": "6.0.1", + "wrap-ansi": "7.0.0" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "cliui": [ + "7.0.4" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "emoji-regex": [ + "8.0.0" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ], + "wrap-ansi": [ + "7.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-boolean-object__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-boolean-object", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "url": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__finalhandler__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "finalhandler", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "url": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jsx-ast-utils__3.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jsx-ast-utils", + "version": "3.3.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-includes": "3.1.6", + "object.assign": "4.1.4" + }, + "transitive_closure": { + "array-includes": [ + "3.1.6" + ], + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "jsx-ast-utils": [ + "3.3.3" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__resolve__2.0.0-next.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve", + "version": "2.0.0-next.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "url": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__json-parse-better-errors__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json-parse-better-errors", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "url": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fast-glob__3.2.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fast-glob", + "version": "3.2.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@nodelib/fs.stat": "2.0.5", + "@nodelib/fs.walk": "1.2.8", + "glob-parent": "5.1.2", + "merge2": "1.4.1", + "micromatch": "4.0.5" + }, + "transitive_closure": { + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "braces": [ + "3.0.2" + ], + "fast-glob": [ + "3.2.12" + ], + "fastq": [ + "1.13.0" + ], + "fill-range": [ + "7.0.1" + ], + "glob-parent": [ + "5.1.2" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "picomatch": [ + "2.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "reusify": [ + "1.0.4" + ], + "run-parallel": [ + "1.2.0" + ], + "to-regex-range": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__function-bind__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "function-bind", + "version": "1.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-arm64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-arm64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", + "url": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__es-shim-unscopables__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-shim-unscopables", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has": "1.0.3" + }, + "transitive_closure": { + "es-shim-unscopables": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-syntax-jsx__7.23.3__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-jsx", + "version": "7.23.3_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jszip__3.10.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jszip", + "version": "3.10.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "jszip" + ] + }, + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "url": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_wry_trie__0.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@wry/trie", + "version": "0.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==", + "url": "https://registry.npmjs.org/@wry/trie/-/trie-0.5.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__negotiator__0.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "negotiator", + "version": "0.6.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "negotiator": [ + "0.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__react-is__18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-is", + "version": "18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "url": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-locate__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-locate", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-limit": "3.1.0" + }, + "transitive_closure": { + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_types__7.2.13__at_types_react_18.2.48__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@mui/types", + "version": "7.2.13_at_types_react_18.2.48", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/react": "18.2.48" + }, + "transitive_closure": { + "@mui/types": [ + "7.2.13_at_types_react_18.2.48" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__estraverse__4.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "estraverse", + "version": "4.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "estraverse": [ + "4.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-compilation-targets__7.20.0__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-compilation-targets", + "version": "7.20.0_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", + "url": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__escape-string-regexp__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "escape-string-regexp", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "url": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__unpipe__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "unpipe", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "unpipe": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__append-field__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "append-field", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==", + "url": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__graphql-tag__2.12.6__graphql_16.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "graphql-tag", + "version": "2.12.6_graphql_16.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "url": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__streamsearch__1.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "streamsearch", + "version": "1.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "streamsearch": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__type-detect__4.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "type-detect", + "version": "4.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "url": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jest-diff__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-diff", + "version": "29.7.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "chalk": "4.1.2", + "diff-sequences": "29.6.3", + "jest-get-type": "29.6.3", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "ansi-styles": [ + "4.3.0", + "5.2.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "has-flag": [ + "4.0.0" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_testing-library_dom__9.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@testing-library/dom", + "version": "9.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Dffe68pGwI6WlLRYR2I0piIkyole9cSBH5jGQKCGMRpHW5RHCqAUaqc2Kv0tUyd4dU4DLPKhJIjyKOnjv4tuUw==", + "url": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__gopd__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "gopd", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-intrinsic": "1.1.3" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__clsx__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "clsx", + "version": "2.1.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "clsx": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__queue-microtask__1.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "queue-microtask", + "version": "1.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "url": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_parser__5.44.0__-679725046__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "5.44.0_-679725046", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/scope-manager": "5.44.0", + "@typescript-eslint/types": "5.44.0", + "@typescript-eslint/typescript-estree": "5.44.0_typescript_5.3.3", + "debug": "4.3.4_supports-color_8.1.1", + "eslint": "8.52.0", + "typescript": "5.3.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@typescript-eslint/parser": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-union": [ + "2.1.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "slash": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_utils__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/utils", + "version": "1.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@emotion/utils": [ + "1.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_helper-hoist-variables__7.22.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-hoist-variables", + "version": "7.22.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "url": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__chalk__2.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "chalk", + "version": "2.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "url": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_template__7.22.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/template", + "version": "7.22.15", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "@babel/parser": "7.23.6", + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/types": [ + "7.23.6" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__debug__2.6.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "debug", + "version": "2.6.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "url": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__symbol-observable__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "symbol-observable", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "symbol-observable": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__browserslist__4.21.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "browserslist", + "version": "4.21.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "caniuse-lite": "1.0.30001434", + "electron-to-chromium": "1.4.284", + "node-releases": "2.0.6", + "update-browserslist-db": "1.0.10_browserslist_4.21.4" + }, + "transitive_closure": { + "browserslist": [ + "4.21.4" + ], + "caniuse-lite": [ + "1.0.30001434" + ], + "electron-to-chromium": [ + "1.4.284" + ], + "escalade": [ + "3.1.1" + ], + "node-releases": [ + "2.0.6" + ], + "picocolors": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.10_browserslist_4.21.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__resolve__1.22.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve", + "version": "1.22.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "is-core-module": "2.11.0", + "path-parse": "1.0.7", + "supports-preserve-symlinks-flag": "1.0.0" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.11.0" + ], + "path-parse": [ + "1.0.7" + ], + "resolve": [ + "1.22.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__graphql.macro__1.4.2__2109932580": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "graphql.macro", + "version": "1.4.2_2109932580", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "graphql.macro" + ] + }, + "integrity": "sha512-vcIaStPgS65gp5i1M3DSBimNVkyus0Z7k4VObWAyZS319tKlpX/TEIJSWTgOZU5k8dn4RRzGoS/elQhX2E6yBw==", + "url": "https://registry.npmjs.org/graphql.macro/-/graphql.macro-1.4.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-plugin-utils__7.22.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-plugin-utils", + "version": "7.22.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/helper-plugin-utils": [ + "7.22.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-unicode-supported__0.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-unicode-supported", + "version": "0.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-unicode-supported": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has-property-descriptors__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has-property-descriptors", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "url": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-config-prettier__9.1.0__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-config-prettier", + "version": "9.1.0_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "eslint-config-prettier" + ] + }, + "deps": { + "eslint": "8.57.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.57.0" + ], + "@humanwhocodes/config-array": [ + "0.11.14" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.2" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-config-prettier": [ + "9.1.0_eslint_8.57.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__eslint-visitor-keys__3.4.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-visitor-keys", + "version": "3.4.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "url": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__dom-accessibility-api__0.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dom-accessibility-api", + "version": "0.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "url": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__path-exists__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-exists", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-exists": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__methods__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "methods", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "methods": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-transform-react-jsx-development__7.22.5__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-react-jsx-development", + "version": "7.22.5_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-scope__5.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-scope", + "version": "5.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "esrecurse": "4.3.0", + "estraverse": "4.3.0" + }, + "transitive_closure": { + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__json-schema-traverse__0.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json-schema-traverse", + "version": "0.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "url": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__pify__4.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pify", + "version": "4.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pify": [ + "4.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__escalade__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "escalade", + "version": "3.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escalade": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__js-yaml__4.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "js-yaml", + "version": "4.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "url": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-module-transforms__7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-module-transforms", + "version": "7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", + "url": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-module-imports__7.22.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-module-imports", + "version": "7.22.15", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.6" + }, + "transitive_closure": { + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.6" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__hoist-non-react-statics__3.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "hoist-non-react-statics", + "version": "3.3.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "react-is": "16.13.1" + }, + "transitive_closure": { + "hoist-non-react-statics": [ + "3.3.2" + ], + "react-is": [ + "16.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ipaddr.js__1.9.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ipaddr.js", + "version": "1.9.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ipaddr.js": [ + "1.9.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_testing-library_react__14.1.2__react-dom_18.2.0__react_18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@testing-library/react", + "version": "14.1.2_react-dom_18.2.0__react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@testing-library/react" + ] + }, + "integrity": "sha512-z4p7DVBTPjKM5qDZ0t5ZjzkpSNb+fZy1u6bzO7kk8oeGagpPCAtgh4cx1syrfp7a+QWkM021jGqjJaxJJnXAZg==", + "url": "https://registry.npmjs.org/@testing-library/react/-/react-14.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_nodelib_fs.stat__2.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@nodelib/fs.stat", + "version": "2.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "url": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_android-arm64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/android-arm64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/android-arm64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ajv__6.12.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ajv", + "version": "6.12.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "url": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-es__3.0.1__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-es", + "version": "3.0.1_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.57.0", + "eslint-utils": "2.1.0", + "regexpp": "3.2.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.57.0" + ], + "@humanwhocodes/config-array": [ + "0.11.14" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.2" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-es": [ + "3.0.1_eslint_8.57.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "2.1.0" + ], + "eslint-visitor-keys": [ + "1.3.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__redent__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "redent", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "url": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__serve-static__1.15.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "serve-static", + "version": "1.15.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "parseurl": "1.3.3", + "send": "0.18.0" + }, + "transitive_closure": { + "debug": [ + "2.6.9" + ], + "depd": [ + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "ee-first": [ + "1.1.1" + ], + "encodeurl": [ + "1.0.2" + ], + "escape-html": [ + "1.0.3" + ], + "etag": [ + "1.8.1" + ], + "fresh": [ + "0.5.2" + ], + "http-errors": [ + "2.0.0" + ], + "inherits": [ + "2.0.4" + ], + "mime": [ + "1.6.0" + ], + "ms": [ + "2.0.0", + "2.1.3" + ], + "on-finished": [ + "2.4.1" + ], + "parseurl": [ + "1.3.3" + ], + "range-parser": [ + "1.2.1" + ], + "send": [ + "0.18.0" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.2.0" + ], + "statuses": [ + "2.0.1" + ], + "toidentifier": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_mui_base__5.0.0-beta.34__-810481204": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/base", + "version": "5.0.0-beta.34_-810481204", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-e2mbTGTtReD/y5RFwnhkl1Tgl3XwgJhY040IlfkTVaU9f5LWrVhEnpRsYXu3B1CtLrwiWs4cu7aMHV9yRd4jpw==", + "url": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.34.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_mui_types__7.2.13__at_types_react_18.2.48": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@mui/types", + "version": "7.2.13_at_types_react_18.2.48", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qP9OgacN62s+l8rdDhSFRe05HWtLLJ5TGclC9I1+tQngbssu0m2dmFZs+Px53AcOs9fD7TbYd4gc9AXzVqO/+g==", + "url": "https://registry.npmjs.org/@mui/types/-/types-7.2.13.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__serve-index__1.9.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "serve-index", + "version": "1.9.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "serve-index" + ] + }, + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "url": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_darwin-arm64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/darwin-arm64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", + "url": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__semver__6.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "semver", + "version": "6.3.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "semver": [ + "6.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_styled__11.11.0__1048222695__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/styled", + "version": "11.11.0_1048222695", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@emotion/styled" + ] + }, + "deps": { + "@babel/runtime": "7.23.9", + "@emotion/babel-plugin": "11.11.0", + "@emotion/is-prop-valid": "1.2.1", + "@emotion/react": "11.11.3_28312804", + "@emotion/serialize": "1.1.3", + "@emotion/use-insertion-effect-with-fallbacks": "1.0.1_react_18.2.0", + "@emotion/utils": "1.2.1", + "@types/react": "18.2.48", + "react": "18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/types": [ + "7.23.6" + ], + "@emotion/babel-plugin": [ + "11.11.0" + ], + "@emotion/cache": [ + "11.11.0" + ], + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/is-prop-valid": [ + "1.2.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/react": [ + "11.11.3_28312804" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/sheet": [ + "1.2.2" + ], + "@emotion/styled": [ + "11.11.0_1048222695" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/use-insertion-effect-with-fallbacks": [ + "1.0.1_react_18.2.0" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@emotion/weak-memoize": [ + "0.3.1" + ], + "@types/parse-json": [ + "4.0.0" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "csstype": [ + "3.1.2" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "find-root": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "hoist-non-react-statics": [ + "3.3.2" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "loose-envify": [ + "1.4.0" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "react": [ + "18.2.0" + ], + "react-is": [ + "16.13.1" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "source-map": [ + "0.5.7" + ], + "stylis": [ + "4.2.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-ia32__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-ia32", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-ia32": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__dir-glob__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dir-glob", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "path-type": "4.0.0" + }, + "transitive_closure": { + "dir-glob": [ + "3.0.1" + ], + "path-type": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_wry_trie__0.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@wry/trie", + "version": "0.5.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "@wry/trie": [ + "0.5.0" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_android-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/android-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/android-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array-union__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array-union", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "url": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__iconv-lite__0.4.24": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "iconv-lite", + "version": "0.4.24", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "url": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-s390x__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-s390x", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-s390x": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__prelude-ls__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "prelude-ls", + "version": "1.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "prelude-ls": [ + "1.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__log-symbols__4.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "log-symbols", + "version": "4.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "chalk": "4.1.2", + "is-unicode-supported": "0.1.0" + }, + "transitive_closure": { + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "has-flag": [ + "4.0.0" + ], + "is-unicode-supported": [ + "0.1.0" + ], + "log-symbols": [ + "4.1.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_floating-ui_react-dom__2.0.8__react-dom_18.2.0__react_18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@floating-ui/react-dom", + "version": "2.0.8_react-dom_18.2.0__react_18.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@floating-ui/dom": "1.6.1", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0" + }, + "transitive_closure": { + "@floating-ui/core": [ + "1.6.0" + ], + "@floating-ui/dom": [ + "1.6.1" + ], + "@floating-ui/react-dom": [ + "2.0.8_react-dom_18.2.0__react_18.2.0" + ], + "@floating-ui/utils": [ + "0.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "loose-envify": [ + "1.4.0" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "scheduler": [ + "0.23.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-glob__4.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-glob", + "version": "4.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "url": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_sinonjs_text-encoding__0.7.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sinonjs/text-encoding", + "version": "0.7.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==", + "url": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_traverse__7.23.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/traverse", + "version": "7.23.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "@babel/generator": "7.23.6", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-function-name": "7.23.0", + "@babel/helper-hoist-variables": "7.22.5", + "@babel/helper-split-export-declaration": "7.22.6", + "@babel/parser": "7.23.6", + "@babel/types": "7.23.6", + "debug": "4.3.4_supports-color_8.1.1", + "globals": "11.12.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.6" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-split-export-declaration": [ + "7.22.6" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.6" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.7" + ], + "@babel/types": [ + "7.23.6" + ], + "@jridgewell/gen-mapping": [ + "0.3.2" + ], + "@jridgewell/resolve-uri": [ + "3.1.0" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.14" + ], + "@jridgewell/trace-mapping": [ + "0.3.20" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "5.5.0", + "8.1.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__acorn-jsx__5.3.2__acorn_8.10.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn-jsx", + "version": "5.3.2_acorn_8.10.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "url": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_config-array__0.11.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@humanwhocodes/config-array", + "version": "0.11.14", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@humanwhocodes/object-schema": "2.0.2", + "debug": "4.3.4_supports-color_8.1.1", + "minimatch": "3.1.2" + }, + "transitive_closure": { + "@humanwhocodes/config-array": [ + "0.11.14" + ], + "@humanwhocodes/object-schema": [ + "2.0.2" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "has-flag": [ + "4.0.0" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "8.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__diff__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "diff", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "url": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ignore__5.2.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ignore", + "version": "5.2.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ignore": [ + "5.2.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__array.prototype.tosorted__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array.prototype.tosorted", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4", + "es-shim-unscopables": "1.0.0", + "get-intrinsic": "1.1.3" + }, + "transitive_closure": { + "array.prototype.tosorted": [ + "1.1.1" + ], + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fill-range__7.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fill-range", + "version": "7.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "url": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jest-util__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-util", + "version": "29.7.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "29.6.3", + "@types/node": "20.11.6", + "chalk": "4.1.2", + "ci-info": "3.9.0", + "graceful-fs": "4.2.10", + "picomatch": "2.3.1" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ], + "@types/istanbul-reports": [ + "3.0.4" + ], + "@types/node": [ + "20.11.6" + ], + "@types/yargs": [ + "17.0.32" + ], + "@types/yargs-parser": [ + "21.0.3" + ], + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.9.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "graceful-fs": [ + "4.2.10" + ], + "has-flag": [ + "4.0.0" + ], + "jest-util": [ + "29.7.0" + ], + "picomatch": [ + "2.3.1" + ], + "supports-color": [ + "7.2.0" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_eslint-community_eslint-utils__4.4.0__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint-community/eslint-utils", + "version": "4.4.0_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "url": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-simple-access__7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-simple-access", + "version": "7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "url": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_types_prop-types__15.7.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/prop-types", + "version": "15.7.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", + "url": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__error-ex__1.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "error-ex", + "version": "1.3.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "is-arrayish": "0.2.1" + }, + "transitive_closure": { + "error-ex": [ + "1.3.2" + ], + "is-arrayish": [ + "0.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-path-inside__3.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-path-inside", + "version": "3.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "url": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__natural-compare__1.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "natural-compare", + "version": "1.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "url": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__normalize-path__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "normalize-path", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "normalize-path": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_typescript-eslint_type-utils__5.44.0__-679725046": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/type-utils", + "version": "5.44.0_-679725046", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-A1u0Yo5wZxkXPQ7/noGkRhV4J9opcymcr31XQtOzcc5nO/IHN2E2TPMECKWYpM3e6olWEM63fq/BaL1wEYnt/w==", + "url": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__function-bind__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "function-bind", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "url": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-weakset__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-weakset", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "url": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__has-property-descriptors__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has-property-descriptors", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-intrinsic": "1.1.3" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__resolve__1.22.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve", + "version": "1.22.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "url": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jest-message-util__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-message-util", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "url": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-module-imports__7.22.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-module-imports", + "version": "7.22.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "url": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__debug__3.2.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "debug", + "version": "3.2.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "url": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__negotiator__0.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "negotiator", + "version": "0.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "url": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-locate__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-locate", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "url": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__path-parse__1.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-parse", + "version": "1.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "url": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__supports-color__5.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "supports-color", + "version": "5.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "url": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__locate-path__7.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "locate-path", + "version": "7.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-locate": "6.0.0" + }, + "transitive_closure": { + "locate-path": [ + "7.1.1" + ], + "p-limit": [ + "4.0.0" + ], + "p-locate": [ + "6.0.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fill-range__7.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fill-range", + "version": "7.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "to-regex-range": "5.0.1" + }, + "transitive_closure": { + "fill-range": [ + "7.0.1" + ], + "is-number": [ + "7.0.0" + ], + "to-regex-range": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-arrayish__0.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-arrayish", + "version": "0.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "url": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__supports-color__7.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "supports-color", + "version": "7.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "has-flag": "4.0.0" + }, + "transitive_closure": { + "has-flag": [ + "4.0.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__nise__5.1.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "nise", + "version": "5.1.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@sinonjs/commons": "3.0.0", + "@sinonjs/fake-timers": "11.2.2", + "@sinonjs/text-encoding": "0.7.2", + "just-extend": "6.2.0", + "path-to-regexp": "6.2.1" + }, + "transitive_closure": { + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "11.2.2" + ], + "@sinonjs/text-encoding": [ + "0.7.2" + ], + "just-extend": [ + "6.2.0" + ], + "nise": [ + "5.1.7" + ], + "path-to-regexp": [ + "6.2.1" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__lodash.get__4.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lodash.get", + "version": "4.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "url": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__sinon__17.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sinon", + "version": "17.0.1", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "sinon" + ] + }, + "deps": { + "@sinonjs/commons": "3.0.0", + "@sinonjs/fake-timers": "11.2.2", + "@sinonjs/samsam": "8.0.0", + "diff": "5.1.0", + "nise": "5.1.7", + "supports-color": "7.2.0" + }, + "transitive_closure": { + "@sinonjs/commons": [ + "2.0.0", + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "11.2.2" + ], + "@sinonjs/samsam": [ + "8.0.0" + ], + "@sinonjs/text-encoding": [ + "0.7.2" + ], + "diff": [ + "5.1.0" + ], + "has-flag": [ + "4.0.0" + ], + "just-extend": [ + "6.2.0" + ], + "lodash.get": [ + "4.4.2" + ], + "nise": [ + "5.1.7" + ], + "path-to-regexp": [ + "6.2.1" + ], + "sinon": [ + "17.0.1" + ], + "supports-color": [ + "7.2.0" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_emotion_hash__0.9.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/hash", + "version": "0.9.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==", + "url": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__micromatch__4.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "micromatch", + "version": "4.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "braces": "3.0.2", + "picomatch": "2.3.1" + }, + "transitive_closure": { + "braces": [ + "3.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "is-number": [ + "7.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "picomatch": [ + "2.3.1" + ], + "to-regex-range": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__has-flag__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has-flag", + "version": "4.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "has-flag": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__send__0.18.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "send", + "version": "0.18.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "url": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__indent-string__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "indent-string", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "url": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_aix-ppc64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/aix-ppc64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/aix-ppc64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__graceful-fs__4.2.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "graceful-fs", + "version": "4.2.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "url": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__punycode__2.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "punycode", + "version": "2.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "punycode": [ + "2.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__safe-regex-test__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "safe-regex-test", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.1.3", + "is-regex": "1.1.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-regex": [ + "1.1.4" + ], + "safe-regex-test": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__shebang-regex__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "shebang-regex", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "url": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__path-browserify__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-browserify", + "version": "1.0.1", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "path-browserify" + ] + }, + "deps": {}, + "transitive_closure": { + "path-browserify": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__setprototypeof__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "setprototypeof", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "url": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__array.prototype.flat__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array.prototype.flat", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.1.4", + "es-abstract": "1.20.4", + "es-shim-unscopables": "1.0.0" + }, + "transitive_closure": { + "array.prototype.flat": [ + "1.3.1" + ], + "call-bind": [ + "1.0.2" + ], + "define-properties": [ + "1.1.4" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "safe-regex-test": [ + "1.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__glob-parent__5.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "glob-parent", + "version": "5.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "url": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_sunos-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/sunos-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/sunos-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ejs__3.1.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ejs", + "version": "3.1.8", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "jake": "10.8.5" + }, + "transitive_closure": { + "ansi-styles": [ + "4.3.0" + ], + "async": [ + "3.2.4" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11", + "2.0.1" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "ejs": [ + "3.1.8" + ], + "filelist": [ + "1.0.4" + ], + "has-flag": [ + "4.0.0" + ], + "jake": [ + "10.8.5" + ], + "minimatch": [ + "3.1.2", + "5.1.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__http-errors__1.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-errors", + "version": "1.6.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "depd": "1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": "1.5.0" + }, + "transitive_closure": { + "depd": [ + "1.1.2" + ], + "http-errors": [ + "1.6.3" + ], + "inherits": [ + "2.0.3" + ], + "setprototypeof": [ + "1.1.0" + ], + "statuses": [ + "1.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__wrappy__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "wrappy", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "url": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__which__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "which", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "url": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__has-tostringtag__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has-tostringtag", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "url": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_linux-loong64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-loong64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-loong64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-is-absolute__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-is-absolute", + "version": "1.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-is-absolute": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__proxy-addr__2.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "proxy-addr", + "version": "2.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "transitive_closure": { + "forwarded": [ + "0.2.0" + ], + "ipaddr.js": [ + "1.9.1" + ], + "proxy-addr": [ + "2.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_plugin-transform-react-jsx__7.23.4__at_babel_core_7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-react-jsx", + "version": "7.23.4_at_babel_core_7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__flat-cache__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "flat-cache", + "version": "3.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "flatted": "3.2.7", + "rimraf": "3.0.2" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "rimraf": [ + "3.0.2" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__doctrine__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "doctrine", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "esutils": "2.0.3" + }, + "transitive_closure": { + "doctrine": [ + "2.1.0" + ], + "esutils": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_react-transition-group__4.4.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react-transition-group", + "version": "4.4.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", + "url": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-try__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-try", + "version": "2.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "p-try": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__find-up__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "find-up", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "url": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__find-up__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "find-up", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "locate-path": "3.0.0" + }, + "transitive_closure": { + "find-up": [ + "3.0.0" + ], + "locate-path": [ + "3.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "3.0.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_openbsd-x64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/openbsd-x64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", + "url": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__normalize-path__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "normalize-path", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "url": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__strip-bom__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-bom", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "url": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jest-message-util__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-message-util", + "version": "29.7.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "@jest/types": "29.6.3", + "@types/stack-utils": "2.0.3", + "chalk": "4.1.2", + "graceful-fs": "4.2.10", + "micromatch": "4.0.5", + "pretty-format": "29.7.0", + "slash": "3.0.0", + "stack-utils": "2.0.6" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ], + "@types/istanbul-reports": [ + "3.0.4" + ], + "@types/node": [ + "20.11.6" + ], + "@types/stack-utils": [ + "2.0.3" + ], + "@types/yargs": [ + "17.0.32" + ], + "@types/yargs-parser": [ + "21.0.3" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "braces": [ + "3.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "fill-range": [ + "7.0.1" + ], + "graceful-fs": [ + "4.2.10" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "slash": [ + "3.0.0" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__chalk__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "chalk", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ansi-styles": "4.3.0", + "supports-color": "7.2.0" + }, + "transitive_closure": { + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "3.0.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "has-flag": [ + "4.0.0" + ], + "supports-color": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-negative-zero__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-negative-zero", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "url": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__unpipe__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "unpipe", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "url": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__gzip-size__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "gzip-size", + "version": "6.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "duplexer": "0.1.2" + }, + "transitive_closure": { + "duplexer": [ + "0.1.2" + ], + "gzip-size": [ + "6.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__object.fromentries__2.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.fromentries", + "version": "2.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "url": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__reusify__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "reusify", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "reusify": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cookie-signature__1.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cookie-signature", + "version": "1.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cookie-signature": [ + "1.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__dom-accessibility-api__0.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dom-accessibility-api", + "version": "0.6.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "dom-accessibility-api": [ + "0.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__hoist-non-react-statics__3.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "hoist-non-react-statics", + "version": "3.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "url": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__min-indent__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "min-indent", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "min-indent": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__browser-stdout__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "browser-stdout", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "url": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__tsconfig-paths__3.14.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tsconfig-paths", + "version": "3.14.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "url": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__charenc__0.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "charenc", + "version": "0.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "charenc": [ + "0.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-exists__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-exists", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "url": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jest-util__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-util", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "url": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-weakref__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-weakref", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "url": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__inherits__2.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "inherits", + "version": "2.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "url": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__inherits__2.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "inherits", + "version": "2.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "url": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__slash__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "slash", + "version": "3.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "slash": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__type-fest__0.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "type-fest", + "version": "0.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "url": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_wry_equality__0.5.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@wry/equality", + "version": "0.5.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-D46sfMTngaYlrH+OspKf8mIJETntFnf6Hsjb0V41jAXJ7Bx2kB8Rv8RCUujuVWYttFtHkUNp7g+FwxNQAr6mXA==", + "url": "https://registry.npmjs.org/@wry/equality/-/equality-0.5.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__append-field__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "append-field", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "append-field": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__js-yaml__4.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "js-yaml", + "version": "4.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "argparse": "2.0.1" + }, + "transitive_closure": { + "argparse": [ + "2.0.1" + ], + "js-yaml": [ + "4.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_semver__7.3.13": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/semver", + "version": "7.3.13", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "url": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__esquery__1.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esquery", + "version": "1.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "estraverse": "5.3.0" + }, + "transitive_closure": { + "esquery": [ + "1.5.0" + ], + "estraverse": [ + "5.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__strip-json-comments__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-json-comments", + "version": "3.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "strip-json-comments": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__globals__11.12.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "globals", + "version": "11.12.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "url": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_cache__11.11.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@emotion/cache", + "version": "11.11.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "url": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ejs__3.1.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ejs", + "version": "3.1.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "url": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_esbuild_freebsd-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/freebsd-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/freebsd-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__get-intrinsic__1.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-intrinsic", + "version": "1.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "function-bind": "1.1.1", + "has": "1.0.3", + "has-symbols": "1.0.3" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-weakmap__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-weakmap", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "url": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__string-width__4.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string-width", + "version": "4.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "url": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_jest_expect-utils__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/expect-utils", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "url": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__raw-body__2.5.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "raw-body", + "version": "2.5.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "url": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__fresh__0.5.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fresh", + "version": "0.5.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "url": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__lodash__4.17.21__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lodash", + "version": "4.17.21", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lodash": [ + "4.17.21" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__fast-levenshtein__2.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fast-levenshtein", + "version": "2.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "url": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__btoa__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "btoa", + "version": "1.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "btoa": [ + "1.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__buffer-from__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "buffer-from", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "buffer-from": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_linux-ppc64__0.19.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-ppc64", + "version": "0.19.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", + "url": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [ + "preinstall", + "install", + "postinstall" + ], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__parse-ms__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "parse-ms", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "url": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-utils__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-utils", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint-visitor-keys": "1.3.0" + }, + "transitive_closure": { + "eslint-utils": [ + "2.1.0" + ], + "eslint-visitor-keys": [ + "1.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_types_react__18.2.48": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react", + "version": "18.2.48", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@types/react" + ] + }, + "integrity": "sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==", + "url": "https://registry.npmjs.org/@types/react/-/react-18.2.48.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__stack-utils__2.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "stack-utils", + "version": "2.0.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "escape-string-regexp": "2.0.0" + }, + "transitive_closure": { + "escape-string-regexp": [ + "2.0.0" + ], + "stack-utils": [ + "2.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__picocolors__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "picocolors", + "version": "1.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "picocolors": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_testing-library_user-event__14.5.2__at_testing-library_dom_9.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@testing-library/user-event", + "version": "14.5.2_at_testing-library_dom_9.3.0", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@testing-library/user-event" + ] + }, + "deps": { + "@testing-library/dom": "9.3.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@testing-library/dom": [ + "9.3.0" + ], + "@testing-library/user-event": [ + "14.5.2_at_testing-library_dom_9.3.0" + ], + "@types/aria-query": [ + "5.0.1" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "aria-query": [ + "5.1.3" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "deep-equal": [ + "2.1.0" + ], + "define-properties": [ + "1.1.4" + ], + "dom-accessibility-api": [ + "0.5.14" + ], + "es-get-iterator": [ + "1.1.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-arguments": [ + "1.1.1" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-map": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.10" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "js-tokens": [ + "4.0.0" + ], + "lz-string": [ + "1.5.0" + ], + "object-inspect": [ + "1.12.2" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "pretty-format": [ + "27.5.1" + ], + "react-is": [ + "17.0.2" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "side-channel": [ + "1.0.4" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_esbuild_netbsd-x64__0.19.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/netbsd-x64", + "version": "0.19.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/netbsd-x64": [ + "0.19.12" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_babel_types__7.23.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/types", + "version": "7.23.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "url": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__error-ex__1.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "error-ex", + "version": "1.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "url": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__tslib__1.14.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tslib", + "version": "1.14.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tslib": [ + "1.14.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__loose-envify__1.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "loose-envify", + "version": "1.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "url": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_nodelib_fs.walk__1.2.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@nodelib/fs.walk", + "version": "1.2.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "url": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_react__11.11.3__28312804__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/react", + "version": "11.11.3_28312804", + "dev": false, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@emotion/react" + ] + }, + "deps": { + "@babel/runtime": "7.23.9", + "@emotion/babel-plugin": "11.11.0", + "@emotion/cache": "11.11.0", + "@emotion/serialize": "1.1.3", + "@emotion/use-insertion-effect-with-fallbacks": "1.0.1_react_18.2.0", + "@emotion/utils": "1.2.1", + "@emotion/weak-memoize": "0.3.1", + "@types/react": "18.2.48", + "hoist-non-react-statics": "3.3.2", + "react": "18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/types": [ + "7.23.6" + ], + "@emotion/babel-plugin": [ + "11.11.0" + ], + "@emotion/cache": [ + "11.11.0" + ], + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/react": [ + "11.11.3_28312804" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/sheet": [ + "1.2.2" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/use-insertion-effect-with-fallbacks": [ + "1.0.1_react_18.2.0" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@emotion/weak-memoize": [ + "0.3.1" + ], + "@types/parse-json": [ + "4.0.0" + ], + "@types/prop-types": [ + "15.7.11" + ], + "@types/react": [ + "18.2.48" + ], + "@types/scheduler": [ + "0.16.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "csstype": [ + "3.1.2" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "find-root": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "hoist-non-react-statics": [ + "3.3.2" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "loose-envify": [ + "1.4.0" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "react": [ + "18.2.0" + ], + "react-is": [ + "16.13.1" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "source-map": [ + "0.5.7" + ], + "stylis": [ + "4.2.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_testing-library_jest-dom__6.3.0__at_types_jest_29.5.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@testing-library/jest-dom", + "version": "6.3.0_at_types_jest_29.5.11", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/grid-ui": [ + "@testing-library/jest-dom" + ] + }, + "deps": { + "@adobe/css-tools": "4.3.2", + "@babel/runtime": "7.23.9", + "@types/jest": "29.5.11", + "aria-query": "5.1.3", + "chalk": "3.0.0", + "css.escape": "1.5.1", + "dom-accessibility-api": "0.6.3", + "lodash": "4.17.21", + "redent": "3.0.0" + }, + "transitive_closure": { + "@adobe/css-tools": [ + "4.3.2" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@testing-library/jest-dom": [ + "6.3.0_at_types_jest_29.5.11" + ], + "@types/istanbul-lib-coverage": [ + "2.0.6" + ], + "@types/istanbul-lib-report": [ + "3.0.3" + ], + "@types/istanbul-reports": [ + "3.0.4" + ], + "@types/jest": [ + "29.5.11" + ], + "@types/node": [ + "20.11.6" + ], + "@types/stack-utils": [ + "2.0.3" + ], + "@types/yargs": [ + "17.0.32" + ], + "@types/yargs-parser": [ + "21.0.3" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "aria-query": [ + "5.1.3" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "braces": [ + "3.0.2" + ], + "call-bind": [ + "1.0.2" + ], + "chalk": [ + "2.4.2", + "3.0.0", + "4.1.2" + ], + "ci-info": [ + "3.9.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "css.escape": [ + "1.5.1" + ], + "deep-equal": [ + "2.1.0" + ], + "define-properties": [ + "1.1.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "dom-accessibility-api": [ + "0.6.3" + ], + "es-get-iterator": [ + "1.1.2" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "expect": [ + "29.7.0" + ], + "fill-range": [ + "7.0.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "gopd": [ + "1.0.1" + ], + "graceful-fs": [ + "4.2.10" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "indent-string": [ + "4.0.0" + ], + "is-arguments": [ + "1.1.1" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-map": [ + "2.0.2" + ], + "is-number": [ + "7.0.0" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.10" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "lodash": [ + "4.17.21" + ], + "micromatch": [ + "4.0.5" + ], + "min-indent": [ + "1.0.1" + ], + "object-inspect": [ + "1.12.2" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "redent": [ + "3.0.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "stack-utils": [ + "2.0.6" + ], + "strip-indent": [ + "3.0.0" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__cosmiconfig__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cosmiconfig", + "version": "6.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/parse-json": "4.0.0", + "import-fresh": "3.3.0", + "parse-json": "5.2.0", + "path-type": "4.0.0", + "yaml": "1.10.2" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@types/parse-json": [ + "4.0.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "cosmiconfig": [ + "6.0.0" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-type": [ + "4.0.0" + ], + "resolve-from": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__ansi-styles__4.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-styles", + "version": "4.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "url": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ansi-styles__4.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-styles", + "version": "4.3.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "color-convert": "2.0.1" + }, + "transitive_closure": { + "ansi-styles": [ + "4.3.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_ungap_structured-clone__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@ungap/structured-clone", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@ungap/structured-clone": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-arguments__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-arguments", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "url": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_popperjs_core__2.11.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@popperjs/core", + "version": "2.11.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "url": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__prelude-ls__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "prelude-ls", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "url": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__vary__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vary", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "vary": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-exists__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-exists", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "url": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__zen-observable-ts__1.2.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "zen-observable-ts", + "version": "1.2.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==", + "url": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ci-info__3.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ci-info", + "version": "3.9.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ci-info": [ + "3.9.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__is-docker__2.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-docker", + "version": "2.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "url": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_emotion_babel-plugin__11.11.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@emotion/babel-plugin", + "version": "11.11.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/helper-module-imports": "7.22.15", + "@babel/runtime": "7.23.9", + "@emotion/hash": "0.9.1", + "@emotion/memoize": "0.8.1", + "@emotion/serialize": "1.1.3", + "babel-plugin-macros": "3.1.0", + "convert-source-map": "1.9.0", + "escape-string-regexp": "4.0.0", + "find-root": "1.1.0", + "source-map": "0.5.7", + "stylis": "4.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.9" + ], + "@babel/types": [ + "7.23.6" + ], + "@emotion/babel-plugin": [ + "11.11.0" + ], + "@emotion/hash": [ + "0.9.1" + ], + "@emotion/memoize": [ + "0.8.1" + ], + "@emotion/serialize": [ + "1.1.3" + ], + "@emotion/unitless": [ + "0.8.1" + ], + "@emotion/utils": [ + "1.2.1" + ], + "@types/parse-json": [ + "4.0.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "1.9.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "csstype": [ + "3.1.2" + ], + "error-ex": [ + "1.3.2" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "find-root": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.11.0" + ], + "js-tokens": [ + "4.0.0" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "source-map": [ + "0.5.7" + ], + "stylis": [ + "4.2.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__doctrine__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "doctrine", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "esutils": "2.0.3" + }, + "transitive_closure": { + "doctrine": [ + "3.0.0" + ], + "esutils": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_wry_caches__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@wry/caches", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==", + "url": "https://registry.npmjs.org/@wry/caches/-/caches-1.0.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__ansi-styles__5.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-styles", + "version": "5.2.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ansi-styles": [ + "5.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__prettier__3.2.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "prettier", + "version": "3.2.5", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "prettier" + ] + }, + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "url": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_typescript-eslint_scope-manager__5.44.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/scope-manager", + "version": "5.44.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g==", + "url": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.44.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__optimism__0.18.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "optimism", + "version": "0.18.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==", + "url": "https://registry.npmjs.org/optimism/-/optimism-0.18.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_humanwhocodes_module-importer__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@humanwhocodes/module-importer", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@humanwhocodes/module-importer": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_apollo_client__3.8.10__1356184083": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@apollo/client", + "version": "3.8.10_1356184083", + "root_package": "", + "link_workspace": "", + "link_packages": { + "javascript/grid-ui": [ + "@apollo/client" + ] + }, + "integrity": "sha512-p/22RZ8ehHyvySnC20EHPPe0gdu8Xp6ZCiXOfdEe1ZORw5cUteD/TLc66tfKv8qu8NLIfbiWoa+6s70XnKvxqg==", + "url": "https://registry.npmjs.org/@apollo/client/-/client-3.8.10.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__type-check__0.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "type-check", + "version": "0.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "url": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__p-limit__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-limit", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "url": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-import__2.26.0__-730645774__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-import", + "version": "2.26.0_-730645774", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/parser": "5.44.0_-679725046", + "array-includes": "3.1.6", + "array.prototype.flat": "1.3.1", + "debug": "2.6.9", + "doctrine": "2.1.0", + "eslint": "8.52.0", + "eslint-import-resolver-node": "0.3.6", + "eslint-module-utils": "2.7.4_-814034063", + "has": "1.0.3", + "is-core-module": "2.11.0", + "is-glob": "4.0.3", + "minimatch": "3.1.2", + "object.values": "1.1.6", + "resolve": "1.22.1", + "tsconfig-paths": "3.14.1" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json5": [ + "0.0.29" + ], + "@typescript-eslint/parser": [ + "5.44.0_-679725046" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_5.3.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "array-includes": [ + "3.1.6" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.flat": [ + "1.3.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "3.2.7", + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "define-properties": [ + "1.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.20.4" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-import-resolver-node": [ + "0.3.6" + ], + "eslint-module-utils": [ + "2.7.4_-814034063" + ], + "eslint-plugin-import": [ + "2.26.0_-730645774" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-glob": [ + "3.2.12" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.5" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.1.3" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "globby": [ + "11.1.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "internal-slot": [ + "1.0.3" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.11.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number": [ + "7.0.0" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-weakref": [ + "1.0.2" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.7" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "object-inspect": [ + "1.12.2" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.values": [ + "1.1.6" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexp.prototype.flags": [ + "1.4.3" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "string.prototype.trimend": [ + "1.0.6" + ], + "string.prototype.trimstart": [ + "1.0.6" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_5.3.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.3.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__path-to-regexp__0.1.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-to-regexp", + "version": "0.1.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "url": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__color-name__1.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "color-name", + "version": "1.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "url": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__eslint-plugin-n__15.5.1__eslint_8.52.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-n", + "version": "15.5.1_eslint_8.52.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "builtins": "5.0.1", + "eslint": "8.52.0", + "eslint-plugin-es": "4.1.0_eslint_8.52.0", + "eslint-utils": "3.0.0_eslint_8.52.0", + "ignore": "5.2.4", + "is-core-module": "2.11.0", + "minimatch": "3.1.2", + "resolve": "1.22.1", + "semver": "7.5.4" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.52.0" + ], + "@eslint-community/regexpp": [ + "4.9.1" + ], + "@eslint/eslintrc": [ + "2.1.2" + ], + "@eslint/js": [ + "8.52.0" + ], + "@humanwhocodes/config-array": [ + "0.11.13" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "2.0.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "builtins": [ + "5.0.1" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4_supports-color_8.1.1" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.52.0" + ], + "eslint-plugin-es": [ + "4.1.0_eslint_8.52.0" + ], + "eslint-plugin-n": [ + "15.5.1_eslint_8.52.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "2.1.0", + "3.0.0_eslint_8.52.0" + ], + "eslint-visitor-keys": [ + "1.3.0", + "2.1.0", + "3.4.3" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.13.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.0.4" + ], + "flatted": [ + "3.2.7" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.23.0" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "ignore": [ + "5.2.4" + ], + "import-fresh": [ + "3.3.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-core-module": [ + "2.11.0" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.1.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.1" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "semver": [ + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__color-name__1.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "color-name", + "version": "1.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "url": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-boolean-object__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-boolean-object", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-boolean-object": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__jest-matcher-utils__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-matcher-utils", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "url": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__espree__9.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "espree", + "version": "9.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "url": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__jest-get-type__29.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-get-type", + "version": "29.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "url": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__escape-string-regexp__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "escape-string-regexp", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "url": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-date-object__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-date-object", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "url": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-regex__1.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-regex", + "version": "1.1.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.1.3" + ], + "has": [ + "1.0.3" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-regex": [ + "1.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__gensync__1.0.0-beta.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "gensync", + "version": "1.0.0-beta.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "url": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__is-weakmap__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-weakmap", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-weakmap": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_eslint-community_regexpp__4.9.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint-community/regexpp", + "version": "4.9.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==", + "url": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__lie__3.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lie", + "version": "3.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "url": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__imurmurhash__0.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "imurmurhash", + "version": "0.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "url": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_babel_helper-validator-identifier__7.22.20": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-validator-identifier", + "version": "7.22.20", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "url": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__undici-types__5.26.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "undici-types", + "version": "5.26.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "url": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__filelist__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "filelist", + "version": "1.0.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "minimatch": "5.1.0" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "filelist": [ + "1.0.4" + ], + "minimatch": [ + "5.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__load-json-file__5.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "load-json-file", + "version": "5.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "url": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__text-table__0.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "text-table", + "version": "0.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "text-table": [ + "0.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__at_bazel_runfiles__5.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "system.reflection.emit.ilgeneration", - "version": "4.7.0", - "sha512": "sha512-iQ2Xw8qC8YCsh3+OUAMtD4g8LiA5r9ZxVhlDZn3Dok7C382JbLlPNyyXXCW3KRiv0Ebvwt7b1ZYqmIoCerrI2Q==" + "package": "@bazel/runfiles", + "version": "5.8.1", + "dev": true, + "root_package": "", + "link_packages": { + "javascript/node/selenium-webdriver": [ + "@bazel/runfiles" + ] + }, + "deps": {}, + "transitive_closure": { + "@bazel/runfiles": [ + "5.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] } }, - "nuget.system.runtime.handles.v4.3.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "npm__debug__3.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "system.runtime.handles", - "version": "4.3.0", - "sha512": "sha512-CluvHdVUv54BvLTOCCyybugreDNk/rR8unMPruzXDtxSjvrQOU3M4R831/lQf4YI8VYp668FGQa/01E+Rq8PEQ==" + "package": "debug", + "version": "3.2.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ms": "2.1.3" + }, + "transitive_closure": { + "debug": [ + "3.2.7" + ], + "ms": [ + "2.1.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] } }, - "nuget.system.text.encoding.v4.3.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "npm__diff__5.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "system.text.encoding", - "version": "4.3.0", - "sha512": "sha512-b/f+7HMTpxIfeV7H03bkuHKMFylCGfr9/U6gePnfFFW0aF8LOWLDgQCY6V1oWUqDksC3mdNuyChM1vy9TP4sZw==" + "package": "diff", + "version": "5.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "diff": [ + "5.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] } }, - "nuget.system.runtime.compilerservices.unsafe.v6.0.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "npm__escape-html__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "system.runtime.compilerservices.unsafe", - "version": "6.0.0", - "sha512": "sha512-1AVzAb5OxJNvJLnOADtexNmWgattm2XVOT3TjQTN7Dd4SqoSwai1CsN2fth42uQldJSQdz/sAec0+TzxBFgisw==" + "package": "escape-html", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "url": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__find-up__6.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "find-up", + "version": "6.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "locate-path": "7.1.1", + "path-exists": "5.0.0" + }, + "transitive_closure": { + "find-up": [ + "6.3.0" + ], + "locate-path": [ + "7.1.1" + ], + "p-limit": [ + "4.0.0" + ], + "p-locate": [ + "6.0.0" + ], + "path-exists": [ + "5.0.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] } }, - "nuget.microsoft.extensions.dependencyinjection.abstractions.v3.1.9": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "npm__yaml__1.10.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.extensions.dependencyinjection.abstractions", - "version": "3.1.9", - "sha512": "sha512-qbiwYBpKjQ2u3FNFDuznksbzsR7e/pUK2XR/osxiU/1Lo+M8MqjRnvBm5x/Uvtv2iDdMNQ2N+smrPgRGKDXboQ==" + "package": "yaml", + "version": "1.10.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "url": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__raw-body__2.5.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "raw-body", + "version": "2.5.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "transitive_closure": { + "bytes": [ + "3.1.2" + ], + "depd": [ + "2.0.0" + ], + "http-errors": [ + "2.0.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "inherits": [ + "2.0.4" + ], + "raw-body": [ + "2.5.2" + ], + "safer-buffer": [ + "2.1.2" + ], + "setprototypeof": [ + "1.2.0" + ], + "statuses": [ + "2.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "unpipe": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] } }, - "nuget.microsoft.bcl.asyncinterfaces.v7.0.0": { - "bzlFile": "@@rules_dotnet~//dotnet/private/rules/nuget:nuget_archive.bzl", - "ruleClassName": "nuget_archive", + "npm__typedarray__0.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", "attributes": { - "sources": [ - "https://api.nuget.org/v3/index.json" - ], - "id": "microsoft.bcl.asyncinterfaces", - "version": "7.0.0", - "sha512": "sha512-Nb9B1lxCab0LZi0ijNLEpw4hgwt0Wl8QQM1DxIhJS2otChAtIVMfyGrYl3YzdSjspvBYPliJlr0kCtizNAVe3w==" + "package": "typedarray", + "version": "0.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "typedarray": [ + "0.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "npm__binary-extensions__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "binary-extensions", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "url": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__lodash.merge__4.6.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lodash.merge", + "version": "4.6.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "url": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "commit": "", + "patch_args": [], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "", + "generate_bzl_library_targets": true + } + }, + "npm__at_wry_trie__0.4.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@wry/trie", + "version": "0.4.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "@wry/trie": [ + "0.4.3" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ] } } }, "recordedRepoMappingEntries": [ [ - "", - "rules_dotnet", - "rules_dotnet~" + "aspect_bazel_lib~", + "bazel_skylib", + "bazel_skylib~" ], [ - "rules_dotnet~", + "aspect_bazel_lib~", + "bazel_tools", + "bazel_tools" + ], + [ + "aspect_rules_js~", + "aspect_bazel_lib", + "aspect_bazel_lib~" + ], + [ + "aspect_rules_js~", + "bazel_features", + "bazel_features~" + ], + [ + "aspect_rules_js~", "bazel_skylib", "bazel_skylib~" ], [ - "rules_dotnet~", + "aspect_rules_js~", + "bazel_tools", + "bazel_tools" + ], + [ + "bazel_features~", "bazel_tools", "bazel_tools" ] ] } }, - "@@apple_rules_lint~//lint:extensions.bzl%linter": { + "@@aspect_rules_js~//npm:extensions.bzl%pnpm": { "general": { - "bzlTransitiveDigest": "g7izj5kLCmsajh8IospHh4ZQ35dyM0FIrA8D4HapAsM=", + "bzlTransitiveDigest": "2nkYCSmcLqPTKNMrg3DKjkK0tcr+cEF9gToFp7IjIxw=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { - "apple_linters": { - "bzlFile": "@@apple_rules_lint~//lint/private:register_linters.bzl", - "ruleClassName": "register_linters", + "pnpm__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pnpm", + "version": "8.6.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": {}, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "bins": {}, + "npm_translate_lock_repo": "", + "package_visibility": [ + "//visibility:public" + ] + } + }, + "pnpm": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", "attributes": { - "linters": { - "java-spotbugs": "'@@//java:spotbugs-config'", - "rust-rustfmt": "'@@//rust:enable-rustfmt'" - } + "package": "pnpm", + "version": "8.6.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vRIWpD/L4phf9Bk2o/O2TDR8fFoJnpYrp2TKqTIZF/qZ2/rgL3qKXzHofHgbXsinwMoSEigz28sqk3pQ+yMEQQ==", + "url": "", + "commit": "", + "patch_args": [ + "-p0" + ], + "patches": [], + "custom_postinstall": "", + "npm_auth": "", + "npm_auth_basic": "", + "npm_auth_username": "", + "npm_auth_password": "", + "lifecycle_hooks": [], + "extra_build_content": "load(\"@aspect_rules_js//js:defs.bzl\", \"js_binary\")\njs_binary(name = \"pnpm\", data = glob([\"package/**\"]), entry_point = \"package/dist/pnpm.cjs\", visibility = [\"//visibility:public\"])", + "generate_bzl_library_targets": false } } }, - "recordedRepoMappingEntries": [] + "recordedRepoMappingEntries": [ + [ + "aspect_bazel_lib~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "aspect_bazel_lib~", + "bazel_tools", + "bazel_tools" + ], + [ + "aspect_rules_js~", + "aspect_bazel_lib", + "aspect_bazel_lib~" + ], + [ + "aspect_rules_js~", + "bazel_features", + "bazel_features~" + ], + [ + "aspect_rules_js~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "aspect_rules_js~", + "bazel_tools", + "bazel_tools" + ], + [ + "bazel_features~", + "bazel_tools", + "bazel_tools" + ] + ] } }, - "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { + "@@aspect_rules_ts~//ts:extensions.bzl%ext": { "general": { - "bzlTransitiveDigest": "TMkUP4/N3ZORvZrcDg9FxSoW9r/7+uDVH/SI2biRyJg=", + "bzlTransitiveDigest": "jZvZoeSdsozDBsxT/atiIKSM9Cj+8jU/SCl4SIPPPsc=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, "generatedRepoSpecs": { - "local_config_apple_cc": { - "bzlFile": "@@apple_support~//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf", - "attributes": {} - }, - "local_config_apple_cc_toolchains": { - "bzlFile": "@@apple_support~//crosstool:setup.bzl", - "ruleClassName": "_apple_cc_autoconf_toolchains", - "attributes": {} + "npm_typescript": { + "bzlFile": "@@aspect_rules_ts~//ts/private:npm_repositories.bzl", + "ruleClassName": "http_archive_version", + "attributes": { + "bzlmod": true, + "check_for_updates": true, + "version": "4.9.5", + "integrity": "", + "build_file": "@@aspect_rules_ts~//ts:BUILD.typescript", + "build_file_substitutions": { + "bazel_worker_version": "5.4.2", + "google_protobuf_version": "3.20.1" + }, + "urls": [ + "https://registry.npmjs.org/typescript/-/typescript-{}.tgz" + ] + } } }, "recordedRepoMappingEntries": [ [ - "apple_support~", + "aspect_rules_ts~", "bazel_tools", "bazel_tools" ] @@ -4396,7 +59172,7 @@ }, "@@bazel_features~//private:extensions.bzl%version_extension": { "general": { - "bzlTransitiveDigest": "xm7Skm1Las5saxzFWt2hbS+e68BWi+MXyt6+lKIhjPA=", + "bzlTransitiveDigest": "3FcE0iMy2yYKEbEO19f72k9dzcpRUXHH+igow5yVy8g=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, @@ -4418,7 +59194,13 @@ } } }, - "recordedRepoMappingEntries": [] + "recordedRepoMappingEntries": [ + [ + "bazel_features~", + "bazel_tools", + "bazel_tools" + ] + ] } }, "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { @@ -4511,6 +59293,30 @@ ] } }, + "@@rules_buf~//buf:extensions.bzl%ext": { + "general": { + "bzlTransitiveDigest": "g+jMGdq+n4/yJrpHH5E0NFOhJJ1qUGT36b/kwcBonsU=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "rules_buf_toolchains": { + "bzlFile": "@@rules_buf~//buf/internal:toolchain.bzl", + "ruleClassName": "buf_download_releases", + "attributes": { + "version": "v1.27.0" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_buf~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, "@@rules_dotnet~//dotnet:extensions.bzl%dotnet": { "general": { "bzlTransitiveDigest": "JBf/xJgzeDdPwg5+2Hc5q5iwBhK7BwnTpXVTASMU5TY=", @@ -5603,7 +60409,7 @@ }, "@@rules_go~//go:extensions.bzl%go_sdk": { "os:osx,arch:aarch64": { - "bzlTransitiveDigest": "M71hw46ktHvuQ05Mf9b3rzpbRbfWXAoPKl1PjDl8UKI=", + "bzlTransitiveDigest": "oz98E/5hVKiH3qDlSg7R1FASClwMtv1eMWxG+3B6AY0=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, @@ -10863,6 +65669,94 @@ ] } }, + "@@rules_nodejs~//nodejs:extensions.bzl%node": { + "general": { + "bzlTransitiveDigest": "KOk+Te5m8n3d0B9F5+lgyrzLbtEzqeqWset0MugBbOY=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "nodejs_host": { + "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", + "ruleClassName": "nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_linux_s390x": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_s390x", + "node_version": "16.20.0" + } + }, + "nodejs_windows_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "windows_amd64", + "node_version": "16.20.0" + } + }, + "nodejs_toolchains": { + "bzlFile": "@@rules_nodejs~//nodejs/private:toolchains_repo.bzl", + "ruleClassName": "toolchains_repo", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_linux_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_amd64", + "node_version": "16.20.0" + } + }, + "nodejs_linux_ppc64le": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_ppc64le", + "node_version": "16.20.0" + } + }, + "nodejs_darwin_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "darwin_amd64", + "node_version": "16.20.0" + } + }, + "nodejs_linux_arm64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_arm64", + "node_version": "16.20.0" + } + }, + "nodejs": { + "bzlFile": "@@rules_nodejs~//nodejs/private:nodejs_repo_host_os_alias.bzl", + "ruleClassName": "nodejs_repo_host_os_alias", + "attributes": { + "user_node_repository_name": "nodejs" + } + }, + "nodejs_darwin_arm64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "darwin_arm64", + "node_version": "16.20.0" + } + } + }, + "recordedRepoMappingEntries": [] + } + }, "@@rules_python~//python/extensions:pip.bzl%pip": { "os:osx,arch:aarch64": { "bzlTransitiveDigest": "cA0ZR6RgQN7ZwcMDlS+veeMxqQXEbXEVf4KDkhx1e9s=", diff --git a/WORKSPACE.bzlmod b/WORKSPACE.bzlmod index 913290c074361..4f1f22ead52ab 100644 --- a/WORKSPACE.bzlmod +++ b/WORKSPACE.bzlmod @@ -55,81 +55,6 @@ http_archive( url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.39.0/bazel-lib-v1.39.0.tar.gz", ) -http_archive( - name = "aspect_rules_js", - sha256 = "a2f941e27f02e84521c2d47fd530c66d57dd6d6e44b4a4f1496fe304851d8e48", - strip_prefix = "rules_js-1.35.0", - url = "https://github.com/aspect-build/rules_js/releases/download/v1.35.0/rules_js-v1.35.0.tar.gz", -) - -load("@aspect_rules_js//js:repositories.bzl", "rules_js_dependencies") - -rules_js_dependencies() - -load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains") - -nodejs_register_toolchains( - name = "nodejs", - node_version = "18.17.0", -) - -load("@aspect_rules_js//npm:repositories.bzl", "npm_translate_lock") - -npm_translate_lock( - name = "npm", - data = [ - "@//:package.json", - "@//:pnpm-workspace.yaml", - "@//javascript/grid-ui:package.json", - "@//javascript/node/selenium-webdriver:package.json", - ], - generate_bzl_library_targets = True, - npmrc = "//:.npmrc", - pnpm_lock = "//:pnpm-lock.yaml", - update_pnpm_lock = True, - verify_node_modules_ignored = "//:.bazelignore", -) - -load("@npm//:repositories.bzl", "npm_repositories") - -npm_repositories() - -http_archive( - name = "aspect_rules_ts", - sha256 = "bd3e7b17e677d2b8ba1bac3862f0f238ab16edb3e43fb0f0b9308649ea58a2ad", - strip_prefix = "rules_ts-2.1.0", - url = "https://github.com/aspect-build/rules_ts/releases/download/v2.1.0/rules_ts-v2.1.0.tar.gz", -) - -load("@aspect_rules_ts//ts:repositories.bzl", "rules_ts_dependencies") - -rules_ts_dependencies( - ts_version = "4.9.5", -) - -load("@bazel_features//:deps.bzl", "bazel_features_deps") - -bazel_features_deps() - -http_archive( - name = "aspect_rules_esbuild", - sha256 = "999349afef62875301f45ec8515189ceaf2e85b1e67a17e2d28b95b30e1d6c0b", - strip_prefix = "rules_esbuild-0.18.0", - url = "https://github.com/aspect-build/rules_esbuild/releases/download/v0.18.0/rules_esbuild-v0.18.0.tar.gz", -) - -load("@aspect_rules_esbuild//esbuild:dependencies.bzl", "rules_esbuild_dependencies") - -rules_esbuild_dependencies() - -# Register a toolchain containing esbuild npm package and native bindings -load("@aspect_rules_esbuild//esbuild:repositories.bzl", "esbuild_register_toolchains") - -esbuild_register_toolchains( - name = "esbuild", - esbuild_version = "0.19.9", -) - http_archive( name = "io_bazel_rules_closure", patch_args = [