From 01301fa65edbc6acb56c488c4a6ddab167322d03 Mon Sep 17 00:00:00 2001 From: Yesudeep Mangalapilly Date: Tue, 12 Mar 2024 00:29:24 -0700 Subject: [PATCH] feat: add sveltekit example --- frontend/.bazelignore | 1 + frontend/MODULE.bazel.lock | 159702 +++++++++++++++ frontend/pnpm-lock.yaml | 1201 +- frontend/pnpm-workspace.yaml | 13 +- frontend/sveltekit_ts/.eslintignore | 13 + frontend/sveltekit_ts/.eslintrc.cjs | 31 + frontend/sveltekit_ts/.gitignore | 12 + frontend/sveltekit_ts/.npmrc | 1 + frontend/sveltekit_ts/.prettierignore | 4 + frontend/sveltekit_ts/.prettierrc | 8 + frontend/sveltekit_ts/BUILD.bazel | 28 + frontend/sveltekit_ts/README.md | 38 + frontend/sveltekit_ts/defs.bzl | 122 + frontend/sveltekit_ts/package.json | 41 + frontend/sveltekit_ts/playwright.config.ts | 12 + frontend/sveltekit_ts/src/BUILD.bazel | 47 + frontend/sveltekit_ts/src/app.d.ts | 13 + frontend/sveltekit_ts/src/app.html | 12 + .../sveltekit_ts/src/lib/images/github.svg | 16 + .../src/lib/images/svelte-logo.svg | 1 + .../src/lib/images/svelte-welcome.png | Bin 0 -> 128754 bytes .../src/lib/images/svelte-welcome.webp | Bin 0 -> 115469 bytes .../sveltekit_ts/src/routes/+layout.svelte | 53 + frontend/sveltekit_ts/src/routes/+page.svelte | 59 + frontend/sveltekit_ts/src/routes/+page.ts | 3 + .../sveltekit_ts/src/routes/Counter.svelte | 102 + .../sveltekit_ts/src/routes/Header.svelte | 129 + .../src/routes/about/+page.svelte | 26 + .../sveltekit_ts/src/routes/about/+page.ts | 9 + frontend/sveltekit_ts/src/routes/styles.css | 107 + .../src/routes/sverdle/+page.server.ts | 69 + .../src/routes/sverdle/+page.svelte | 409 + .../src/routes/sverdle/game.test.ts | 9 + .../sveltekit_ts/src/routes/sverdle/game.ts | 75 + .../routes/sverdle/how-to-play/+page.svelte | 95 + .../src/routes/sverdle/how-to-play/+page.ts | 9 + .../src/routes/sverdle/reduced-motion.ts | 23 + .../src/routes/sverdle/words.server.ts | 12980 ++ frontend/sveltekit_ts/static/BUILD.bazel | 7 + frontend/sveltekit_ts/static/favicon.png | Bin 0 -> 1420 bytes frontend/sveltekit_ts/static/robots.txt | 3 + frontend/sveltekit_ts/svelte.config.js | 18 + frontend/sveltekit_ts/tests/BUILD.bazel | 0 frontend/sveltekit_ts/tests/test.ts | 6 + frontend/sveltekit_ts/tsconfig.json | 19 + frontend/sveltekit_ts/vite.config.ts | 9 + 46 files changed, 175445 insertions(+), 90 deletions(-) create mode 100644 frontend/MODULE.bazel.lock create mode 100644 frontend/sveltekit_ts/.eslintignore create mode 100644 frontend/sveltekit_ts/.eslintrc.cjs create mode 100644 frontend/sveltekit_ts/.gitignore create mode 100644 frontend/sveltekit_ts/.npmrc create mode 100644 frontend/sveltekit_ts/.prettierignore create mode 100644 frontend/sveltekit_ts/.prettierrc create mode 100644 frontend/sveltekit_ts/BUILD.bazel create mode 100644 frontend/sveltekit_ts/README.md create mode 100644 frontend/sveltekit_ts/defs.bzl create mode 100644 frontend/sveltekit_ts/package.json create mode 100644 frontend/sveltekit_ts/playwright.config.ts create mode 100644 frontend/sveltekit_ts/src/BUILD.bazel create mode 100644 frontend/sveltekit_ts/src/app.d.ts create mode 100644 frontend/sveltekit_ts/src/app.html create mode 100644 frontend/sveltekit_ts/src/lib/images/github.svg create mode 100644 frontend/sveltekit_ts/src/lib/images/svelte-logo.svg create mode 100644 frontend/sveltekit_ts/src/lib/images/svelte-welcome.png create mode 100644 frontend/sveltekit_ts/src/lib/images/svelte-welcome.webp create mode 100644 frontend/sveltekit_ts/src/routes/+layout.svelte create mode 100644 frontend/sveltekit_ts/src/routes/+page.svelte create mode 100644 frontend/sveltekit_ts/src/routes/+page.ts create mode 100644 frontend/sveltekit_ts/src/routes/Counter.svelte create mode 100644 frontend/sveltekit_ts/src/routes/Header.svelte create mode 100644 frontend/sveltekit_ts/src/routes/about/+page.svelte create mode 100644 frontend/sveltekit_ts/src/routes/about/+page.ts create mode 100644 frontend/sveltekit_ts/src/routes/styles.css create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/+page.server.ts create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/+page.svelte create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/game.test.ts create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/game.ts create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.svelte create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.ts create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/reduced-motion.ts create mode 100644 frontend/sveltekit_ts/src/routes/sverdle/words.server.ts create mode 100644 frontend/sveltekit_ts/static/BUILD.bazel create mode 100644 frontend/sveltekit_ts/static/favicon.png create mode 100644 frontend/sveltekit_ts/static/robots.txt create mode 100644 frontend/sveltekit_ts/svelte.config.js create mode 100644 frontend/sveltekit_ts/tests/BUILD.bazel create mode 100644 frontend/sveltekit_ts/tests/test.ts create mode 100644 frontend/sveltekit_ts/tsconfig.json create mode 100644 frontend/sveltekit_ts/vite.config.ts diff --git a/frontend/.bazelignore b/frontend/.bazelignore index e8d37fb2b..842004368 100644 --- a/frontend/.bazelignore +++ b/frontend/.bazelignore @@ -3,5 +3,6 @@ next.js/node_modules packages/one/node_modules react/node_modules react-webpack/node_modules +sveltekit_ts/node_modules vue/node_modules vue/libraries/simple/node_modules diff --git a/frontend/MODULE.bazel.lock b/frontend/MODULE.bazel.lock new file mode 100644 index 000000000..41af589a2 --- /dev/null +++ b/frontend/MODULE.bazel.lock @@ -0,0 +1,159702 @@ +{ + "lockFileVersion": 6, + "moduleFileHash": "a6f44da68f86ba1d354dca739da5f8df7592df96aeb21255fb3d70c3673ca945", + "flags": { + "cmdRegistries": [ + "https://bcr.bazel.build/" + ], + "cmdModuleOverrides": {}, + "allowedYankedVersions": [], + "envVarAllowedYankedVersions": "", + "ignoreDevDependency": false, + "directDependenciesMode": "WARNING", + "compatibilityMode": "ERROR" + }, + "localOverrideHashes": { + "bazel_tools": "1ae69322ac3823527337acf02016e8ee95813d8d356f47060255b8956fa642f0" + }, + "moduleDepGraph": { + "": { + "name": "", + "version": "", + "key": "", + "repoName": "", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl", + "extensionName": "pnpm", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 13, + "column": 21 + }, + "imports": { + "pnpm": "pnpm" + }, + "devImports": [ + "pnpm" + ], + "tags": [], + "hasDevUseExtension": true, + "hasNonDevUseExtension": false + }, + { + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl", + "extensionName": "npm", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 16, + "column": 20 + }, + "imports": { + "npm": "npm" + }, + "devImports": [ + "npm" + ], + "tags": [ + { + "tagName": "npm_translate_lock", + "attributeValues": { + "name": "npm", + "npmrc": "//:.npmrc", + "pnpm_lock": "//:pnpm-lock.yaml", + "public_hoist_packages": { + "@next/eslint-plugin-next": [ + "next.js" + ], + "eslint-config-react-app": [ + "react" + ], + "eslint@8.28.0": [ + "react" + ] + }, + "verify_node_modules_ignored": "//:.bazelignore" + }, + "devDependency": true, + "location": { + "file": "@@//:MODULE.bazel", + "line": 17, + "column": 23 + } + } + ], + "hasDevUseExtension": true, + "hasNonDevUseExtension": false + }, + { + "extensionBzlFile": "@aspect_rules_ts//ts:extensions.bzl", + "extensionName": "ext", + "usingModule": "", + "location": { + "file": "@@//:MODULE.bazel", + "line": 30, + "column": 29 + }, + "imports": { + "npm_typescript": "npm_typescript" + }, + "devImports": [ + "npm_typescript" + ], + "tags": [ + { + "tagName": "deps", + "attributeValues": {}, + "devDependency": true, + "location": { + "file": "@@//:MODULE.bazel", + "line": 35, + "column": 18 + } + } + ], + "hasDevUseExtension": true, + "hasNonDevUseExtension": false + } + ], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_lint": "aspect_rules_lint@0.12.0", + "aspect_rules_jest": "aspect_rules_jest@0.19.6", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "aspect_rules_swc": "aspect_rules_swc@1.1.0", + "aspect_rules_ts": "aspect_rules_ts@2.1.1", + "aspect_rules_rollup": "aspect_rules_rollup@1.0.0", + "aspect_rules_webpack": "aspect_rules_webpack@0.13.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "bazel_tools": "bazel_tools@_", + "local_config_platform": "local_config_platform@_" + } + }, + "aspect_bazel_lib@1.40.0": { + "name": "aspect_bazel_lib", + "version": "1.40.0", + "key": "aspect_bazel_lib@1.40.0", + "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.40.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/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.40.0/MODULE.bazel", + "line": 17, + "column": 36 + } + }, + { + "tagName": "copy_to_directory", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/MODULE.bazel", + "line": 18, + "column": 39 + } + }, + { + "tagName": "jq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/MODULE.bazel", + "line": 19, + "column": 24 + } + }, + { + "tagName": "yq", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/MODULE.bazel", + "line": 20, + "column": 24 + } + }, + { + "tagName": "coreutils", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/MODULE.bazel", + "line": 21, + "column": 31 + } + }, + { + "tagName": "expand_template", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/MODULE.bazel", + "line": 22, + "column": 37 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.7", + "io_bazel_stardoc": "stardoc@0.5.4", + "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.40.0/bazel-lib-v1.40.0.tar.gz" + ], + "integrity": "sha256-9u9ohx0gbPj19O6oPSajZlY6YxsCCv4dovg4qb/wNcA=", + "strip_prefix": "bazel-lib-1.40.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/patches/go_dev_dep.patch": "sha256-dEFxvx2hBB/tOWlknfRHRXNCdvYpvrxsYHWaMGF2QgA=", + "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.0/patches/module_dot_bazel_version.patch": "sha256-iObeu/lM6rlMBoGfku1ghjqdsCvdpgqFUyfQaqjeZKY=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_lint@0.12.0": { + "name": "aspect_rules_lint", + "version": "0.12.0", + "key": "aspect_rules_lint@0.12.0", + "repoName": "aspect_rules_lint", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.7", + "rules_proto": "rules_proto@5.3.0-21.7", + "rules_buf": "rules_buf@0.1.1", + "com_google_protobuf": "protobuf@21.7", + "io_bazel_rules_go": "rules_go@0.39.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.12.0/rules_lint-v0.12.0.tar.gz" + ], + "integrity": "sha256-QfrTY/EcyrRqJE+T+Myw9EK8I15gbS+th4AZh60HWbE=", + "strip_prefix": "rules_lint-0.12.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_lint/0.12.0/patches/module_dot_bazel_version.patch": "sha256-UalspyPiq7NghK8dC4FsJYIk0q6VE4tep18M0P6mwnw=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_jest@0.19.6": { + "name": "aspect_rules_jest", + "version": "0.19.6", + "key": "aspect_rules_jest@0.19.6", + "repoName": "aspect_rules_jest", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_nodejs": "rules_nodejs@5.8.2", + "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_jest/releases/download/v0.19.6/rules_jest-v0.19.6.tar.gz" + ], + "integrity": "sha256-yuRM94YrcfMMK6bfZHO8gCHHpsksfRdxpY6/XJnrV3Y=", + "strip_prefix": "rules_jest-0.19.6", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_jest/0.19.6/patches/module_dot_bazel_version.patch": "sha256-zMIhnoYX63UgVhntq/NToa6xJO7Zy84orSPWHxdRuHg=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_js@1.38.0": { + "name": "aspect_rules_js", + "version": "1.38.0", + "key": "aspect_rules_js@1.38.0", + "repoName": "aspect_rules_js", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_nodejs//nodejs:extensions.bzl", + "extensionName": "node", + "usingModule": "aspect_rules_js@1.38.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.38.0/MODULE.bazel", + "line": 18, + "column": 21 + }, + "imports": { + "nodejs_darwin_amd64": "nodejs_darwin_amd64", + "nodejs_darwin_arm64": "nodejs_darwin_arm64", + "nodejs_linux_amd64": "nodejs_linux_amd64", + "nodejs_linux_arm64": "nodejs_linux_arm64", + "nodejs_linux_ppc64le": "nodejs_linux_ppc64le", + "nodejs_linux_s390x": "nodejs_linux_s390x", + "nodejs_windows_amd64": "nodejs_windows_amd64" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl", + "extensionName": "pnpm", + "usingModule": "aspect_rules_js@1.38.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.38.0/MODULE.bazel", + "line": 27, + "column": 21 + }, + "imports": { + "pnpm": "pnpm", + "pnpm__links": "pnpm__links" + }, + "devImports": [], + "tags": [ + { + "tagName": "pnpm", + "attributeValues": { + "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/aspect_rules_js/1.38.0/MODULE.bazel", + "line": 28, + "column": 10 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "aspect_rules_js@1.38.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.38.0/MODULE.bazel", + "line": 35, + "column": 37 + }, + "imports": { + "coreutils_toolchains": "coreutils_toolchains", + "yq_darwin_amd64": "yq_darwin_amd64", + "yq_darwin_arm64": "yq_darwin_arm64", + "yq_linux_amd64": "yq_linux_amd64", + "yq_linux_arm64": "yq_linux_arm64", + "yq_linux_ppc64le": "yq_linux_ppc64le", + "yq_linux_s390x": "yq_linux_s390x", + "yq_windows_amd64": "yq_windows_amd64" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_lint": "aspect_rules_lint@0.12.0", + "bazel_features": "bazel_features@0.1.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_nodejs": "rules_nodejs@5.8.2", + "platforms": "platforms@0.0.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/aspect-build/rules_js/releases/download/v1.38.0/rules_js-v1.38.0.tar.gz" + ], + "integrity": "sha256-7cewJVEU+v271ZPqXV/f1UsqYD8zs6SVGJEKxhjhvys=", + "strip_prefix": "rules_js-1.38.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_js/1.38.0/patches/module_dot_bazel_version.patch": "sha256-tAqZRfOXAplJDTwXVfUiYwinz9Iqug7CeU2aJH0+IqU=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_swc@1.1.0": { + "name": "aspect_rules_swc", + "version": "1.1.0", + "key": "aspect_rules_swc@1.1.0", + "repoName": "aspect_rules_swc", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@swc_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_rules_swc//swc:extensions.bzl", + "extensionName": "swc", + "usingModule": "aspect_rules_swc@1.1.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_swc/1.1.0/MODULE.bazel", + "line": 16, + "column": 20 + }, + "imports": { + "swc_toolchains": "swc_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "toolchain", + "attributeValues": { + "name": "swc", + "swc_version": "v1.3.75" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_swc/1.1.0/MODULE.bazel", + "line": 17, + "column": 14 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.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/aspect-build/rules_swc/releases/download/v1.1.0/rules_swc-v1.1.0.tar.gz" + ], + "integrity": "sha256-jrnkLtFm8gys7f2yLY1bMRVjUurBkPwzR9tVYDdFotg=", + "strip_prefix": "rules_swc-1.1.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_swc/1.1.0/patches/module_dot_bazel_version.patch": "sha256-72hovv/aeX6BNr42JiQ2vH47IRpSetaZEbMk4VX/ux0=" + }, + "remote_patch_strip": 0 + } + } + }, + "aspect_rules_ts@2.1.1": { + "name": "aspect_rules_ts", + "version": "2.1.1", + "key": "aspect_rules_ts@2.1.1", + "repoName": "aspect_rules_ts", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_jasmine": "aspect_rules_jasmine@1.1.1", + "rules_proto": "rules_proto@5.3.0-21.7", + "platforms": "platforms@0.0.7", + "com_google_protobuf": "protobuf@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/aspect-build/rules_ts/releases/download/v2.1.1/rules_ts-v2.1.1.tar.gz" + ], + "integrity": "sha256-atKLW6wrtadOc3kl+8P2LOHtq+WkjWGpmAxJHvTO37c=", + "strip_prefix": "rules_ts-2.1.1", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_ts/2.1.1/patches/module_dot_bazel_version.patch": "sha256-QSOW57rHaCNqJY1TAJJbaJcZA0yF+Kr0R8iAfK+ZVK4=" + }, + "remote_patch_strip": 1 + } + } + }, + "aspect_rules_rollup@1.0.0": { + "name": "aspect_rules_rollup", + "version": "1.0.0", + "key": "aspect_rules_rollup@1.0.0", + "repoName": "aspect_rules_rollup", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@aspect_rules_rollup//rollup:extensions.bzl", + "extensionName": "rollup", + "usingModule": "aspect_rules_rollup@1.0.0", + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_rollup/1.0.0/MODULE.bazel", + "line": 21, + "column": 23 + }, + "imports": { + "rollup": "rollup" + }, + "devImports": [], + "tags": [ + { + "tagName": "toolchain", + "attributeValues": { + "name": "rollup", + "rollup_version": "v2.70.2" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/aspect_rules_rollup/1.0.0/MODULE.bazel", + "line": 22, + "column": 17 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "rules_nodejs": "rules_nodejs@5.8.2", + "platforms": "platforms@0.0.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/aspect-build/rules_rollup/releases/download/v1.0.0/rules_rollup-v1.0.0.tar.gz" + ], + "integrity": "sha256-oEM6CwIGpF02J0nXG8Hk4NrPXKKlcrBZMo+XUzkryoA=", + "strip_prefix": "rules_rollup-1.0.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_rollup/1.0.0/patches/module_dot_bazel_version.patch": "sha256-kKQOVz56fmoIEZF/qPn/wfPzCLcvqYP87QykfvGTqww=" + }, + "remote_patch_strip": 0 + } + } + }, + "aspect_rules_webpack@0.13.0": { + "name": "aspect_rules_webpack", + "version": "0.13.0", + "key": "aspect_rules_webpack@0.13.0", + "repoName": "aspect_rules_webpack", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "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/aspect-build/rules_webpack/releases/download/v0.13.0/rules_webpack-v0.13.0.tar.gz" + ], + "integrity": "sha256-IahYSdAe670MsKXAEg61jk0yde2mhWWRjnwNhOFNMNk=", + "strip_prefix": "rules_webpack-0.13.0", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_webpack/0.13.0/patches/module_dot_bazel_version.patch": "sha256-UVAwir22l+5vhWE1ZG6dKwCvbX5Lf/g3qgaGRsz9eQM=" + }, + "remote_patch_strip": 0 + } + } + }, + "bazel_skylib@1.5.0": { + "name": "bazel_skylib", + "version": "1.5.0", + "key": "bazel_skylib@1.5.0", + "repoName": "bazel_skylib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains/unittest:cmd_toolchain", + "//toolchains/unittest:bash_toolchain" + ], + "extensionUsages": [], + "deps": { + "platforms": "platforms@0.0.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/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz" + ], + "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "bazel_tools@_": { + "name": "bazel_tools", + "version": "", + "key": "bazel_tools@_", + "repoName": "bazel_tools", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@local_config_cc_toolchains//:all", + "@local_config_sh//:local_sh_toolchain" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl", + "extensionName": "cc_configure_extension", + "usingModule": "bazel_tools@_", + "location": { + "file": "@@bazel_tools//:MODULE.bazel", + "line": 18, + "column": 29 + }, + "imports": { + "local_config_cc": "local_config_cc", + "local_config_cc_toolchains": "local_config_cc_toolchains" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@bazel_tools//tools/osx:xcode_configure.bzl", + "extensionName": "xcode_configure_extension", + "usingModule": "bazel_tools@_", + "location": { + "file": "@@bazel_tools//:MODULE.bazel", + "line": 22, + "column": 32 + }, + "imports": { + "local_config_xcode": "local_config_xcode" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@rules_java//java:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "bazel_tools@_", + "location": { + "file": "@@bazel_tools//:MODULE.bazel", + "line": 25, + "column": 32 + }, + "imports": { + "local_jdk": "local_jdk", + "remote_java_tools": "remote_java_tools", + "remote_java_tools_linux": "remote_java_tools_linux", + "remote_java_tools_windows": "remote_java_tools_windows", + "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64", + "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@bazel_tools//tools/sh:sh_configure.bzl", + "extensionName": "sh_configure_extension", + "usingModule": "bazel_tools@_", + "location": { + "file": "@@bazel_tools//:MODULE.bazel", + "line": 36, + "column": 39 + }, + "imports": { + "local_config_sh": "local_config_sh" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@bazel_tools//tools/test:extensions.bzl", + "extensionName": "remote_coverage_tools_extension", + "usingModule": "bazel_tools@_", + "location": { + "file": "@@bazel_tools//:MODULE.bazel", + "line": 40, + "column": 48 + }, + "imports": { + "remote_coverage_tools": "remote_coverage_tools" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@bazel_tools//tools/android:android_extensions.bzl", + "extensionName": "remote_android_tools_extensions", + "usingModule": "bazel_tools@_", + "location": { + "file": "@@bazel_tools//:MODULE.bazel", + "line": 43, + "column": 42 + }, + "imports": { + "android_gmaven_r8": "android_gmaven_r8", + "android_tools": "android_tools" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@buildozer//:buildozer_binary.bzl", + "extensionName": "buildozer_binary", + "usingModule": "bazel_tools@_", + "location": { + "file": "@@bazel_tools//:MODULE.bazel", + "line": 47, + "column": 33 + }, + "imports": { + "buildozer_binary": "buildozer_binary" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "rules_cc": "rules_cc@0.0.9", + "rules_java": "rules_java@7.4.0", + "rules_license": "rules_license@0.0.7", + "rules_proto": "rules_proto@5.3.0-21.7", + "rules_python": "rules_python@0.22.1", + "buildozer": "buildozer@6.4.0.2", + "platforms": "platforms@0.0.7", + "com_google_protobuf": "protobuf@21.7", + "zlib": "zlib@1.3", + "build_bazel_apple_support": "apple_support@1.5.0", + "local_config_platform": "local_config_platform@_" + } + }, + "local_config_platform@_": { + "name": "local_config_platform", + "version": "", + "key": "local_config_platform@_", + "repoName": "local_config_platform", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "platforms": "platforms@0.0.7", + "bazel_tools": "bazel_tools@_" + } + }, + "platforms@0.0.7": { + "name": "platforms", + "version": "0.0.7", + "key": "platforms@0.0.7", + "repoName": "platforms", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "rules_license": "rules_license@0.0.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/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz" + ], + "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "stardoc@0.5.4": { + "name": "stardoc", + "version": "0.5.4", + "key": "stardoc@0.5.4", + "repoName": "stardoc", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_java": "rules_java@7.4.0", + "rules_license": "rules_license@0.0.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/bazelbuild/stardoc/releases/download/0.5.4/stardoc-0.5.4.tar.gz" + ], + "integrity": "sha256-7FcTnkZvquVj8vw5YJ2klIpHm7UbbWeu3X2bG4BZxDM=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "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@21.7", + "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_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.7", + "com_google_protobuf": "protobuf@21.7", + "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 + } + } + }, + "protobuf@21.7": { + "name": "protobuf", + "version": "21.7", + "key": "protobuf@21.7", + "repoName": "protobuf", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_jvm_external//:extensions.bzl", + "extensionName": "maven", + "usingModule": "protobuf@21.7", + "location": { + "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel", + "line": 22, + "column": 22 + }, + "imports": { + "maven": "maven" + }, + "devImports": [], + "tags": [ + { + "tagName": "install", + "attributeValues": { + "name": "maven", + "artifacts": [ + "com.google.code.findbugs:jsr305:3.0.2", + "com.google.code.gson:gson:2.8.9", + "com.google.errorprone:error_prone_annotations:2.3.2", + "com.google.j2objc:j2objc-annotations:1.3", + "com.google.guava:guava:31.1-jre", + "com.google.guava:guava-testlib:31.1-jre", + "com.google.truth:truth:1.1.2", + "junit:junit:4.13.2", + "org.mockito:mockito-core:4.3.1" + ] + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel", + "line": 24, + "column": 14 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_python": "rules_python@0.22.1", + "rules_cc": "rules_cc@0.0.9", + "rules_proto": "rules_proto@5.3.0-21.7", + "rules_java": "rules_java@7.4.0", + "rules_pkg": "rules_pkg@0.7.0", + "com_google_abseil": "abseil-cpp@20211102.0", + "zlib": "zlib@1.3", + "upb": "upb@0.0.0-20220923-a547704", + "rules_jvm_external": "rules_jvm_external@4.4.2", + "com_google_googletest": "googletest@1.11.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/protocolbuffers/protobuf/releases/download/v21.7/protobuf-all-21.7.zip" + ], + "integrity": "sha256-VJOiH17T/FAuZv7GuUScBqVRztYwAvpIkDxA36jeeko=", + "strip_prefix": "protobuf-21.7", + "remote_patches": { + "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel.patch": "sha256-q3V2+eq0v2XF0z8z+V+QF4cynD6JvHI1y3kI/+rzl5s=", + "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel_for_examples.patch": "sha256-O7YP6s3lo/1opUiO0jqXYORNHdZ/2q3hjz1QGy8QdIU=", + "https://bcr.bazel.build/modules/protobuf/21.7/patches/relative_repo_names.patch": "sha256-RK9RjW8T5UJNG7flIrnFiNE9vKwWB+8uWWtJqXYT0w4=", + "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_missing_files.patch": "sha256-Hyne4DG2u5bXcWHNxNMirA2QFAe/2Cl8oMm1XJdkQIY=" + }, + "remote_patch_strip": 1 + } + } + }, + "rules_go@0.39.1": { + "name": "rules_go", + "version": "0.39.1", + "key": "rules_go@0.39.1", + "repoName": "io_bazel_rules_go", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@go_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@io_bazel_rules_go//go/private:extensions.bzl", + "extensionName": "non_module_dependencies", + "usingModule": "rules_go@0.39.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel", + "line": 13, + "column": 40 + }, + "imports": { + "go_googleapis": "go_googleapis", + "io_bazel_rules_nogo": "io_bazel_rules_nogo" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@io_bazel_rules_go//go:extensions.bzl", + "extensionName": "go_sdk", + "usingModule": "rules_go@0.39.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel", + "line": 20, + "column": 23 + }, + "imports": { + "go_toolchains": "go_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "download", + "attributeValues": { + "name": "go_default_sdk", + "version": "1.19.8" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel", + "line": 21, + "column": 16 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@gazelle//:extensions.bzl", + "extensionName": "go_deps", + "usingModule": "rules_go@0.39.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel", + "line": 31, + "column": 24 + }, + "imports": { + "com_github_gogo_protobuf": "com_github_gogo_protobuf", + "com_github_golang_mock": "com_github_golang_mock", + "com_github_golang_protobuf": "com_github_golang_protobuf", + "org_golang_google_genproto": "org_golang_google_genproto", + "org_golang_google_grpc": "org_golang_google_grpc", + "org_golang_google_protobuf": "org_golang_google_protobuf", + "org_golang_x_net": "org_golang_x_net" + }, + "devImports": [], + "tags": [ + { + "tagName": "from_file", + "attributeValues": { + "go_mod": "//:go.mod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel", + "line": 32, + "column": 18 + } + }, + { + "tagName": "module", + "attributeValues": { + "path": "github.com/gogo/protobuf", + "sum": "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=", + "version": "v1.3.2" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel", + "line": 33, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.7", + "rules_proto": "rules_proto@5.3.0-21.7", + "com_google_protobuf": "protobuf@21.7", + "gazelle": "gazelle@0.30.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/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip" + ], + "integrity": "sha256-bcLaerTPXXv8fJSXdrG3xzPwXlbtxLzZAiuySdLiqZY=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_nodejs@5.8.2": { + "name": "rules_nodejs", + "version": "5.8.2", + "key": "rules_nodejs@5.8.2", + "repoName": "rules_nodejs", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@nodejs_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_nodejs//nodejs:extensions.bzl", + "extensionName": "node", + "usingModule": "rules_nodejs@5.8.2", + "location": { + "file": "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/MODULE.bazel", + "line": 12, + "column": 21 + }, + "imports": { + "nodejs_toolchains": "nodejs_toolchains" + }, + "devImports": [], + "tags": [ + { + "tagName": "toolchain", + "attributeValues": { + "name": "nodejs" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/MODULE.bazel", + "line": 16, + "column": 15 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.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/bazelbuild/rules_nodejs/releases/download/5.8.2/rules_nodejs-core-5.8.2.tar.gz" + ], + "integrity": "sha256-dko7N1e7jDxqArozRHMaPXHlWCIK3LDPfkPJu6LDe6g=", + "strip_prefix": "", + "remote_patches": { + "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/patches/module_dot_bazel.patch": "sha256-5QrAbAO9TVzmRytAov5d4xvl/U3aRQsUpeP/h5SFmu4=" + }, + "remote_patch_strip": 0 + } + } + }, + "bazel_features@0.1.0": { + "name": "bazel_features", + "version": "0.1.0", + "key": "bazel_features@0.1.0", + "repoName": "bazel_features", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@bazel_features//private:extensions.bzl", + "extensionName": "version_extension", + "usingModule": "bazel_features@0.1.0", + "location": { + "file": "https://bcr.bazel.build/modules/bazel_features/0.1.0/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/v0.1.0/bazel_features-v0.1.0.tar.gz" + ], + "integrity": "sha256-8wgr/NynPcd9zWj6rOgGE1ouCMIwsCsdn729fbnZxFA=", + "strip_prefix": "bazel_features-0.1.0", + "remote_patches": { + "https://bcr.bazel.build/modules/bazel_features/0.1.0/patches/module_dot_bazel_version.patch": "sha256-m2frYY4QlwNsLI31bBG+ZVJjU94p+f3xDHI0hzbemiw=" + }, + "remote_patch_strip": 0 + } + } + }, + "aspect_rules_jasmine@1.1.1": { + "name": "aspect_rules_jasmine", + "version": "1.1.1", + "key": "aspect_rules_jasmine@1.1.1", + "repoName": "aspect_rules_jasmine", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "aspect_bazel_lib": "aspect_bazel_lib@1.40.0", + "aspect_rules_js": "aspect_rules_js@1.38.0", + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_nodejs": "rules_nodejs@5.8.2", + "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_jasmine/releases/download/v1.1.1/rules_jasmine-v1.1.1.tar.gz" + ], + "integrity": "sha256-TBbvIC0eU/2IDo7MngeWgCIB6pyJ+jL1LV1jP/+FjKw=", + "strip_prefix": "rules_jasmine-1.1.1", + "remote_patches": { + "https://bcr.bazel.build/modules/aspect_rules_jasmine/1.1.1/patches/module_dot_bazel_version.patch": "sha256-8SGC1oPPwklTgBcPYr0WntS9UOt0xfg2xcC8I35GQZU=" + }, + "remote_patch_strip": 0 + } + } + }, + "rules_cc@0.0.9": { + "name": "rules_cc", + "version": "0.0.9", + "key": "rules_cc@0.0.9", + "repoName": "rules_cc", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@local_config_cc_toolchains//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl", + "extensionName": "cc_configure_extension", + "usingModule": "rules_cc@0.0.9", + "location": { + "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel", + "line": 9, + "column": 29 + }, + "imports": { + "local_config_cc_toolchains": "local_config_cc_toolchains" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "platforms": "platforms@0.0.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/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz" + ], + "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=", + "strip_prefix": "rules_cc-0.0.9", + "remote_patches": { + "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g=" + }, + "remote_patch_strip": 0 + } + } + }, + "rules_java@7.4.0": { + "name": "rules_java", + "version": "7.4.0", + "key": "rules_java@7.4.0", + "repoName": "rules_java", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "//toolchains:all", + "@local_jdk//:runtime_toolchain_definition", + "@local_jdk//:bootstrap_runtime_toolchain_definition", + "@remotejdk11_linux_toolchain_config_repo//:all", + "@remotejdk11_linux_aarch64_toolchain_config_repo//:all", + "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all", + "@remotejdk11_linux_s390x_toolchain_config_repo//:all", + "@remotejdk11_macos_toolchain_config_repo//:all", + "@remotejdk11_macos_aarch64_toolchain_config_repo//:all", + "@remotejdk11_win_toolchain_config_repo//:all", + "@remotejdk11_win_arm64_toolchain_config_repo//:all", + "@remotejdk17_linux_toolchain_config_repo//:all", + "@remotejdk17_linux_aarch64_toolchain_config_repo//:all", + "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all", + "@remotejdk17_linux_s390x_toolchain_config_repo//:all", + "@remotejdk17_macos_toolchain_config_repo//:all", + "@remotejdk17_macos_aarch64_toolchain_config_repo//:all", + "@remotejdk17_win_toolchain_config_repo//:all", + "@remotejdk17_win_arm64_toolchain_config_repo//:all", + "@remotejdk21_linux_toolchain_config_repo//:all", + "@remotejdk21_linux_aarch64_toolchain_config_repo//:all", + "@remotejdk21_macos_toolchain_config_repo//:all", + "@remotejdk21_macos_aarch64_toolchain_config_repo//:all", + "@remotejdk21_win_toolchain_config_repo//:all" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_java//java:extensions.bzl", + "extensionName": "toolchains", + "usingModule": "rules_java@7.4.0", + "location": { + "file": "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel", + "line": 19, + "column": 27 + }, + "imports": { + "remote_java_tools": "remote_java_tools", + "remote_java_tools_linux": "remote_java_tools_linux", + "remote_java_tools_windows": "remote_java_tools_windows", + "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64", + "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64", + "local_jdk": "local_jdk", + "remotejdk11_linux_toolchain_config_repo": "remotejdk11_linux_toolchain_config_repo", + "remotejdk11_linux_aarch64_toolchain_config_repo": "remotejdk11_linux_aarch64_toolchain_config_repo", + "remotejdk11_linux_ppc64le_toolchain_config_repo": "remotejdk11_linux_ppc64le_toolchain_config_repo", + "remotejdk11_linux_s390x_toolchain_config_repo": "remotejdk11_linux_s390x_toolchain_config_repo", + "remotejdk11_macos_toolchain_config_repo": "remotejdk11_macos_toolchain_config_repo", + "remotejdk11_macos_aarch64_toolchain_config_repo": "remotejdk11_macos_aarch64_toolchain_config_repo", + "remotejdk11_win_toolchain_config_repo": "remotejdk11_win_toolchain_config_repo", + "remotejdk11_win_arm64_toolchain_config_repo": "remotejdk11_win_arm64_toolchain_config_repo", + "remotejdk17_linux_toolchain_config_repo": "remotejdk17_linux_toolchain_config_repo", + "remotejdk17_linux_aarch64_toolchain_config_repo": "remotejdk17_linux_aarch64_toolchain_config_repo", + "remotejdk17_linux_ppc64le_toolchain_config_repo": "remotejdk17_linux_ppc64le_toolchain_config_repo", + "remotejdk17_linux_s390x_toolchain_config_repo": "remotejdk17_linux_s390x_toolchain_config_repo", + "remotejdk17_macos_toolchain_config_repo": "remotejdk17_macos_toolchain_config_repo", + "remotejdk17_macos_aarch64_toolchain_config_repo": "remotejdk17_macos_aarch64_toolchain_config_repo", + "remotejdk17_win_toolchain_config_repo": "remotejdk17_win_toolchain_config_repo", + "remotejdk17_win_arm64_toolchain_config_repo": "remotejdk17_win_arm64_toolchain_config_repo", + "remotejdk21_linux_toolchain_config_repo": "remotejdk21_linux_toolchain_config_repo", + "remotejdk21_linux_aarch64_toolchain_config_repo": "remotejdk21_linux_aarch64_toolchain_config_repo", + "remotejdk21_macos_toolchain_config_repo": "remotejdk21_macos_toolchain_config_repo", + "remotejdk21_macos_aarch64_toolchain_config_repo": "remotejdk21_macos_aarch64_toolchain_config_repo", + "remotejdk21_win_toolchain_config_repo": "remotejdk21_win_toolchain_config_repo" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "platforms": "platforms@0.0.7", + "rules_cc": "rules_cc@0.0.9", + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_proto": "rules_proto@5.3.0-21.7", + "rules_license": "rules_license@0.0.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/bazelbuild/rules_java/releases/download/7.4.0/rules_java-7.4.0.tar.gz" + ], + "integrity": "sha256-l27wi0nJKXQfIBeQ5Z44B8cq2B9CjIvJU82+/1/tFes=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_license@0.0.7": { + "name": "rules_license", + "version": "0.0.7", + "key": "rules_license@0.0.7", + "repoName": "rules_license", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "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/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz" + ], + "integrity": "sha256-RTHezLkTY5ww5cdRKgVNXYdWmNrrddjPkPKEN1/nw2A=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_python@0.22.1": { + "name": "rules_python", + "version": "0.22.1", + "key": "rules_python@0.22.1", + "repoName": "rules_python", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [ + "@bazel_tools//tools/python:autodetecting_toolchain" + ], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_python//python/extensions/private:internal_deps.bzl", + "extensionName": "internal_deps", + "usingModule": "rules_python@0.22.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel", + "line": 14, + "column": 30 + }, + "imports": { + "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__setuptools": "pypi__setuptools", + "pypi__tomli": "pypi__tomli", + "pypi__wheel": "pypi__wheel", + "pypi__zipp": "pypi__zipp", + "pypi__coverage_cp310_aarch64-apple-darwin": "pypi__coverage_cp310_aarch64-apple-darwin", + "pypi__coverage_cp310_aarch64-unknown-linux-gnu": "pypi__coverage_cp310_aarch64-unknown-linux-gnu", + "pypi__coverage_cp310_x86_64-apple-darwin": "pypi__coverage_cp310_x86_64-apple-darwin", + "pypi__coverage_cp310_x86_64-unknown-linux-gnu": "pypi__coverage_cp310_x86_64-unknown-linux-gnu", + "pypi__coverage_cp311_aarch64-unknown-linux-gnu": "pypi__coverage_cp311_aarch64-unknown-linux-gnu", + "pypi__coverage_cp311_x86_64-apple-darwin": "pypi__coverage_cp311_x86_64-apple-darwin", + "pypi__coverage_cp311_x86_64-unknown-linux-gnu": "pypi__coverage_cp311_x86_64-unknown-linux-gnu", + "pypi__coverage_cp38_aarch64-apple-darwin": "pypi__coverage_cp38_aarch64-apple-darwin", + "pypi__coverage_cp38_aarch64-unknown-linux-gnu": "pypi__coverage_cp38_aarch64-unknown-linux-gnu", + "pypi__coverage_cp38_x86_64-apple-darwin": "pypi__coverage_cp38_x86_64-apple-darwin", + "pypi__coverage_cp38_x86_64-unknown-linux-gnu": "pypi__coverage_cp38_x86_64-unknown-linux-gnu", + "pypi__coverage_cp39_aarch64-apple-darwin": "pypi__coverage_cp39_aarch64-apple-darwin", + "pypi__coverage_cp39_aarch64-unknown-linux-gnu": "pypi__coverage_cp39_aarch64-unknown-linux-gnu", + "pypi__coverage_cp39_x86_64-apple-darwin": "pypi__coverage_cp39_x86_64-apple-darwin", + "pypi__coverage_cp39_x86_64-unknown-linux-gnu": "pypi__coverage_cp39_x86_64-unknown-linux-gnu" + }, + "devImports": [], + "tags": [ + { + "tagName": "install", + "attributeValues": {}, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel", + "line": 15, + "column": 22 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@rules_python//python/extensions:python.bzl", + "extensionName": "python", + "usingModule": "rules_python@0.22.1", + "location": { + "file": "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel", + "line": 50, + "column": 23 + }, + "imports": { + "pythons_hub": "pythons_hub" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "platforms": "platforms@0.0.7", + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_proto": "rules_proto@5.3.0-21.7", + "com_google_protobuf": "protobuf@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/bazelbuild/rules_python/releases/download/0.22.1/rules_python-0.22.1.tar.gz" + ], + "integrity": "sha256-pWQP3dS+sD6MH95e1xYMC6a9R359BIZhwwwGk2om/WM=", + "strip_prefix": "rules_python-0.22.1", + "remote_patches": { + "https://bcr.bazel.build/modules/rules_python/0.22.1/patches/module_dot_bazel_version.patch": "sha256-3+VLDH9gYDzNI4eOW7mABC/LKxh1xqF6NhacLbNTucs=" + }, + "remote_patch_strip": 1 + } + } + }, + "buildozer@6.4.0.2": { + "name": "buildozer", + "version": "6.4.0.2", + "key": "buildozer@6.4.0.2", + "repoName": "buildozer", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@buildozer//:buildozer_binary.bzl", + "extensionName": "buildozer_binary", + "usingModule": "buildozer@6.4.0.2", + "location": { + "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel", + "line": 7, + "column": 33 + }, + "imports": { + "buildozer_binary": "buildozer_binary" + }, + "devImports": [], + "tags": [ + { + "tagName": "buildozer", + "attributeValues": { + "sha256": { + "darwin-amd64": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e", + "darwin-arm64": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d", + "linux-amd64": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119", + "linux-arm64": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa", + "windows-amd64": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b" + }, + "version": "6.4.0" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel", + "line": 8, + "column": 27 + } + } + ], + "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/fmeum/buildozer/releases/download/v6.4.0.2/buildozer-v6.4.0.2.tar.gz" + ], + "integrity": "sha256-k7tFKQMR2AygxpmZfH0yEPnQmF3efFgD9rBPkj+Yz/8=", + "strip_prefix": "buildozer-6.4.0.2", + "remote_patches": { + "https://bcr.bazel.build/modules/buildozer/6.4.0.2/patches/module_dot_bazel_version.patch": "sha256-gKANF2HMilj7bWmuXs4lbBIAAansuWC4IhWGB/CerjU=" + }, + "remote_patch_strip": 1 + } + } + }, + "zlib@1.3": { + "name": "zlib", + "version": "1.3", + "key": "zlib@1.3", + "repoName": "zlib", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "platforms": "platforms@0.0.7", + "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/madler/zlib/releases/download/v1.3/zlib-1.3.tar.gz" + ], + "integrity": "sha256-/wukwpIBPbwnUws6geH5qBPNOd4Byl4Pi/NVcC76WT4=", + "strip_prefix": "zlib-1.3", + "remote_patches": { + "https://bcr.bazel.build/modules/zlib/1.3/patches/add_build_file.patch": "sha256-Ei+FYaaOo7A3jTKunMEodTI0Uw5NXQyZEcboMC8JskY=", + "https://bcr.bazel.build/modules/zlib/1.3/patches/module_dot_bazel.patch": "sha256-fPWLM+2xaF/kuy+kZc1YTfW6hNjrkG400Ho7gckuyJk=" + }, + "remote_patch_strip": 0 + } + } + }, + "apple_support@1.5.0": { + "name": "apple_support", + "version": "1.5.0", + "key": "apple_support@1.5.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.5.0", + "location": { + "file": "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel", + "line": 17, + "column": 35 + }, + "imports": { + "local_config_apple_cc": "local_config_apple_cc", + "local_config_apple_cc_toolchains": "local_config_apple_cc_toolchains" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "platforms": "platforms@0.0.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/bazelbuild/apple_support/releases/download/1.5.0/apple_support.1.5.0.tar.gz" + ], + "integrity": "sha256-miM41vja0yRPgj8txghKA+TQ+7J8qJLclw5okNW0gYQ=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "rules_pkg@0.7.0": { + "name": "rules_pkg", + "version": "0.7.0", + "key": "rules_pkg@0.7.0", + "repoName": "rules_pkg", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "rules_python": "rules_python@0.22.1", + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_license": "rules_license@0.0.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/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz" + ], + "integrity": "sha256-iimOgydi7aGDBZfWT+fbWBeKqEzVkm121bdE1lWJQcI=", + "strip_prefix": "", + "remote_patches": { + "https://bcr.bazel.build/modules/rules_pkg/0.7.0/patches/module_dot_bazel.patch": "sha256-4OaEPZwYF6iC71ZTDg6MJ7LLqX7ZA0/kK4mT+4xKqiE=" + }, + "remote_patch_strip": 0 + } + } + }, + "abseil-cpp@20211102.0": { + "name": "abseil-cpp", + "version": "20211102.0", + "key": "abseil-cpp@20211102.0", + "repoName": "abseil-cpp", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "rules_cc": "rules_cc@0.0.9", + "platforms": "platforms@0.0.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/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz" + ], + "integrity": "sha256-3PcbnLqNwMqZQMSzFqDHlr6Pq0KwcLtrfKtitI8OZsQ=", + "strip_prefix": "abseil-cpp-20211102.0", + "remote_patches": { + "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/patches/module_dot_bazel.patch": "sha256-4izqopgGCey4jVZzl/w3M2GVPNohjh2B5TmbThZNvPY=" + }, + "remote_patch_strip": 0 + } + } + }, + "upb@0.0.0-20220923-a547704": { + "name": "upb", + "version": "0.0.0-20220923-a547704", + "key": "upb@0.0.0-20220923-a547704", + "repoName": "upb", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "rules_proto": "rules_proto@5.3.0-21.7", + "com_google_protobuf": "protobuf@21.7", + "com_google_absl": "abseil-cpp@20211102.0", + "platforms": "platforms@0.0.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/protocolbuffers/upb/archive/a5477045acaa34586420942098f5fecd3570f577.tar.gz" + ], + "integrity": "sha256-z39x6v+QskwaKLSWRan/A6mmwecTQpHOcJActj5zZLU=", + "strip_prefix": "upb-a5477045acaa34586420942098f5fecd3570f577", + "remote_patches": { + "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/patches/module_dot_bazel.patch": "sha256-wH4mNS6ZYy+8uC0HoAft/c7SDsq2Kxf+J8dUakXhaB0=" + }, + "remote_patch_strip": 0 + } + } + }, + "rules_jvm_external@4.4.2": { + "name": "rules_jvm_external", + "version": "4.4.2", + "key": "rules_jvm_external@4.4.2", + "repoName": "rules_jvm_external", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@rules_jvm_external//:non-module-deps.bzl", + "extensionName": "non_module_deps", + "usingModule": "rules_jvm_external@4.4.2", + "location": { + "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel", + "line": 9, + "column": 32 + }, + "imports": { + "io_bazel_rules_kotlin": "io_bazel_rules_kotlin" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@rules_jvm_external//:extensions.bzl", + "extensionName": "maven", + "usingModule": "rules_jvm_external@4.4.2", + "location": { + "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel", + "line": 16, + "column": 22 + }, + "imports": { + "rules_jvm_external_deps": "rules_jvm_external_deps" + }, + "devImports": [], + "tags": [ + { + "tagName": "install", + "attributeValues": { + "name": "rules_jvm_external_deps", + "artifacts": [ + "com.google.cloud:google-cloud-core:1.93.10", + "com.google.cloud:google-cloud-storage:1.113.4", + "com.google.code.gson:gson:2.9.0", + "org.apache.maven:maven-artifact:3.8.6", + "software.amazon.awssdk:s3:2.17.183" + ], + "lock_file": "@rules_jvm_external//:rules_jvm_external_deps_install.json" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel", + "line": 18, + "column": 14 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "io_bazel_stardoc": "stardoc@0.5.4", + "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_jvm_external/archive/refs/tags/4.4.2.zip" + ], + "integrity": "sha256-c1YC9QgT6y6pPKP15DsZWb2AshO4NqB6YqKddXZwt3s=", + "strip_prefix": "rules_jvm_external-4.4.2", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + }, + "googletest@1.11.0": { + "name": "googletest", + "version": "1.11.0", + "key": "googletest@1.11.0", + "repoName": "googletest", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [], + "deps": { + "com_google_absl": "abseil-cpp@20211102.0", + "platforms": "platforms@0.0.7", + "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/google/googletest/archive/refs/tags/release-1.11.0.tar.gz" + ], + "integrity": "sha256-tIcL8SH/d5W6INILzdhie44Ijy0dqymaAxwQNO3ck9U=", + "strip_prefix": "googletest-release-1.11.0", + "remote_patches": { + "https://bcr.bazel.build/modules/googletest/1.11.0/patches/module_dot_bazel.patch": "sha256-HuahEdI/n8KCI071sN3CEziX+7qP/Ec77IWayYunLP0=" + }, + "remote_patch_strip": 0 + } + } + }, + "gazelle@0.30.0": { + "name": "gazelle", + "version": "0.30.0", + "key": "gazelle@0.30.0", + "repoName": "bazel_gazelle", + "executionPlatformsToRegister": [], + "toolchainsToRegister": [], + "extensionUsages": [ + { + "extensionBzlFile": "@io_bazel_rules_go//go:extensions.bzl", + "extensionName": "go_sdk", + "usingModule": "gazelle@0.30.0", + "location": { + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel", + "line": 12, + "column": 23 + }, + "imports": { + "go_default_sdk": "go_default_sdk" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@bazel_gazelle//internal/bzlmod:non_module_deps.bzl", + "extensionName": "non_module_deps", + "usingModule": "gazelle@0.30.0", + "location": { + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel", + "line": 17, + "column": 32 + }, + "imports": { + "bazel_gazelle_go_repository_cache": "bazel_gazelle_go_repository_cache", + "bazel_gazelle_go_repository_tools": "bazel_gazelle_go_repository_tools" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@io_bazel_rules_go//go/private:extensions.bzl", + "extensionName": "non_module_dependencies", + "usingModule": "gazelle@0.30.0", + "location": { + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel", + "line": 24, + "column": 41 + }, + "imports": { + "go_googleapis": "go_googleapis" + }, + "devImports": [], + "tags": [], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + }, + { + "extensionBzlFile": "@bazel_gazelle//:extensions.bzl", + "extensionName": "go_deps", + "usingModule": "gazelle@0.30.0", + "location": { + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel", + "line": 30, + "column": 24 + }, + "imports": { + "com_github_bazelbuild_buildtools": "com_github_bazelbuild_buildtools", + "com_github_bmatcuk_doublestar_v4": "com_github_bmatcuk_doublestar_v4", + "com_github_fsnotify_fsnotify": "com_github_fsnotify_fsnotify", + "com_github_google_go_cmp": "com_github_google_go_cmp", + "com_github_pelletier_go_toml": "com_github_pelletier_go_toml", + "com_github_pmezard_go_difflib": "com_github_pmezard_go_difflib", + "org_golang_x_mod": "org_golang_x_mod", + "org_golang_x_sync": "org_golang_x_sync", + "org_golang_x_tools": "org_golang_x_tools", + "bazel_gazelle_go_repository_config": "bazel_gazelle_go_repository_config" + }, + "devImports": [], + "tags": [ + { + "tagName": "from_file", + "attributeValues": { + "go_mod": "//:go.mod" + }, + "devDependency": false, + "location": { + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel", + "line": 31, + "column": 18 + } + } + ], + "hasDevUseExtension": false, + "hasNonDevUseExtension": true + } + ], + "deps": { + "bazel_skylib": "bazel_skylib@1.5.0", + "com_google_protobuf": "protobuf@21.7", + "io_bazel_rules_go": "rules_go@0.39.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/bazelbuild/bazel-gazelle/releases/download/v0.30.0/bazel-gazelle-v0.30.0.tar.gz" + ], + "integrity": "sha256-cn8+Tt2W6iDCnowsqejSr3JNjHd455I6hUssgJUrxAU=", + "strip_prefix": "", + "remote_patches": {}, + "remote_patch_strip": 0 + } + } + } + }, + "moduleExtensions": { + "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=", + "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": "Gj93oM9DYdk3n6PN/4YbrQJ8IGkHEmqnAGBvzWZ3EtY=", + "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_js~//npm:extensions.bzl%npm": { + "general": { + "bzlTransitiveDigest": "GEys4dgUmEdaeZ57F7iDtNxvVtEjPCQu8TRKAFnCJuc=", + "recordedFileInputs": { + "@@//pnpm-lock.yaml": "089e2c4eeb70a834dccb92e8337d6cd2be4198a64e1746562badd871b15edf95", + "@@//.npmrc": "25afec638a4a1dc4a7277d8babd30464e9d942cf93d3e47505a4677adad1a901", + "@@aspect_bazel_lib~~toolchains~yq_linux_amd64//yq": "042f7462ec8378f8b0d3bac85d1b1a063b63beef5d8e3826bb2377294116ae90" + }, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "npm__vite-node__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite-node", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "cac": "6.7.14", + "debug": "4.3.4", + "pathe": "1.1.1", + "picocolors": "1.0.0", + "vite": "5.1.6" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "cac": [ + "6.7.14" + ], + "debug": [ + "4.3.4" + ], + "esbuild": [ + "0.19.8" + ], + "fsevents": [ + "2.3.3" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "pathe": [ + "1.1.1" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "vite": [ + "5.1.6" + ], + "vite-node": [ + "1.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_sockjs__0.3.34": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/sockjs", + "version": "0.3.34", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R+n7qBFnm/6jinlteC9DBL5dGiDGjWAvjo4viUanpnc/dG1y7uDoacXPIQ/PQEg1fI912SMHIa014ZjRpvDw4g==", + "url": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-optional-catch-binding__7.8.3__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-optional-catch-binding", + "version": "7.8.3_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__escodegen__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "escodegen", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "source-map": "0.6.1", + "esprima": "4.0.1", + "estraverse": "5.3.0", + "esutils": "2.0.3" + }, + "transitive_closure": { + "escodegen": [ + "2.1.0" + ], + "esprima": [ + "4.0.1" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "source-map": [ + "0.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_ampproject_remapping__2.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@ampproject/remapping", + "version": "2.2.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/gen-mapping": "0.3.3", + "@jridgewell/trace-mapping": "0.3.19" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__detect-newline__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "detect-newline", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "url": "https://registry.npmjs.org/detect-newline/-/detect-newline-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": false + } + }, + "npm__typed-array-buffer__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typed-array-buffer", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "url": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_yargs__17.0.26": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/yargs", + "version": "17.0.26", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw==", + "url": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.26.tgz", + "commit": "", + "patch_args": [], + "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__at_swc_core-linux-x64-musl__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-linux-x64-musl", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PhoXKf+f0OaNW/GCuXjJ0/KfK9EJX7z2gko+7nVnEA0p3aaPtbP6cq1Ubbl6CMoPL+Ci3gZ7nYumDqXNc3CtLQ==", + "url": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.100.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": false + } + }, + "npm__ci-info__3.8.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ci-info", + "version": "3.8.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "url": "https://registry.npmjs.org/ci-info/-/ci-info-3.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-duplicate-keys__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-duplicate-keys", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-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": false + } + }, + "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" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-reference__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-reference", + "version": "3.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/estree": "1.0.5" + }, + "transitive_closure": { + "@types/estree": [ + "1.0.5" + ], + "is-reference": [ + "3.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pify__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pify", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "url": "https://registry.npmjs.org/pify/-/pify-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": false + } + }, + "npm__at_webassemblyjs_wasm-opt__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/wasm-opt", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "url": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.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": false + } + }, + "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": false + } + }, + "npm__at_vitest_utils__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/utils", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==", + "url": "https://registry.npmjs.org/@vitest/utils/-/utils-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-ia32__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-ia32", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-ia32": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tiny-glob__0.2.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tiny-glob", + "version": "0.2.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "globalyzer": "0.1.0", + "globrex": "0.1.2" + }, + "transitive_closure": { + "globalyzer": [ + "0.1.0" + ], + "globrex": [ + "0.1.2" + ], + "tiny-glob": [ + "0.2.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tapable__2.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tapable", + "version": "2.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "url": "https://registry.npmjs.org/tapable/-/tapable-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": false + } + }, + "npm__eslint-module-utils__2.8.0__-1048923313__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-module-utils", + "version": "2.8.0_-1048923313", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/parser": "5.44.0_1986444992", + "debug": "3.2.7", + "eslint": "8.57.0", + "eslint-import-resolver-node": "0.3.9" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@typescript-eslint/parser": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-module-utils": [ + "2.8.0_-1048923313" + ], + "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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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.13.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "resolve": [ + "1.22.6" + ], + "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" + ], + "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_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__terser-webpack-plugin__5.3.9__1251614587": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "terser-webpack-plugin", + "version": "5.3.9_1251614587", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "url": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.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": false + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__siginfo__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "siginfo", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "url": "https://registry.npmjs.org/siginfo/-/siginfo-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": false + } + }, + "npm__set-function-name__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "set-function-name", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "define-data-property": "1.1.0", + "functions-have-names": "1.2.3", + "has-property-descriptors": "1.0.0" + }, + "transitive_closure": { + "define-data-property": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "set-function-name": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_istanbul-reports__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/istanbul-reports", + "version": "3.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/istanbul-lib-report": "3.0.1" + }, + "transitive_closure": { + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-sfc__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-sfc", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.0", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "2.0.2", + "magic-string": "0.30.4", + "postcss": "8.4.31", + "source-map-js": "1.0.2" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-sfc": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.30.4" + ], + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ws__8.14.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ws", + "version": "8.14.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__commander__10.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "commander", + "version": "10.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "commander": [ + "10.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__commander__8.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "commander", + "version": "8.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "commander": [ + "8.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-linux-x64-musl__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-linux-x64-musl", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-linux-x64-musl": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__onetime__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "onetime", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "mimic-fn": "4.0.0" + }, + "transitive_closure": { + "mimic-fn": [ + "4.0.0" + ], + "onetime": [ + "6.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__bser__2.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "bser", + "version": "2.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "node-int64": "0.4.0" + }, + "transitive_closure": { + "bser": [ + "2.1.1" + ], + "node-int64": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__object.hasown__1.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.hasown", + "version": "1.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.hasown": [ + "1.1.3" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__mrmime__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mrmime", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mrmime": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__convert-source-map__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "convert-source-map", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "url": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sveltejs_vite-plugin-svelte-inspector__2.0.0__5236015__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sveltejs/vite-plugin-svelte-inspector", + "version": "2.0.0_5236015", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@sveltejs/vite-plugin-svelte": "3.0.2_-1934338050", + "debug": "4.3.4", + "svelte": "5.0.0-next.75", + "vite": "5.1.6" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "@sveltejs/vite-plugin-svelte": [ + "3.0.2_-1934338050" + ], + "@sveltejs/vite-plugin-svelte-inspector": [ + "2.0.0_5236015" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "debug": [ + "4.3.4" + ], + "deepmerge": [ + "4.3.1" + ], + "dequal": [ + "2.0.3" + ], + "esbuild": [ + "0.19.8" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "fsevents": [ + "2.3.3" + ], + "is-reference": [ + "3.0.2" + ], + "kleur": [ + "4.1.5" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-hmr": [ + "0.15.3_svelte_5.0.0-next.75" + ], + "vite": [ + "5.1.6" + ], + "vitefu": [ + "0.2.5_vite_5.1.6" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__nanoid__3.3.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "nanoid", + "version": "3.3.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "url": "https://registry.npmjs.org/nanoid/-/nanoid-3.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": false + } + }, + "npm__nanoid__3.3.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "nanoid", + "version": "3.3.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "url": "https://registry.npmjs.org/nanoid/-/nanoid-3.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": false + } + }, + "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": false + } + }, + "npm__at_babel_helper-create-class-features-plugin__7.22.15__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-create-class-features-plugin", + "version": "7.22.15_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-function-name": "7.23.0", + "@babel/helper-member-expression-to-functions": "7.23.0", + "@babel/helper-optimise-call-expression": "7.22.5", + "@babel/helper-replace-supers": "7.22.20_at_babel_core_7.23.0", + "@babel/helper-skip-transparent-expression-wrappers": "7.22.5", + "@babel/helper-split-export-declaration": "7.22.6", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.0" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.0" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-flow__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-flow", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-flow": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_babel-helper-vue-transform-on__1.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/babel-helper-vue-transform-on", + "version": "1.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==", + "url": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-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": false + } + }, + "npm__normalize-package-data__2.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "normalize-package-data", + "version": "2.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "hosted-git-info": "2.8.9", + "resolve": "1.22.6", + "semver": "5.7.2", + "validate-npm-package-license": "3.0.4" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "hosted-git-info": [ + "2.8.9" + ], + "is-core-module": [ + "2.13.0" + ], + "normalize-package-data": [ + "2.5.0" + ], + "path-parse": [ + "1.0.7" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "5.7.2" + ], + "spdx-correct": [ + "3.2.0" + ], + "spdx-exceptions": [ + "2.3.0" + ], + "spdx-expression-parse": [ + "3.0.1" + ], + "spdx-license-ids": [ + "3.0.15" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "validate-npm-package-license": [ + "3.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__write-file-atomic__4.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "write-file-atomic", + "version": "4.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "url": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-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": false + } + }, + "npm__at_volar_language-core__1.0.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@volar/language-core", + "version": "1.0.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@volar/source-map": "1.0.9", + "@vue/reactivity": "3.3.4", + "muggle-string": "0.1.0" + }, + "transitive_closure": { + "@volar/language-core": [ + "1.0.9" + ], + "@volar/source-map": [ + "1.0.9" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "muggle-string": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-runner__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-runner", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/console": "29.7.0", + "@jest/environment": "29.7.0", + "@jest/test-result": "29.7.0", + "@jest/transform": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "chalk": "4.1.2", + "emittery": "0.13.1", + "graceful-fs": "4.2.11", + "jest-docblock": "29.7.0", + "jest-environment-node": "29.7.0", + "jest-haste-map": "29.7.0", + "jest-leak-detector": "29.7.0", + "jest-message-util": "29.7.0", + "jest-resolve": "29.7.0", + "jest-runtime": "29.7.0", + "jest-util": "29.7.0", + "jest-watcher": "29.7.0", + "jest-worker": "29.7.0", + "p-limit": "3.1.0", + "source-map-support": "0.5.13" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/globals": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/source-map": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-escapes": [ + "4.3.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "buffer-from": [ + "1.1.2" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "5.3.1", + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "char-regex": [ + "1.0.2" + ], + "ci-info": [ + "3.8.0" + ], + "cjs-module-lexer": [ + "1.2.3" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "detect-newline": [ + "3.1.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "emittery": [ + "0.13.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-core-module": [ + "2.13.0" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-docblock": [ + "29.7.0" + ], + "jest-environment-node": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-leak-detector": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-runner": [ + "29.7.0" + ], + "jest-runtime": [ + "29.7.0" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-watcher": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "leven": [ + "3.1.0" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0", + "3.1.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "5.0.0" + ], + "resolve.exports": [ + "2.0.2" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.13" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "string-length": [ + "4.0.2" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-detect": [ + "4.0.8" + ], + "type-fest": [ + "0.21.3" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__import-local__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "import-local", + "version": "3.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "pkg-dir": "4.2.0", + "resolve-cwd": "3.0.0" + }, + "transitive_closure": { + "find-up": [ + "4.1.0" + ], + "import-local": [ + "3.1.0" + ], + "locate-path": [ + "5.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "pkg-dir": [ + "4.2.0" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_bcoe_v8-coverage__0.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@bcoe/v8-coverage", + "version": "0.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "url": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__clean-css__5.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "clean-css", + "version": "5.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "source-map": "0.6.1" + }, + "transitive_closure": { + "clean-css": [ + "5.3.2" + ], + "source-map": [ + "0.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-generator-function__1.0.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-generator-function", + "version": "1.0.10", + "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-generator-function": [ + "1.0.10" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__requires-port__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "requires-port", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "requires-port": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_babel-helper-vue-transform-on__1.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/babel-helper-vue-transform-on", + "version": "1.1.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@vue/babel-helper-vue-transform-on": [ + "1.1.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_babel__traverse__7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/babel__traverse", + "version": "7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==", + "url": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-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": false + } + }, + "npm__at_rollup_rollup-linux-x64-musl__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-linux-x64-musl", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RkJVNVRM+piYy87HrKmhbexCHg3A6Z6MU0W9GHnJwBQNBeyhCJG9KDce4SAMdicQnpURggSvtbGo9xAWOfSvIQ==", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.6.1.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": false + } + }, + "npm__memorystream__0.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "memorystream", + "version": "0.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "url": "https://registry.npmjs.org/memorystream/-/memorystream-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": false + } + }, + "npm__at_esbuild_android-arm__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/android-arm", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_environment__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/environment", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/fake-timers": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "jest-mock": "29.7.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.8.0" + ], + "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.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "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" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-preset__8.1.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-preset", + "version": "8.1.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", + "url": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-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": false + } + }, + "npm__at_humanwhocodes_config-array__0.11.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@humanwhocodes/config-array", + "version": "0.11.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "url": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__collect-v8-coverage__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "collect-v8-coverage", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "collect-v8-coverage": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__p-limit__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-limit", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", + "url": "https://registry.npmjs.org/p-limit/-/p-limit-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": false + } + }, + "npm__es-set-tostringtag__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-set-tostringtag", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-intrinsic": "1.2.1", + "has": "1.0.3", + "has-tostringtag": "1.0.0" + }, + "transitive_closure": { + "es-set-tostringtag": [ + "2.0.1" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-win32-arm64-msvc__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-win32-arm64-msvc", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wRE9rkp7I+/3Jf2T9PFIJOKq3adMWYEFkPOA7XAkUfYbQHlDJm/U5cVCWUsKByyQq5RThwufI91sgd19MfxRxg==", + "url": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.5.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": false + } + }, + "npm__merge-stream__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "merge-stream", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "merge-stream": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_shared__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/shared", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@vue/shared": [ + "3.3.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "object-inspect": [ + "1.12.3" + ], + "qs": [ + "6.11.0" + ], + "side-channel": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-dotall-regex__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-dotall-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-regexp-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-dotall-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-runtime__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-runtime", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/environment": "29.7.0", + "@jest/fake-timers": "29.7.0", + "@jest/globals": "29.7.0", + "@jest/source-map": "29.6.3", + "@jest/test-result": "29.7.0", + "@jest/transform": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "chalk": "4.1.2", + "cjs-module-lexer": "1.2.3", + "collect-v8-coverage": "1.0.2", + "glob": "7.2.3", + "graceful-fs": "4.2.11", + "jest-haste-map": "29.7.0", + "jest-message-util": "29.7.0", + "jest-mock": "29.7.0", + "jest-regex-util": "29.6.3", + "jest-resolve": "29.7.0", + "jest-snapshot": "29.7.0", + "jest-util": "29.7.0", + "slash": "3.0.0", + "strip-bom": "4.0.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/globals": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/source-map": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "5.3.1", + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "cjs-module-lexer": [ + "1.2.3" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-core-module": [ + "2.13.0" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-runtime": [ + "29.7.0" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "leven": [ + "3.1.0" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "5.0.0" + ], + "resolve.exports": [ + "2.0.2" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "strip-bom": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_types__5.62.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/types", + "version": "5.62.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "url": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.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": false + } + }, + "npm__stackback__0.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "stackback", + "version": "0.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "url": "https://registry.npmjs.org/stackback/-/stackback-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": false + } + }, + "npm__ipaddr.js__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ipaddr.js", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "url": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-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": false + } + }, + "npm__source-map__0.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map", + "version": "0.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "url": "https://registry.npmjs.org/source-map/-/source-map-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": false + } + }, + "npm__at_swc_core-win32-arm64-msvc__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-win32-arm64-msvc", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PwLADZN6F9cXn4Jw52FeP/MCLVHm8vwouZZSOoOScDtihjY495SSjdPnlosMaRSR4wJQssGwiD/4MbpgQPqbAw==", + "url": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.100.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": false + } + }, + "npm__browserslist__4.22.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "browserslist", + "version": "4.22.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "caniuse-lite": "1.0.30001542", + "electron-to-chromium": "1.4.539", + "node-releases": "2.0.13", + "update-browserslist-db": "1.0.13_browserslist_4.22.1" + }, + "transitive_closure": { + "browserslist": [ + "4.22.1" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "escalade": [ + "3.1.1" + ], + "node-releases": [ + "2.0.13" + ], + "picocolors": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__path-type__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-type", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "url": "https://registry.npmjs.org/path-type/-/path-type-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": false + } + }, + "npm__semver__5.7.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "semver", + "version": "5.7.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "semver": [ + "5.7.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__typed-array-length__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typed-array-length", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "url": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-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": false + } + }, + "npm__loupe__2.3.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "loupe", + "version": "2.3.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", + "url": "https://registry.npmjs.org/loupe/-/loupe-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": false + } + }, + "npm__at_sveltejs_kit__2.5.3__5236015": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sveltejs/kit", + "version": "2.5.3_5236015", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@sveltejs/kit" + ] + }, + "integrity": "sha512-s6x7HBn/Fp+UNvyhJohjIA0FcJ+BWHGUDQ4PCg1D0EboUlvbimJQYchINu8G6sspLXYmlcsuNsp8bbcrRk85iw==", + "url": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.3.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": false + } + }, + "npm__damerau-levenshtein__1.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "damerau-levenshtein", + "version": "1.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "url": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.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": false + } + }, + "npm__at_istanbuljs_schema__0.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@istanbuljs/schema", + "version": "0.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@istanbuljs/schema": [ + "0.1.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-block-scoping__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-block-scoping", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escape-string-regexp": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-named-capturing-groups-regex__7.22.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-named-capturing-groups-regex", + "version": "7.22.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-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": false + } + }, + "npm__at_jridgewell_sourcemap-codec__1.4.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/sourcemap-codec", + "version": "1.4.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "url": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.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": false + } + }, + "npm__snake-case__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "snake-case", + "version": "3.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "dot-case": "3.0.4", + "tslib": "2.6.2" + }, + "transitive_closure": { + "dot-case": [ + "3.0.4" + ], + "lower-case": [ + "2.0.2" + ], + "no-case": [ + "3.0.4" + ], + "snake-case": [ + "3.0.4" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_freebsd-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/freebsd-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/freebsd-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cssom__0.3.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cssom", + "version": "0.3.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "url": "https://registry.npmjs.org/cssom/-/cssom-0.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webpack-dev-middleware__5.3.3__webpack_5.89.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "webpack-dev-middleware", + "version": "5.3.3_webpack_5.89.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "url": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-linux-arm64-musl__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-linux-arm64-musl", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-linux-arm64-musl": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__entities__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "entities", + "version": "2.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "entities": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string.prototype.trimend__1.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.trimend", + "version": "1.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "url": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-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": false + } + }, + "npm__hpack.js__2.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "hpack.js", + "version": "2.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "inherits": "2.0.4", + "obuf": "1.1.2", + "readable-stream": "2.3.8", + "wbuf": "1.7.3" + }, + "transitive_closure": { + "core-util-is": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "inherits": [ + "2.0.4" + ], + "isarray": [ + "1.0.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "obuf": [ + "1.1.2" + ], + "process-nextick-args": [ + "2.0.1" + ], + "readable-stream": [ + "2.3.8" + ], + "safe-buffer": [ + "5.1.2" + ], + "string_decoder": [ + "1.1.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "wbuf": [ + "1.7.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-add-jsx-attribute__8.0.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-add-jsx-attribute", + "version": "8.0.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-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": false + } + }, + "npm__at_typescript-eslint_parser__7.2.0__2014925157": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "7.2.0_2014925157", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@typescript-eslint/parser" + ] + }, + "integrity": "sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==", + "url": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-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": false + } + }, + "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": false + } + }, + "npm__totalist__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "totalist", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "totalist": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-logical-assignment-operators__7.10.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-logical-assignment-operators", + "version": "7.10.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.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": false + } + }, + "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.2.1" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-worker__27.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-worker", + "version": "27.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "url": "https://registry.npmjs.org/jest-worker/-/jest-worker-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": false + } + }, + "npm__at_vue_shared__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/shared", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", + "url": "https://registry.npmjs.org/@vue/shared/-/shared-3.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": false + } + }, + "npm__eventemitter3__4.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eventemitter3", + "version": "4.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "eventemitter3": [ + "4.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__typescript__4.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "typescript", + "version": "4.9.3", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "typescript" + ], + "react": [ + "typescript" + ], + "vue": [ + "typescript" + ] + }, + "deps": {}, + "transitive_closure": { + "typescript": [ + "4.9.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__js-yaml__3.14.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "js-yaml", + "version": "3.14.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "argparse": "1.0.10", + "esprima": "4.0.1" + }, + "transitive_closure": { + "argparse": [ + "1.0.10" + ], + "esprima": [ + "4.0.1" + ], + "js-yaml": [ + "3.14.1" + ], + "sprintf-js": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__vite__3.2.8__at_types_node_18.19.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite", + "version": "3.2.8_at_types_node_18.19.18", + "dev": true, + "root_package": "", + "link_packages": { + "vue": [ + "vite" + ] + }, + "deps": { + "fsevents": "2.3.3", + "@types/node": "18.19.18", + "esbuild": "0.15.18", + "postcss": "8.4.32", + "resolve": "1.22.6", + "rollup": "2.79.1" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "@types/node": [ + "18.19.18" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ], + "nanoid": [ + "3.3.7" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "resolve": [ + "1.22.6" + ], + "rollup": [ + "2.79.1" + ], + "source-map-js": [ + "1.0.2" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "undici-types": [ + "5.26.5" + ], + "vite": [ + "3.2.8_at_types_node_18.19.18" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-async-generators__7.8.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-async-generators", + "version": "7.8.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-async-generators__7.8.4__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-async-generators", + "version": "7.8.4_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.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": false + } + }, + "npm__at_babel_plugin-transform-spread__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-spread", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-spread": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__bytes__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "bytes", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "url": "https://registry.npmjs.org/bytes/-/bytes-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": false + } + }, + "npm__tinyspy__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tinyspy", + "version": "2.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tinyspy": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__default-gateway__6.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "default-gateway", + "version": "6.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "url": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.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": false + } + }, + "npm__at_babel_plugin-syntax-logical-assignment-operators__7.10.4__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-logical-assignment-operators", + "version": "7.10.4_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.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": false + } + }, + "npm__babel-plugin-polyfill-corejs3__0.8.6__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-polyfill-corejs3", + "version": "0.8.6_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", + "url": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.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": false + } + }, + "npm__at_typescript-eslint_typescript-estree__5.62.0__typescript_4.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/typescript-estree", + "version": "5.62.0_typescript_4.9.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "4.3.4", + "globby": "11.1.0", + "is-glob": "4.0.3", + "semver": "7.5.4", + "tsutils": "3.21.0_typescript_4.9.3", + "typescript": "4.9.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.62.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.62.0_typescript_4.9.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.62.0" + ], + "array-union": [ + "2.1.0" + ], + "braces": [ + "3.0.2" + ], + "debug": [ + "4.3.4" + ], + "dir-glob": [ + "3.0.1" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "fast-glob": [ + "3.3.1" + ], + "fastq": [ + "1.15.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" + ], + "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" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "typescript": [ + "4.9.3" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ansi-html-community__0.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-html-community", + "version": "0.0.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ansi-html-community": [ + "0.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-react__7.33.2__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-react", + "version": "7.33.2_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "url": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.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": false + } + }, + "npm__at_typescript-eslint_parser__5.44.0__1986444992__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "5.44.0_1986444992", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "@typescript-eslint/parser" + ] + }, + "deps": { + "@typescript-eslint/scope-manager": "5.44.0", + "@typescript-eslint/types": "5.44.0", + "@typescript-eslint/typescript-estree": "5.44.0_typescript_4.9.3", + "debug": "4.3.4", + "eslint": "8.57.0", + "typescript": "4.9.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@typescript-eslint/parser": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-android-arm-eabi__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-android-arm-eabi", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0WQ0ouLejaUCRsL93GD4uft3rOmB8qoQMU05Kb8CmMtMBe7XUDLAltxVZI1q6byNqEtU7N1ZX1Vw5lIpgulLQA==", + "url": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.6.1.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": false + } + }, + "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": false + } + }, + "npm__stackback__0.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "stackback", + "version": "0.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "stackback": [ + "0.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-react-hooks__4.6.0__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-react-hooks", + "version": "4.6.0_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "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.10.0" + ], + "@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" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-react-hooks": [ + "4.6.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-plugin-jest-hoist__29.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-jest-hoist", + "version": "29.6.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/template": "7.22.15", + "@babel/types": "7.23.5", + "@types/babel__core": "7.20.2", + "@types/babel__traverse": "7.20.2" + }, + "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.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/types": [ + "7.23.5" + ], + "@types/babel__core": [ + "7.20.2" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-jest-hoist": [ + "29.6.3" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__jest-validate__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-validate", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "29.6.3", + "camelcase": "6.3.0", + "chalk": "4.1.2", + "jest-get-type": "29.6.3", + "leven": "3.1.0", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0", + "5.2.0" + ], + "camelcase": [ + "6.3.0" + ], + "chalk": [ + "4.1.2" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "has-flag": [ + "4.0.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-validate": [ + "29.7.0" + ], + "leven": [ + "3.1.0" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "supports-color": [ + "7.2.0" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-darwin-x64__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-darwin-x64", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-darwin-x64": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_eslint_js__8.55.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint/js", + "version": "8.55.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==", + "url": "https://registry.npmjs.org/@eslint/js/-/js-8.55.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": false + } + }, + "npm__jest-config__29.7.0__at_types_node_18.19.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-config", + "version": "29.7.0_at_types_node_18.19.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@jest/test-sequencer": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "babel-jest": "29.7.0_at_babel_core_7.23.0", + "chalk": "4.1.2", + "ci-info": "3.8.0", + "deepmerge": "4.3.1", + "glob": "7.2.3", + "graceful-fs": "4.2.11", + "jest-circus": "29.7.0", + "jest-environment-node": "29.7.0", + "jest-get-type": "29.6.3", + "jest-regex-util": "29.6.3", + "jest-resolve": "29.7.0", + "jest-runner": "29.7.0", + "jest-util": "29.7.0", + "jest-validate": "29.7.0", + "micromatch": "4.0.5", + "parse-json": "5.2.0", + "pretty-format": "29.7.0", + "slash": "3.0.0", + "strip-json-comments": "3.1.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0", + "7.23.5" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0", + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1", + "7.23.5" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.0", + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.0", + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.0", + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/globals": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/source-map": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/test-sequencer": [ + "29.7.0" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/babel__core": [ + "7.20.2" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-escapes": [ + "4.3.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-jest": [ + "29.7.0_at_babel_core_7.23.0" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-plugin-jest-hoist": [ + "29.6.3" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.0", + "1.0.1_at_babel_core_7.23.5" + ], + "babel-preset-jest": [ + "29.6.3_at_babel_core_7.23.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "buffer-from": [ + "1.1.2" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "5.3.1", + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "char-regex": [ + "1.0.2" + ], + "ci-info": [ + "3.8.0" + ], + "cjs-module-lexer": [ + "1.2.3" + ], + "co": [ + "4.6.0" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "dedent": [ + "1.5.1" + ], + "deepmerge": [ + "4.3.1" + ], + "detect-newline": [ + "3.1.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "emittery": [ + "0.13.1" + ], + "error-ex": [ + "1.3.2" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.13.0" + ], + "is-generator-fn": [ + "2.1.0" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-circus": [ + "29.7.0" + ], + "jest-config": [ + "29.7.0_at_types_node_18.19.18" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-docblock": [ + "29.7.0" + ], + "jest-each": [ + "29.7.0" + ], + "jest-environment-node": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-leak-detector": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-runner": [ + "29.7.0" + ], + "jest-runtime": [ + "29.7.0" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-watcher": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "leven": [ + "3.1.0" + ], + "lines-and-columns": [ + "1.2.4" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0", + "3.1.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "parse-json": [ + "5.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "pure-rand": [ + "6.0.4" + ], + "react-is": [ + "18.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "5.0.0" + ], + "resolve.exports": [ + "2.0.2" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.13" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "string-length": [ + "4.0.2" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "4.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-detect": [ + "4.0.8" + ], + "type-fest": [ + "0.21.3" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__querystringify__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "querystringify", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "url": "https://registry.npmjs.org/querystringify/-/querystringify-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": false + } + }, + "npm__validate-npm-package-license__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "validate-npm-package-license", + "version": "3.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "spdx-correct": "3.2.0", + "spdx-expression-parse": "3.0.1" + }, + "transitive_closure": { + "spdx-correct": [ + "3.2.0" + ], + "spdx-exceptions": [ + "2.3.0" + ], + "spdx-expression-parse": [ + "3.0.1" + ], + "spdx-license-ids": [ + "3.0.15" + ], + "validate-npm-package-license": [ + "3.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-react-jsx__7.23.4__at_babel_core_7.23.5__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.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@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.23.5", + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__de-indent__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "de-indent", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "de-indent": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__source-map-url__0.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map-url", + "version": "0.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "url": "https://registry.npmjs.org/source-map-url/-/source-map-url-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": false + } + }, + "npm__escodegen__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "escodegen", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "url": "https://registry.npmjs.org/escodegen/-/escodegen-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sveltejs_vite-plugin-svelte__3.0.2__-1934338050": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sveltejs/vite-plugin-svelte", + "version": "3.0.2_-1934338050", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@sveltejs/vite-plugin-svelte" + ] + }, + "integrity": "sha512-MpmF/cju2HqUls50WyTHQBZUV3ovV/Uk8k66AN2gwHogNAG8wnW8xtZDhzNBsFJJuvmq1qnzA5kE7YfMJNFv2Q==", + "url": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-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": false + } + }, + "npm__array-flatten__2.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array-flatten", + "version": "2.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "url": "https://registry.npmjs.org/array-flatten/-/array-flatten-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-react-jsx__7.23.4__at_babel_core_7.23.5": { + "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.23.5", + "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": false + } + }, + "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": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "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": false + } + }, + "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": false + } + }, + "npm__eslint-plugin-flowtype__8.0.3__-1935217645__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-flowtype", + "version": "8.0.3_-1935217645", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/plugin-syntax-flow": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-react-jsx": "7.23.4_at_babel_core_7.23.5", + "eslint": "8.57.0", + "lodash": "4.17.21", + "string-natural-compare": "3.0.1" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-flow": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@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": [ + "3.2.1", + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "browserslist": [ + "4.22.2" + ], + "callsites": [ + "3.1.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-flowtype": [ + "8.0.3_-1935217645" + ], + "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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "11.12.0", + "13.22.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "3.0.0", + "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-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "jsesc": [ + "2.5.2" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "2.2.3" + ], + "keyv": [ + "4.5.3" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash": [ + "4.17.21" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "5.1.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "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" + ], + "picocolors": [ + "1.0.0" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.3.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": [ + "6.3.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "string-natural-compare": [ + "3.0.1" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "text-table": [ + "0.2.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "3.1.1" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__on-headers__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "on-headers", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "on-headers": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__boolbase__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "boolbase", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "boolbase": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__object.values__1.1.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.values", + "version": "1.1.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "url": "https://registry.npmjs.org/object.values/-/object.values-1.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": false + } + }, + "npm__object.entries__1.1.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.entries", + "version": "1.1.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "url": "https://registry.npmjs.org/object.entries/-/object.entries-1.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": false + } + }, + "npm__eslint-module-utils__2.8.0__-993259024__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-module-utils", + "version": "2.8.0_-993259024", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "3.2.7", + "eslint": "8.28.0", + "eslint-import-resolver-node": "0.3.9" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "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": [ + "3.2.7", + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-module-utils": [ + "2.8.0_-993259024" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "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.13.0" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-path-inside": [ + "3.0.3" + ], + "isexe": [ + "2.0.0" + ], + "js-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "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" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.6" + ], + "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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__iterator.prototype__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "iterator.prototype", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "define-properties": "1.2.1", + "get-intrinsic": "1.2.1", + "has-symbols": "1.0.3", + "reflect.getprototypeof": "1.0.4", + "set-function-name": "2.0.1" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-map": [ + "2.0.2" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "iterator.prototype": [ + "1.1.2" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "reflect.getprototypeof": [ + "1.0.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-function-name__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-function-name", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-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": false + } + }, + "npm__at_types_serve-static__1.15.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/serve-static", + "version": "1.15.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/http-errors": "2.0.2", + "@types/mime": "3.0.2", + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/http-errors": [ + "2.0.2" + ], + "@types/mime": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/serve-static": [ + "1.15.3" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-even__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-even", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "is-even" + ] + }, + "integrity": "sha512-LEhnkAdJqic4Dbqn58A0y52IXoHWlsueqQkKfMfdEnIYG8A1sm/GHidKkS6yvXlMoRrkM34csHnXQtOqcb+Jzg==", + "url": "https://registry.npmjs.org/is-even/-/is-even-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": false + } + }, + "npm__at_esbuild_sunos-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/sunos-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==", + "url": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.8.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": false + } + }, + "npm__jest-snapshot__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-snapshot", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/generator": "7.23.5", + "@babel/plugin-syntax-jsx": "7.22.5_at_babel_core_7.23.5", + "@babel/plugin-syntax-typescript": "7.22.5_at_babel_core_7.23.5", + "@babel/types": "7.23.5", + "@jest/expect-utils": "29.7.0", + "@jest/transform": "29.7.0", + "@jest/types": "29.6.3", + "babel-preset-current-node-syntax": "1.0.1_at_babel_core_7.23.5", + "chalk": "4.1.2", + "expect": "29.7.0", + "graceful-fs": "4.2.11", + "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", + "natural-compare": "1.4.0", + "pretty-format": "29.7.0", + "semver": "7.5.4" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-transform-react-native-svg__8.1.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-transform-react-native-svg", + "version": "8.1.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-transform-react-native-svg": [ + "8.1.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_qs__6.9.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/qs", + "version": "6.9.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/qs": [ + "6.9.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-regex-util__29.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-regex-util", + "version": "29.6.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "jest-regex-util": [ + "29.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_playwright_test__1.42.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@playwright/test", + "version": "1.42.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@playwright/test" + ] + }, + "integrity": "sha512-Gq9rmS54mjBL/7/MvBaNOBwbfnh7beHvS6oS4srqXFcQHpQCV1+c8JXWE8VLPyRDhgS3H8x8A7hztqI9VnwrAQ==", + "url": "https://registry.npmjs.org/@playwright/test/-/test-1.42.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": false + } + }, + "npm__at_testing-library_dom__8.20.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@testing-library/dom", + "version": "8.20.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.22.13", + "@babel/runtime": "7.23.1", + "@types/aria-query": "5.0.2", + "aria-query": "5.1.3", + "chalk": "4.1.2", + "dom-accessibility-api": "0.5.16", + "lz-string": "1.5.0", + "pretty-format": "27.5.1" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.22.13" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.22.20" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@testing-library/dom": [ + "8.20.1" + ], + "@types/aria-query": [ + "5.0.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "aria-query": [ + "5.1.3" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "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.2.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dom-accessibility-api": [ + "0.5.16" + ], + "es-get-iterator": [ + "1.1.3" + ], + "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.2.1" + ], + "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-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-arguments": [ + "1.1.1" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "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.3" + ], + "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.5.1" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "stop-iteration-iterator": [ + "1.0.0" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__clean-css__5.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "clean-css", + "version": "5.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "url": "https://registry.npmjs.org/clean-css/-/clean-css-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": false + } + }, + "npm__at_types_range-parser__1.2.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/range-parser", + "version": "1.2.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA==", + "url": "https://registry.npmjs.org/@types/range-parser/-/range-parser-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": false + } + }, + "npm__at_vue_reactivity-transform__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/reactivity-transform", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==", + "url": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__vue-template-compiler__2.7.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vue-template-compiler", + "version": "2.7.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==", + "url": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.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": false + } + }, + "npm__cssstyle__2.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cssstyle", + "version": "2.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "url": "https://registry.npmjs.org/cssstyle/-/cssstyle-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": false + } + }, + "npm__esbuild__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==", + "url": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.8.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": false + } + }, + "npm__at_typescript-eslint_scope-manager__7.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/scope-manager", + "version": "7.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", + "url": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-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": false + } + }, + "npm__at_vitest_expect__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/expect", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vitest/spy": "1.3.1", + "@vitest/utils": "1.3.1", + "chai": "4.3.10" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/estree": [ + "1.0.2" + ], + "@vitest/expect": [ + "1.3.1" + ], + "@vitest/spy": [ + "1.3.1" + ], + "@vitest/utils": [ + "1.3.1" + ], + "ansi-styles": [ + "5.2.0" + ], + "assertion-error": [ + "1.1.0" + ], + "chai": [ + "4.3.10" + ], + "check-error": [ + "1.0.3" + ], + "deep-eql": [ + "4.1.3" + ], + "diff-sequences": [ + "29.6.3" + ], + "estree-walker": [ + "3.0.3" + ], + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ], + "pathval": [ + "1.1.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "tinyspy": [ + "2.2.0" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_wasm-edit__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/wasm-edit", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "url": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.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": false + } + }, + "npm__v8-to-istanbul__9.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "v8-to-istanbul", + "version": "9.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "url": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-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": false + } + }, + "npm__at_typescript-eslint_parser__7.2.0__2014925157__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "7.2.0_2014925157", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@typescript-eslint/parser" + ] + }, + "deps": { + "@typescript-eslint/scope-manager": "7.2.0", + "@typescript-eslint/types": "7.2.0", + "@typescript-eslint/typescript-estree": "7.2.0_typescript_5.4.2", + "@typescript-eslint/visitor-keys": "7.2.0", + "debug": "4.3.4", + "eslint": "8.57.0", + "typescript": "5.4.2" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@typescript-eslint/parser": [ + "7.2.0_2014925157" + ], + "@typescript-eslint/scope-manager": [ + "7.2.0" + ], + "@typescript-eslint/types": [ + "7.2.0" + ], + "@typescript-eslint/typescript-estree": [ + "7.2.0_typescript_5.4.2" + ], + "@typescript-eslint/visitor-keys": [ + "7.2.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", + "2.0.1" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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", + "9.0.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "ts-api-utils": [ + "1.3.0_typescript_5.4.2" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.4.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_react__18.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react", + "version": "18.2.0", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "@types/react" + ] + }, + "deps": { + "@types/prop-types": "15.7.8", + "@types/scheduler": "0.16.4", + "csstype": "3.1.2" + }, + "transitive_closure": { + "@types/prop-types": [ + "15.7.8" + ], + "@types/react": [ + "18.2.0" + ], + "@types/scheduler": [ + "0.16.4" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vue__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vue", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": { + "vue": [ + "vue" + ] + }, + "deps": { + "@vue/compiler-dom": "3.2.45", + "@vue/compiler-sfc": "3.2.45", + "@vue/runtime-dom": "3.2.45", + "@vue/server-renderer": "3.2.45_vue_3.2.45", + "@vue/shared": "3.2.45" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/compiler-sfc": [ + "3.2.45" + ], + "@vue/compiler-ssr": [ + "3.2.45" + ], + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/reactivity-transform": [ + "3.2.45" + ], + "@vue/runtime-core": [ + "3.2.45" + ], + "@vue/runtime-dom": [ + "3.2.45" + ], + "@vue/server-renderer": [ + "3.2.45_vue_3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "csstype": [ + "2.6.21" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.25.9" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "source-map": [ + "0.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vue": [ + "3.2.45" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esprima__4.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esprima", + "version": "4.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "url": "https://registry.npmjs.org/esprima/-/esprima-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": false + } + }, + "npm__at_webpack-cli_info__2.0.2__-360275163": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webpack-cli/info", + "version": "2.0.2_-360275163", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "url": "https://registry.npmjs.org/@webpack-cli/info/-/info-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_console__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/console", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "url": "https://registry.npmjs.org/@jest/console/-/console-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": false + } + }, + "npm__at_babel_plugin-syntax-json-strings__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-json-strings", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/parse-json": "4.0.2", + "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.2" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-loong64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-loong64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==", + "url": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.8.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": false + } + }, + "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": false + } + }, + "npm__regexp.prototype.flags__1.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regexp.prototype.flags", + "version": "1.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "url": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-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": false + } + }, + "npm__at_babel_plugin-syntax-private-property-in-object__7.14.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-private-property-in-object", + "version": "7.14.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-private-property-in-object": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_express-serve-static-core__4.17.37__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/express-serve-static-core", + "version": "4.17.37", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18", + "@types/qs": "6.9.8", + "@types/range-parser": "1.2.5", + "@types/send": "0.17.2" + }, + "transitive_closure": { + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/mime": [ + "1.3.3" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/send": [ + "0.17.2" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__deep-eql__4.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "deep-eql", + "version": "4.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "url": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.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": false + } + }, + "npm__at_babel_plugin-syntax-numeric-separator__7.10.4__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-numeric-separator", + "version": "7.10.4_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": { + "sveltekit_ts": [ + "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": false + } + }, + "npm__jest-resolve__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-resolve", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "url": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-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": false + } + }, + "npm__whatwg-mimetype__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "whatwg-mimetype", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "whatwg-mimetype": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esrap__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esrap", + "version": "1.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/sourcemap-codec": "1.4.15", + "@types/estree": "1.0.5" + }, + "transitive_closure": { + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@types/estree": [ + "1.0.5" + ], + "esrap": [ + "1.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-sticky-regex__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-sticky-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-sticky-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "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": false + } + }, + "npm__is-plain-object__2.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-plain-object", + "version": "2.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "isobject": "3.0.1" + }, + "transitive_closure": { + "is-plain-object": [ + "2.0.4" + ], + "isobject": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-linux-arm-gnueabihf__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-linux-arm-gnueabihf", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-linux-arm-gnueabihf": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-darwin-x64__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-darwin-x64", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-react-display-name__7.23.3__at_babel_core_7.23.5__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.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-react-display-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_helper-module-transforms__7.23.0__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-module-transforms", + "version": "7.23.0_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", + "url": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-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": false + } + }, + "npm__whatwg-url__11.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "whatwg-url", + "version": "11.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "url": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-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": false + } + }, + "npm__whatwg-mimetype__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "whatwg-mimetype", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "url": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-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": false + } + }, + "npm__at_babel_plugin-transform-reserved-words__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-reserved-words", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-reserved-words": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-utils__3.0.0__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-utils", + "version": "3.0.0_eslint_8.57.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": false + } + }, + "npm__caniuse-lite__1.0.30001566": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "caniuse-lite", + "version": "1.0.30001566", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==", + "url": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", + "commit": "", + "patch_args": [], + "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__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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-destructuring__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-destructuring", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-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": false + } + }, + "npm__sade__1.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sade", + "version": "1.8.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "mri": "1.2.0" + }, + "transitive_closure": { + "mri": [ + "1.2.0" + ], + "sade": [ + "1.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__json-schema-traverse__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json-schema-traverse", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "json-schema-traverse": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__html-entities__2.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "html-entities", + "version": "2.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "url": "https://registry.npmjs.org/html-entities/-/html-entities-2.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": false + } + }, + "npm__dom-accessibility-api__0.5.16": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dom-accessibility-api", + "version": "0.5.16", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "url": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "commit": "", + "patch_args": [], + "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__at_babel_plugin-syntax-json-strings__7.8.3__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-json-strings", + "version": "7.8.3_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__is-plain-obj__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-plain-obj", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-plain-obj": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__combined-stream__1.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "combined-stream", + "version": "1.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "url": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__resolve-from__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve-from", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "url": "https://registry.npmjs.org/resolve-from/-/resolve-from-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": false + } + }, + "npm__argparse__1.0.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "argparse", + "version": "1.0.10", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "sprintf-js": "1.0.3" + }, + "transitive_closure": { + "argparse": [ + "1.0.10" + ], + "sprintf-js": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-private-property-in-object__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-private-property-in-object", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_mime__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/mime", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ==", + "url": "https://registry.npmjs.org/@types/mime/-/mime-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cssom__0.3.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cssom", + "version": "0.3.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cssom": [ + "0.3.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_utils__5.62.0__1986444992__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "5.62.0_1986444992", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@eslint-community/eslint-utils": "4.4.0_eslint_8.57.0", + "@types/json-schema": "7.0.13", + "@types/semver": "7.5.3", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0_typescript_4.9.3", + "eslint": "8.57.0", + "eslint-scope": "5.1.1", + "semver": "7.5.4" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/scope-manager": [ + "5.62.0" + ], + "@typescript-eslint/types": [ + "5.62.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.62.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.62.0_1986444992" + ], + "@typescript-eslint/visitor-keys": [ + "5.62.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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-visitor-keys": [ + "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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_reactivity-transform__3.2.37": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/reactivity-transform", + "version": "3.2.37", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==", + "url": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.37.tgz", + "commit": "", + "patch_args": [], + "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__at_typescript-eslint_types__7.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/types", + "version": "7.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==", + "url": "https://registry.npmjs.org/@typescript-eslint/types/-/types-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": false + } + }, + "npm__vue__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vue", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue/libraries/simple": [ + "vue" + ] + }, + "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "url": "https://registry.npmjs.org/vue/-/vue-3.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": false + } + }, + "npm__at_esbuild_freebsd-arm64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/freebsd-arm64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==", + "url": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.8.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": false + } + }, + "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": false + } + }, + "npm__check-error__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "check-error", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "url": "https://registry.npmjs.org/check-error/-/check-error-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": false + } + }, + "npm__at_swc_counter__0.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/counter", + "version": "0.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/counter": [ + "0.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__buffer-crc32__0.2.13__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "buffer-crc32", + "version": "0.2.13", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "buffer-crc32": [ + "0.2.13" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_hast-util-to-babel-ast__8.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/hast-util-to-babel-ast", + "version": "8.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5", + "entities": "4.5.0" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "@svgr/hast-util-to-babel-ast": [ + "8.0.0" + ], + "entities": [ + "4.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_json-schema__7.0.13__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/json-schema", + "version": "7.0.13", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/json-schema": [ + "7.0.13" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__load-json-file__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "load-json-file", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "graceful-fs": "4.2.11", + "parse-json": "4.0.0", + "pify": "3.0.0", + "strip-bom": "3.0.0" + }, + "transitive_closure": { + "error-ex": [ + "1.3.2" + ], + "graceful-fs": [ + "4.2.11" + ], + "is-arrayish": [ + "0.2.1" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "load-json-file": [ + "4.0.0" + ], + "parse-json": [ + "4.0.0" + ], + "pify": [ + "3.0.0" + ], + "strip-bom": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__punycode__2.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "punycode", + "version": "2.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "punycode": [ + "2.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_http-errors__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/http-errors", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/http-errors": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-optional-chaining__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-optional-chaining", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-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": false + } + }, + "npm__at_vue_runtime-core__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/runtime-core", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + }, + "transitive_closure": { + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/runtime-core": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.8" + }, + "transitive_closure": { + "json5": [ + "1.0.2" + ], + "minimist": [ + "1.2.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-jsx__7.22.5__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-jsx", + "version": "7.22.5_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-stream__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-stream", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "url": "https://registry.npmjs.org/is-stream/-/is-stream-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": false + } + }, + "npm__acorn-typescript__1.4.13__acorn_8.11.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn-typescript", + "version": "1.4.13_acorn_8.11.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==", + "url": "https://registry.npmjs.org/acorn-typescript/-/acorn-typescript-1.4.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": false + } + }, + "npm__rollup__2.79.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "rollup", + "version": "2.79.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "url": "https://registry.npmjs.org/rollup/-/rollup-2.79.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": false + } + }, + "npm__at_vitest_runner__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/runner", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZcHJXPT2kg/9Hc4fNkCbItlsgZSs3m4vQbxB8LCSdzpbG85bExCmSvu6K9lWpMNdoKfAr1Jn0BwS9SWUcGnbTQ==", + "url": "https://registry.npmjs.org/@vitest/runner/-/runner-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__babel-preset-jest__29.6.3__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-preset-jest", + "version": "29.6.3_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "babel-plugin-jest-hoist": "29.6.3", + "babel-preset-current-node-syntax": "1.0.1_at_babel_core_7.23.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/babel__core": [ + "7.20.2" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-jest-hoist": [ + "29.6.3" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.0" + ], + "babel-preset-jest": [ + "29.6.3_at_babel_core_7.23.0" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__grapheme-splitter__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "grapheme-splitter", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "grapheme-splitter": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-shorthand-properties__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-shorthand-properties", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-shorthand-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-async-generators__7.8.4__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-async-generators", + "version": "7.8.4_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__source-map-support__0.5.21__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map-support", + "version": "0.5.21", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "buffer-from": "1.1.2", + "source-map": "0.6.1" + }, + "transitive_closure": { + "buffer-from": [ + "1.1.2" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__caniuse-lite__1.0.30001542": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "caniuse-lite", + "version": "1.0.30001542", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UrtAXVcj1mvPBFQ4sKd38daP8dEcXXr5sQe6QNNinaPd0iA/cxg9/l3VrSdL73jgw5sKyuQ6jNgiKO12W3SsVA==", + "url": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001542.tgz", + "commit": "", + "patch_args": [], + "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__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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "convert-source-map": [ + "1.9.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_code-frame__7.22.13": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/code-frame", + "version": "7.22.13", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "url": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.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": false + } + }, + "npm__at_types_sockjs__0.3.34__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/sockjs", + "version": "0.3.34", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/node": [ + "18.19.18" + ], + "@types/sockjs": [ + "0.3.34" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_ieee754__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/ieee754", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "url": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ci-info__3.8.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ci-info", + "version": "3.8.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ci-info": [ + "3.8.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__rrweb-cssom__0.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "rrweb-cssom", + "version": "0.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==", + "url": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.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": false + } + }, + "npm__at_vitest_expect__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/expect", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vitest/spy": "1.0.2", + "@vitest/utils": "1.0.2", + "chai": "4.3.10" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@vitest/expect": [ + "1.0.2" + ], + "@vitest/spy": [ + "1.0.2" + ], + "@vitest/utils": [ + "1.0.2" + ], + "ansi-styles": [ + "5.2.0" + ], + "assertion-error": [ + "1.1.0" + ], + "chai": [ + "4.3.10" + ], + "check-error": [ + "1.0.3" + ], + "deep-eql": [ + "4.1.3" + ], + "diff-sequences": [ + "29.6.3" + ], + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ], + "pathval": [ + "1.1.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "tinyspy": [ + "2.2.0" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "isarray": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__magic-string__0.25.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "magic-string", + "version": "0.25.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "url": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.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": false + } + }, + "npm__at_next_eslint-plugin-next__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/eslint-plugin-next", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@next/eslint-plugin-next" + ] + }, + "integrity": "sha512-H9U9B1dFnCDmylDZ6/dYt95Ie1Iu+SLBMcO6rkIGIDcj5UK+DNyMiWm83xWBZ1gREM8cfp5Srv1g6wqf8pM4lw==", + "url": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.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": false + } + }, + "npm__at_svgr_hast-util-to-babel-ast__8.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/hast-util-to-babel-ast", + "version": "8.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", + "url": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-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": false + } + }, + "npm__at_typescript-eslint_eslint-plugin__7.2.0__1202521382__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/eslint-plugin", + "version": "7.2.0_1202521382", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@typescript-eslint/eslint-plugin" + ] + }, + "deps": { + "@eslint-community/regexpp": "4.10.0", + "@typescript-eslint/parser": "7.2.0_2014925157", + "@typescript-eslint/scope-manager": "7.2.0", + "@typescript-eslint/type-utils": "7.2.0_2014925157", + "@typescript-eslint/utils": "7.2.0_2014925157", + "@typescript-eslint/visitor-keys": "7.2.0", + "debug": "4.3.4", + "eslint": "8.57.0", + "graphemer": "1.4.0", + "ignore": "5.2.4", + "natural-compare": "1.4.0", + "semver": "7.5.4", + "ts-api-utils": "1.3.0_typescript_5.4.2", + "typescript": "5.4.2" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/eslint-plugin": [ + "7.2.0_1202521382" + ], + "@typescript-eslint/parser": [ + "7.2.0_2014925157" + ], + "@typescript-eslint/scope-manager": [ + "7.2.0" + ], + "@typescript-eslint/type-utils": [ + "7.2.0_2014925157" + ], + "@typescript-eslint/types": [ + "7.2.0" + ], + "@typescript-eslint/typescript-estree": [ + "7.2.0_typescript_5.4.2" + ], + "@typescript-eslint/utils": [ + "7.2.0_2014925157" + ], + "@typescript-eslint/visitor-keys": [ + "7.2.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", + "2.0.1" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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", + "9.0.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "ts-api-utils": [ + "1.3.0_typescript_5.4.2" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.4.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__events__3.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "events", + "version": "3.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "events": [ + "3.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_core__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/core", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==", + "url": "https://registry.npmjs.org/@babel/core/-/core-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": false + } + }, + "npm__sourcemap-codec__1.4.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sourcemap-codec", + "version": "1.4.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "url": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__object.groupby__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.groupby", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "get-intrinsic": "1.2.1" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.groupby": [ + "1.0.1" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tr46__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tr46", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "punycode": "2.3.1" + }, + "transitive_closure": { + "punycode": [ + "2.3.1" + ], + "tr46": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-arrayish": [ + "0.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-flow__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-flow", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-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": false + } + }, + "npm__jest-changed-files__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-changed-files", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "execa": "5.1.1", + "jest-util": "29.7.0", + "p-limit": "3.1.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "cross-spawn": [ + "7.0.3" + ], + "execa": [ + "5.1.1" + ], + "get-stream": [ + "6.0.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "4.0.0" + ], + "human-signals": [ + "2.1.0" + ], + "is-stream": [ + "2.0.1" + ], + "isexe": [ + "2.0.0" + ], + "jest-changed-files": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "merge-stream": [ + "2.0.0" + ], + "mimic-fn": [ + "2.1.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "onetime": [ + "5.1.2" + ], + "p-limit": [ + "3.1.0" + ], + "path-key": [ + "3.1.1" + ], + "picomatch": [ + "2.3.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "signal-exit": [ + "3.0.7" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "7.2.0" + ], + "undici-types": [ + "5.26.5" + ], + "which": [ + "2.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__aria-query__5.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "aria-query", + "version": "5.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "dequal": "2.0.3" + }, + "transitive_closure": { + "aria-query": [ + "5.3.0" + ], + "dequal": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-class-properties__7.12.13__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-class-properties", + "version": "7.12.13_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.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": false + } + }, + "npm__eslint-plugin-jsx-a11y__6.7.1__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-jsx-a11y", + "version": "6.7.1_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.1", + "aria-query": "5.3.0", + "array-includes": "3.1.7", + "array.prototype.flatmap": "1.3.2", + "ast-types-flow": "0.0.7", + "axe-core": "4.8.2", + "axobject-query": "3.2.1", + "damerau-levenshtein": "1.0.8", + "emoji-regex": "9.2.2", + "eslint": "8.57.0", + "has": "1.0.3", + "jsx-ast-utils": "3.3.5", + "language-tags": "1.0.5", + "minimatch": "3.1.2", + "object.entries": "1.1.7", + "object.fromentries": "2.0.7", + "semver": "6.3.1" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "aria-query": [ + "5.3.0" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "ast-types-flow": [ + "0.0.7" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "axe-core": [ + "4.8.2" + ], + "axobject-query": [ + "3.2.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" + ], + "damerau-levenshtein": [ + "1.0.8" + ], + "debug": [ + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dequal": [ + "2.0.3" + ], + "doctrine": [ + "3.0.0" + ], + "emoji-regex": [ + "9.2.2" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-jsx-a11y": [ + "6.7.1_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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "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-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "jsx-ast-utils": [ + "3.3.5" + ], + "keyv": [ + "4.5.3" + ], + "language-subtag-registry": [ + "0.3.22" + ], + "language-tags": [ + "1.0.5" + ], + "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" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.7" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_is-even__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/is-even", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@types/is-even" + ] + }, + "deps": {}, + "transitive_closure": { + "@types/is-even": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__form-data__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "form-data", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "url": "https://registry.npmjs.org/form-data/-/form-data-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": false + } + }, + "npm__postcss-load-config__3.1.4__postcss_8.4.35": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss-load-config", + "version": "3.1.4_postcss_8.4.35", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "url": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.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": false + } + }, + "npm__at_swc_helpers__0.4.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/helpers", + "version": "0.4.14", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "@swc/helpers": [ + "0.4.14" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-class-properties__7.12.13__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-class-properties", + "version": "7.12.13_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.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": false + } + }, + "npm__es-get-iterator__1.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-get-iterator", + "version": "1.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "url": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-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": false + } + }, + "npm__at_types_jest__29.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/jest", + "version": "29.2.3", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@types/jest" + ], + "react": [ + "@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.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/jest": [ + "29.2.3" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.8.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.11" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__array-buffer-byte-length__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array-buffer-byte-length", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "url": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-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": false + } + }, + "npm__at_babel_core__7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/core", + "version": "7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==", + "url": "https://registry.npmjs.org/@babel/core/-/core-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": false + } + }, + "npm__at_svgr_babel-plugin-svg-em-dimensions__8.0.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-svg-em-dimensions", + "version": "8.0.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-unicode-sets-regex__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-unicode-sets-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-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": false + } + }, + "npm__at_babel_plugin-syntax-import-assertions__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-import-assertions", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-import-assertions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__terser-webpack-plugin__5.3.9__1251614587__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "terser-webpack-plugin", + "version": "5.3.9_1251614587", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/trace-mapping": "0.3.19", + "@swc/core": "1.3.100", + "jest-worker": "27.5.1", + "schema-utils": "3.3.0", + "serialize-javascript": "6.0.1", + "terser": "5.20.0", + "webpack": "5.89.0_-1501518582" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-numeric-separator__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-numeric-separator", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-numeric-separator": "7.10.4_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-numeric-separator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webpack-merge__5.10.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "webpack-merge", + "version": "5.10.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "url": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__flat-cache__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "flat-cache", + "version": "3.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "flatted": "3.2.9", + "keyv": "4.5.3", + "rimraf": "3.0.2" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "json-buffer": [ + "3.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__fs-monkey__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fs-monkey", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fs-monkey": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__keyv__4.5.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "keyv", + "version": "4.5.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "json-buffer": "3.0.1" + }, + "transitive_closure": { + "json-buffer": [ + "3.0.1" + ], + "keyv": [ + "4.5.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-number__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-number", + "version": "3.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "kind-of": "3.2.2" + }, + "transitive_closure": { + "is-buffer": [ + "1.1.6" + ], + "is-number": [ + "3.0.0" + ], + "kind-of": [ + "3.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_esbuild_linux-loong64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-loong64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-loong64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__get-tsconfig__4.7.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-tsconfig", + "version": "4.7.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "url": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.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": false + } + }, + "npm__svelte__5.0.0-next.75": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "svelte", + "version": "5.0.0-next.75", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "svelte" + ] + }, + "integrity": "sha512-V8HAGjMxUBEP9EV3gi/YdPWFCb++fGo7GqBwKrF91NvGS87SR4yBVdNAUY9ZzvkvO0QSsBO7+QwohXEdyIezhw==", + "url": "https://registry.npmjs.org/svelte/-/svelte-5.0.0-next.75.tgz", + "commit": "", + "patch_args": [], + "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__shell-quote__1.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "shell-quote", + "version": "1.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "url": "https://registry.npmjs.org/shell-quote/-/shell-quote-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": false + } + }, + "npm__at_types_istanbul-reports__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/istanbul-reports", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/istanbul-lib-coverage": "2.0.4", + "@types/istanbul-lib-report": "3.0.1" + }, + "transitive_closure": { + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-plugin-polyfill-regenerator__0.5.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-polyfill-regenerator", + "version": "0.5.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-define-polyfill-provider": "0.4.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-polyfill-regenerator": [ + "0.5.3_at_babel_core_7.23.5" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__mkdirp__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mkdirp", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mkdirp": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_tsconfig__0.1.3__at_types_node_18.19.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/tsconfig", + "version": "0.1.3_at_types_node_18.19.18", + "dev": true, + "root_package": "", + "link_packages": { + "vue": [ + "@vue/tsconfig" + ] + }, + "deps": { + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/node": [ + "18.19.18" + ], + "@vue/tsconfig": [ + "0.1.3_at_types_node_18.19.18" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__decimal.js__10.4.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "decimal.js", + "version": "10.4.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "url": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.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": false + } + }, + "npm__swc-loader__0.2.3__1251614587__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "swc-loader", + "version": "0.2.3_1251614587", + "dev": true, + "root_package": "", + "link_packages": { + "react-webpack": [ + "swc-loader" + ] + }, + "deps": { + "@swc/core": "1.3.100", + "webpack": "5.89.0_-1501518582" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "swc-loader": [ + "0.2.3_1251614587" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__estree-walker__3.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "estree-walker", + "version": "3.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "url": "https://registry.npmjs.org/estree-walker/-/estree-walker-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": false + } + }, + "npm__vitest__1.3.1__jsdom_23.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vitest", + "version": "1.3.1_jsdom_23.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "vitest" + ] + }, + "integrity": "sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==", + "url": "https://registry.npmjs.org/vitest/-/vitest-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": false + } + }, + "npm__at_jest_test-sequencer__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/test-sequencer", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/test-result": "29.7.0", + "graceful-fs": "4.2.11", + "jest-haste-map": "29.7.0", + "slash": "3.0.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/test-sequencer": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "braces": [ + "3.0.2" + ], + "bser": [ + "2.1.1" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "collect-v8-coverage": [ + "1.0.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" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "fsevents": [ + "2.3.3" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "node-int64": [ + "0.4.0" + ], + "normalize-path": [ + "3.0.0" + ], + "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", + "8.1.1" + ], + "tmpl": [ + "1.0.5" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "walker": [ + "1.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_mime__1.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/mime", + "version": "1.3.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/mime": [ + "1.3.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-react-jsx-source__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-react-jsx-source", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-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": false + } + }, + "npm__at_swc_core-darwin-arm64__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-darwin-arm64", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XVWFsKe6ei+SsDbwmsuRkYck1SXRpO60Hioa4hoLwR8fxbA9eVp6enZtMxzVVMBi8ej5seZ4HZQeAWepbukiBw==", + "url": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.100.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": false + } + }, + "npm__is-plain-obj__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-plain-obj", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "url": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-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": false + } + }, + "npm__at_vitejs_plugin-vue__3.2.0__vite_3.2.8__vue_3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitejs/plugin-vue", + "version": "3.2.0_vite_3.2.8__vue_3.3.4", + "dev": true, + "root_package": "", + "link_packages": { + "vue/libraries/simple": [ + "@vitejs/plugin-vue" + ] + }, + "deps": { + "vite": "3.2.8_at_types_node_18.18.3", + "vue": "3.3.4" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@types/node": [ + "18.18.3" + ], + "@vitejs/plugin-vue": [ + "3.2.0_vite_3.2.8__vue_3.3.4" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-sfc": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/runtime-core": [ + "3.3.4" + ], + "@vue/runtime-dom": [ + "3.3.4" + ], + "@vue/server-renderer": [ + "3.3.4_vue_3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "csstype": [ + "3.1.2" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "estree-walker": [ + "2.0.2" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ], + "magic-string": [ + "0.30.4" + ], + "nanoid": [ + "3.3.6", + "3.3.7" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31", + "8.4.32" + ], + "resolve": [ + "1.22.6" + ], + "rollup": [ + "2.79.1" + ], + "source-map-js": [ + "1.0.2" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vite": [ + "3.2.8_at_types_node_18.18.3" + ], + "vue": [ + "3.3.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__source-map-js__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map-js", + "version": "1.0.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "source-map-js": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": { + "sveltekit_ts": [ + "tslib" + ] + }, + "deps": {}, + "transitive_closure": { + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.5" + }, + "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.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-top-level-await__7.14.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-top-level-await", + "version": "7.14.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__whatwg-encoding__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "whatwg-encoding", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "url": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-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": false + } + }, + "npm__execa__5.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "execa", + "version": "5.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "url": "https://registry.npmjs.org/execa/-/execa-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": false + } + }, + "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": false + } + }, + "npm__es-module-lexer__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-module-lexer", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==", + "url": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-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": false + } + }, + "npm__at_babel_plugin-syntax-typescript__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-typescript", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-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": false + } + }, + "npm__globrex__0.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "globrex", + "version": "0.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "globrex": [ + "0.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__whatwg-url__14.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "whatwg-url", + "version": "14.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tr46": "5.0.0", + "webidl-conversions": "7.0.0" + }, + "transitive_closure": { + "punycode": [ + "2.3.1" + ], + "tr46": [ + "5.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-url": [ + "14.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-import-resolver-typescript__3.6.1__237066510__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-import-resolver-typescript", + "version": "3.6.1_237066510", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "4.3.4", + "enhanced-resolve": "5.15.0", + "eslint": "8.28.0", + "eslint-module-utils": "2.8.0_2031701610", + "eslint-plugin-import": "2.28.1_eslint_8.28.0", + "fast-glob": "3.3.1", + "get-tsconfig": "4.7.2", + "is-core-module": "2.13.0", + "is-glob": "4.0.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.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_509062556" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.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-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.findlastindex": [ + "1.2.3" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "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": [ + "3.2.7", + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-import-resolver-typescript": [ + "3.6.1_237066510" + ], + "eslint-module-utils": [ + "2.8.0_-993259024", + "2.8.0_2031701610" + ], + "eslint-plugin-import": [ + "2.28.1_eslint_8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "get-tsconfig": [ + "4.7.2" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "globby": [ + "11.1.0" + ], + "gopd": [ + "1.0.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "js-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "keyv": [ + "4.5.3" + ], + "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.8" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.groupby": [ + "1.0.1" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "4.0.0" + ], + "resolve-pkg-maps": [ + "1.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.2" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "typescript": [ + "4.9.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": { + "sveltekit_ts": [ + "tslib" + ] + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-linux-arm64-gnu__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-linux-arm64-gnu", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9lhc4UZstsegbNLhH0Zu6TqvDfmhGzuCWtcTFXY10VjLLUe4Mr0Ye2L3rrtHaDd/J5+tFMEuo5LTCSCMXWfUKw==", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.6.1.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": false + } + }, + "npm__electron-to-chromium__1.4.539__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "electron-to-chromium", + "version": "1.4.539", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "electron-to-chromium": [ + "1.4.539" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_rollup_rollup-win32-ia32-msvc__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-win32-ia32-msvc", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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.13.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.13.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__confusing-browser-globals__1.0.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "confusing-browser-globals", + "version": "1.0.11", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "confusing-browser-globals": [ + "1.0.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-even__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-even", + "version": "1.0.0", + "dev": false, + "root_package": "", + "link_packages": { + "next.js": [ + "is-even" + ] + }, + "deps": { + "is-odd": "0.1.2" + }, + "transitive_closure": { + "is-buffer": [ + "1.1.6" + ], + "is-even": [ + "1.0.0" + ], + "is-number": [ + "3.0.0" + ], + "is-odd": [ + "0.1.2" + ], + "kind-of": [ + "3.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__renderkid__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "renderkid", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "css-select": "4.3.0", + "dom-converter": "0.2.0", + "htmlparser2": "6.1.0", + "lodash": "4.17.21", + "strip-ansi": "6.0.1" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "boolbase": [ + "1.0.0" + ], + "css-select": [ + "4.3.0" + ], + "css-what": [ + "6.1.0" + ], + "dom-converter": [ + "0.2.0" + ], + "dom-serializer": [ + "1.4.1" + ], + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ], + "domutils": [ + "2.8.0" + ], + "entities": [ + "2.2.0" + ], + "htmlparser2": [ + "6.1.0" + ], + "lodash": [ + "4.17.21" + ], + "nth-check": [ + "2.1.1" + ], + "renderkid": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "utila": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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", + "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" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__unicode-match-property-value-ecmascript__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "unicode-match-property-value-ecmascript", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "url": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-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": false + } + }, + "npm__vite__5.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite", + "version": "5.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fsevents": "2.3.3", + "esbuild": "0.19.8", + "postcss": "8.4.32", + "rollup": "4.6.1" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "esbuild": [ + "0.19.8" + ], + "fsevents": [ + "2.3.3" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "rollup": [ + "4.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "vite": [ + "5.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__typescript__5.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typescript", + "version": "5.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "typescript" + ] + }, + "integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==", + "url": "https://registry.npmjs.org/typescript/-/typescript-5.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": false + } + }, + "npm__at_babel_preset-typescript__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/preset-typescript", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-validator-option": "7.23.5", + "@babel/plugin-syntax-jsx": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-modules-commonjs": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-typescript": "7.23.5_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-commonjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-typescript": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/preset-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-async-to-generator__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-async-to-generator", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-module-imports": "7.22.15", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-remap-async-to-generator": "7.22.20_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-remap-async-to-generator": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helper-wrap-function": [ + "7.22.20" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-async-to-generator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__interpret__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "interpret", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "url": "https://registry.npmjs.org/interpret/-/interpret-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": false + } + }, + "npm__jest-watcher__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-watcher", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "url": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-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": false + } + }, + "npm__emoji-regex__9.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "emoji-regex", + "version": "9.2.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "emoji-regex": [ + "9.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__kleur__4.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "kleur", + "version": "4.1.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "kleur": [ + "4.1.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__yallist__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yallist", + "version": "3.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__v8-to-istanbul__9.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "v8-to-istanbul", + "version": "9.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/trace-mapping": "0.3.19", + "@types/istanbul-lib-coverage": "2.0.4", + "convert-source-map": "1.9.0" + }, + "transitive_closure": { + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "convert-source-map": [ + "1.9.0" + ], + "v8-to-istanbul": [ + "9.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_node__18.18.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/node", + "version": "18.18.3", + "dev": true, + "root_package": "", + "link_packages": { + "vue/libraries/simple": [ + "@types/node" + ] + }, + "deps": {}, + "transitive_closure": { + "@types/node": [ + "18.18.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint__8.28.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint", + "version": "8.28.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "eslint" + ], + "react": [ + "eslint" + ] + }, + "integrity": "sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==", + "url": "https://registry.npmjs.org/eslint/-/eslint-8.28.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": false + } + }, + "npm__commander__2.20.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "commander", + "version": "2.20.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "commander": [ + "2.20.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_scope-manager__5.62.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/scope-manager", + "version": "5.62.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "transitive_closure": { + "@typescript-eslint/scope-manager": [ + "5.62.0" + ], + "@typescript-eslint/types": [ + "5.62.0" + ], + "@typescript-eslint/visitor-keys": [ + "5.62.0" + ], + "eslint-visitor-keys": [ + "3.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pkg-dir__4.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pkg-dir", + "version": "4.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "find-up": "4.1.0" + }, + "transitive_closure": { + "find-up": [ + "4.1.0" + ], + "locate-path": [ + "5.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "pkg-dir": [ + "4.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__co__4.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "co", + "version": "4.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "co": [ + "4.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-modules-umd__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-modules-umd", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-module-transforms": "7.23.3_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-modules-umd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-mock__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-mock", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "jest-util": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "4.0.0" + ], + "jest-mock": [ + "29.7.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__interpret__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "interpret", + "version": "3.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "interpret": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_floating-point-hex-parser__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/floating-point-hex-parser", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-svg-dynamic-title__8.0.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-svg-dynamic-title", + "version": "8.0.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_preset-env__7.23.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/preset-env", + "version": "7.23.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/compat-data": "7.23.5", + "@babel/core": "7.23.5", + "@babel/helper-compilation-targets": "7.22.15", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-validator-option": "7.23.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2_at_babel_core_7.23.5", + "@babel/plugin-syntax-async-generators": "7.8.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-class-properties": "7.12.13_at_babel_core_7.23.5", + "@babel/plugin-syntax-class-static-block": "7.14.5_at_babel_core_7.23.5", + "@babel/plugin-syntax-dynamic-import": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-export-namespace-from": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-import-assertions": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-import-attributes": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-import-meta": "7.10.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-json-strings": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-logical-assignment-operators": "7.10.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-numeric-separator": "7.10.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-object-rest-spread": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-optional-catch-binding": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-optional-chaining": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-private-property-in-object": "7.14.5_at_babel_core_7.23.5", + "@babel/plugin-syntax-top-level-await": "7.14.5_at_babel_core_7.23.5", + "@babel/plugin-syntax-unicode-sets-regex": "7.18.6_at_babel_core_7.23.5", + "@babel/plugin-transform-arrow-functions": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-async-generator-functions": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-async-to-generator": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-block-scoped-functions": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-block-scoping": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-class-properties": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-class-static-block": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-classes": "7.23.5_at_babel_core_7.23.5", + "@babel/plugin-transform-computed-properties": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-destructuring": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-dotall-regex": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-duplicate-keys": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-dynamic-import": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-exponentiation-operator": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-export-namespace-from": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-for-of": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-function-name": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-json-strings": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-literals": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-logical-assignment-operators": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-member-expression-literals": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-modules-amd": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-modules-commonjs": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-modules-systemjs": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-modules-umd": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-named-capturing-groups-regex": "7.22.5_at_babel_core_7.23.5", + "@babel/plugin-transform-new-target": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-nullish-coalescing-operator": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-numeric-separator": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-object-rest-spread": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-object-super": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-optional-catch-binding": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-optional-chaining": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-parameters": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-private-methods": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-private-property-in-object": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-property-literals": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-regenerator": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-reserved-words": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-shorthand-properties": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-spread": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-sticky-regex": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-template-literals": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-typeof-symbol": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-unicode-escapes": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-unicode-property-regex": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-unicode-regex": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-unicode-sets-regex": "7.23.3_at_babel_core_7.23.5", + "@babel/preset-modules": "0.1.6-no-external-plugins_at_babel_core_7.23.5", + "babel-plugin-polyfill-corejs2": "0.4.6_at_babel_core_7.23.5", + "babel-plugin-polyfill-corejs3": "0.8.6_at_babel_core_7.23.5", + "babel-plugin-polyfill-regenerator": "0.5.3_at_babel_core_7.23.5", + "core-js-compat": "3.34.0", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-builder-binary-assignment-operator-visitor": [ + "7.22.15" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-remap-async-to-generator": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helper-wrap-function": [ + "7.22.20" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-private-property-in-object": [ + "7.21.0-placeholder-for-preset-env.2_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-static-block": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-dynamic-import": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-export-namespace-from": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-assertions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-attributes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-private-property-in-object": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-unicode-sets-regex": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-arrow-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-async-generator-functions": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-async-to-generator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-block-scoped-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-block-scoping": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-class-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-class-static-block": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-classes": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-computed-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-destructuring": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-dotall-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-duplicate-keys": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-dynamic-import": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-exponentiation-operator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-export-namespace-from": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-for-of": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-function-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-json-strings": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-logical-assignment-operators": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-member-expression-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-amd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-commonjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-systemjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-umd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-named-capturing-groups-regex": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-new-target": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-nullish-coalescing-operator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-numeric-separator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-object-rest-spread": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-object-super": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-catch-binding": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-chaining": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-parameters": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-private-methods": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-private-property-in-object": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-property-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-regenerator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-reserved-words": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-shorthand-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-spread": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-sticky-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-template-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-typeof-symbol": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-escapes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-property-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-sets-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/preset-env": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/preset-modules": [ + "0.1.6-no-external-plugins_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-polyfill-corejs2": [ + "0.4.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-corejs3": [ + "0.8.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-regenerator": [ + "0.5.3_at_babel_core_7.23.5" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "core-js-compat": [ + "3.34.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "esutils": [ + "2.0.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regenerator-transform": [ + "0.15.2" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webpack-cli__5.1.4__34022717__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "webpack-cli", + "version": "5.1.4_34022717", + "dev": true, + "root_package": "", + "link_packages": { + "react-webpack": [ + "webpack-cli" + ] + }, + "deps": { + "@discoveryjs/json-ext": "0.5.7", + "@webpack-cli/configtest": "2.1.1_-360275163", + "@webpack-cli/info": "2.0.2_-360275163", + "@webpack-cli/serve": "2.0.5_-1521883062", + "colorette": "2.0.20", + "commander": "10.0.1", + "cross-spawn": "7.0.3", + "envinfo": "7.11.0", + "fastest-levenshtein": "1.0.16", + "import-local": "3.1.0", + "interpret": "3.1.1", + "rechoir": "0.8.0", + "webpack": "5.89.0_-1501518582", + "webpack-dev-server": "4.15.1_-360275163", + "webpack-merge": "5.10.0" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-dynamic-import__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-dynamic-import", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.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": false + } + }, + "npm__locate-path__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "locate-path", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "url": "https://registry.npmjs.org/locate-path/-/locate-path-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": false + } + }, + "npm__debug__4.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "debug", + "version": "4.3.4", + "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": false + } + }, + "npm__pretty-format__24.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pretty-format", + "version": "24.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "url": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__jest-runner__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-runner", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "url": "https://registry.npmjs.org/jest-runner/-/jest-runner-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sourcemap-codec__1.4.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sourcemap-codec", + "version": "1.4.8", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "sourcemap-codec": [ + "1.4.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__define-properties__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "define-properties", + "version": "1.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "define-data-property": "1.1.0", + "has-property-descriptors": "1.0.0", + "object-keys": "1.1.1" + }, + "transitive_closure": { + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "object-keys": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fs.realpath": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": {}, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-android-arm64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-android-arm64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-android-arm64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__globalthis__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "globalthis", + "version": "1.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "define-properties": "1.2.1" + }, + "transitive_closure": { + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "object-keys": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jridgewell_source-map__0.3.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/source-map", + "version": "0.3.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/gen-mapping": "0.3.3", + "@jridgewell/trace-mapping": "0.3.19" + }, + "transitive_closure": { + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__is-odd__0.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-odd", + "version": "0.1.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "is-number": "3.0.0" + }, + "transitive_closure": { + "is-buffer": [ + "1.1.6" + ], + "is-number": [ + "3.0.0" + ], + "is-odd": [ + "0.1.2" + ], + "kind-of": [ + "3.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__entities__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "entities", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "url": "https://registry.npmjs.org/entities/-/entities-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": false + } + }, + "npm__array.prototype.findlastindex__1.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array.prototype.findlastindex", + "version": "1.2.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "es-shim-unscopables": "1.0.0", + "get-intrinsic": "1.2.1" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "array.prototype.findlastindex": [ + "1.2.3" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__agent-base__7.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "agent-base", + "version": "7.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "4.3.4" + }, + "transitive_closure": { + "agent-base": [ + "7.1.0" + ], + "debug": [ + "4.3.4" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__char-regex__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "char-regex", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "url": "https://registry.npmjs.org/char-regex/-/char-regex-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": false + } + }, + "npm__data-urls__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "data-urls", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "url": "https://registry.npmjs.org/data-urls/-/data-urls-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": false + } + }, + "npm__fb-watchman__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fb-watchman", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "url": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-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": false + } + }, + "npm__at_jest_globals__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/globals", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/environment": "29.7.0", + "@jest/expect": "29.7.0", + "@jest/types": "29.6.3", + "jest-mock": "29.7.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/globals": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webpack-cli_info__2.0.2__-360275163__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webpack-cli/info", + "version": "2.0.2_-360275163", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "webpack": "5.89.0_-1501518582", + "webpack-cli": "5.1.4_34022717" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdx-correct__3.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "spdx-correct", + "version": "3.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "url": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-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": false + } + }, + "npm__detect-indent__6.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "detect-indent", + "version": "6.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "detect-indent": [ + "6.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__get-package-type__0.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-package-type", + "version": "0.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "get-package-type": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__kleur__3.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "kleur", + "version": "3.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "url": "https://registry.npmjs.org/kleur/-/kleur-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": false + } + }, + "npm__at_babel_plugin-syntax-optional-chaining__7.8.3__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-optional-chaining", + "version": "7.8.3_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-finalizationregistry__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-finalizationregistry", + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "is-finalizationregistry": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss__8.4.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss", + "version": "8.4.14", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "nanoid": "3.3.6", + "picocolors": "1.0.0", + "source-map-js": "1.0.2" + }, + "transitive_closure": { + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.14" + ], + "source-map-js": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_swc_core-linux-arm64-gnu__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-linux-arm64-gnu", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_istanbul-lib-report__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/istanbul-lib-report", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/istanbul-lib-coverage": "2.0.4" + }, + "transitive_closure": { + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__argparse__1.0.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "argparse", + "version": "1.0.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "url": "https://registry.npmjs.org/argparse/-/argparse-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": false + } + }, + "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": false + } + }, + "npm__minimatch__5.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimatch", + "version": "5.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "url": "https://registry.npmjs.org/minimatch/-/minimatch-5.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": false + } + }, + "npm__at_types_react-dom__18.0.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react-dom", + "version": "18.0.9", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@types/react-dom" + ] + }, + "integrity": "sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==", + "url": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.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": false + } + }, + "npm__eslint-import-resolver-node__0.3.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-import-resolver-node", + "version": "0.3.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "3.2.7", + "is-core-module": "2.13.0", + "resolve": "1.22.6" + }, + "transitive_closure": { + "debug": [ + "3.2.7" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ], + "ms": [ + "2.1.3" + ], + "path-parse": [ + "1.0.7" + ], + "resolve": [ + "1.22.6" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-ssr__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-ssr", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "url": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.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": false + } + }, + "npm__at_babel_helper-builder-binary-assignment-operator-visitor__7.22.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-builder-binary-assignment-operator-visitor", + "version": "7.22.15", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-builder-binary-assignment-operator-visitor": [ + "7.22.15" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_jest_environment__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/environment", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "url": "https://registry.npmjs.org/@jest/environment/-/environment-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": false + } + }, + "npm__at_jest_fake-timers__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/fake-timers", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "url": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-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": false + } + }, + "npm__at_webassemblyjs_wasm-edit__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/wasm-edit", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + }, + "transitive_closure": { + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cac__6.7.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cac", + "version": "6.7.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "url": "https://registry.npmjs.org/cac/-/cac-6.7.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tinypool__0.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tinypool", + "version": "0.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zBTCK0cCgRROxvs9c0CGK838sPkeokNGdQVUUwHAbynHFlmyJYj825f/oRs528HaIJ97lo0pLIlDUzwN+IorWg==", + "url": "https://registry.npmjs.org/tinypool/-/tinypool-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": false + } + }, + "npm__tinypool__0.8.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tinypool", + "version": "0.8.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ==", + "url": "https://registry.npmjs.org/tinypool/-/tinypool-0.8.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": false + } + }, + "npm__prettier-plugin-svelte__3.2.2__-1777040783": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "prettier-plugin-svelte", + "version": "3.2.2_-1777040783", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "prettier-plugin-svelte" + ] + }, + "integrity": "sha512-ZzzE/wMuf48/1+Lf2Ffko0uDa6pyCfgHV6+uAhtg2U0AAXGrhCSW88vEJNAkAxW5qyrFY1y1zZ4J8TgHrjW++Q==", + "url": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_expect__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/expect", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "expect": "29.7.0", + "jest-snapshot": "29.7.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__globrex__0.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "globrex", + "version": "0.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "url": "https://registry.npmjs.org/globrex/-/globrex-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": false + } + }, + "npm__totalist__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "totalist", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "url": "https://registry.npmjs.org/totalist/-/totalist-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": false + } + }, + "npm__read-pkg__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "read-pkg", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "load-json-file": "4.0.0", + "normalize-package-data": "2.5.0", + "path-type": "3.0.0" + }, + "transitive_closure": { + "error-ex": [ + "1.3.2" + ], + "function-bind": [ + "1.1.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "hosted-git-info": [ + "2.8.9" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.13.0" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "load-json-file": [ + "4.0.0" + ], + "normalize-package-data": [ + "2.5.0" + ], + "parse-json": [ + "4.0.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "3.0.0" + ], + "pify": [ + "3.0.0" + ], + "read-pkg": [ + "3.0.0" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "5.7.2" + ], + "spdx-correct": [ + "3.2.0" + ], + "spdx-exceptions": [ + "2.3.0" + ], + "spdx-expression-parse": [ + "3.0.1" + ], + "spdx-license-ids": [ + "3.0.15" + ], + "strip-bom": [ + "3.0.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "validate-npm-package-license": [ + "3.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webpack-cli_serve__2.0.5__-1521883062": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webpack-cli/serve", + "version": "2.0.5_-1521883062", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "url": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-darwin-arm64__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-darwin-arm64", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-darwin-arm64": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__browserslist__4.22.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "browserslist", + "version": "4.22.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "url": "https://registry.npmjs.org/browserslist/-/browserslist-4.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": false + } + }, + "npm__dot-case__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dot-case", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "url": "https://registry.npmjs.org/dot-case/-/dot-case-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": false + } + }, + "npm__which__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "which", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "isexe": "2.0.0" + }, + "transitive_closure": { + "isexe": [ + "2.0.0" + ], + "which": [ + "1.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__browserslist__4.22.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "browserslist", + "version": "4.22.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "url": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.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": false + } + }, + "npm__shebang-command__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "shebang-command", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "shebang-regex": "1.0.0" + }, + "transitive_closure": { + "shebang-command": [ + "1.2.0" + ], + "shebang-regex": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-replace-jsx-attribute-value__8.0.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-replace-jsx-attribute-value", + "version": "8.0.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-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": false + } + }, + "npm__css__2.2.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "css", + "version": "2.2.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "inherits": "2.0.4", + "source-map": "0.6.1", + "source-map-resolve": "0.5.3", + "urix": "0.1.0" + }, + "transitive_closure": { + "atob": [ + "2.1.2" + ], + "css": [ + "2.2.4" + ], + "decode-uri-component": [ + "0.2.2" + ], + "inherits": [ + "2.0.4" + ], + "resolve-url": [ + "0.2.1" + ], + "source-map": [ + "0.6.1" + ], + "source-map-resolve": [ + "0.5.3" + ], + "source-map-url": [ + "0.4.1" + ], + "urix": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-mips64el__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-mips64el", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-mips64el": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__bytes__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "bytes", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "bytes": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-template-literals__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-template-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-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": false + } + }, + "npm__mlly__1.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mlly", + "version": "1.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==", + "url": "https://registry.npmjs.org/mlly/-/mlly-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": false + } + }, + "npm__deep-eql__4.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "deep-eql", + "version": "4.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "type-detect": "4.0.8" + }, + "transitive_closure": { + "deep-eql": [ + "4.1.3" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__neo-async__2.6.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "neo-async", + "version": "2.6.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "neo-async": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_send__0.17.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/send", + "version": "0.17.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==", + "url": "https://registry.npmjs.org/@types/send/-/send-0.17.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": false + } + }, + "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": false + } + }, + "npm__at_vue_compiler-core__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-core", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.5", + "@vue/shared": "3.2.45", + "estree-walker": "2.0.2", + "source-map": "0.6.1" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map": [ + "0.6.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__human-signals__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "human-signals", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "human-signals": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdy-transport__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "spdy-transport", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "4.3.4", + "detect-node": "2.1.0", + "hpack.js": "2.1.6", + "obuf": "1.1.2", + "readable-stream": "3.6.2", + "wbuf": "1.7.3" + }, + "transitive_closure": { + "core-util-is": [ + "1.0.3" + ], + "debug": [ + "4.3.4" + ], + "detect-node": [ + "2.1.0" + ], + "hpack.js": [ + "2.1.6" + ], + "inherits": [ + "2.0.4" + ], + "isarray": [ + "1.0.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "ms": [ + "2.1.2" + ], + "obuf": [ + "1.1.2" + ], + "process-nextick-args": [ + "2.0.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "spdy-transport": [ + "3.0.0" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "util-deprecate": [ + "1.0.2" + ], + "wbuf": [ + "1.7.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-plugin-transform-react-remove-prop-types__0.4.24__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-transform-react-remove-prop-types", + "version": "0.4.24", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "babel-plugin-transform-react-remove-prop-types": [ + "0.4.24" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-linux-arm64-musl__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-linux-arm64-musl", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BWx/0EeY89WC4q3AaIaBSGfQxkYxIlS3mX19dwy2FWJs/O+fMvF9oLk/CyJPOZzbp+1DjGeeoGFuDYpiNO91JA==", + "url": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.100.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": false + } + }, + "npm__at_types_mime__1.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/mime", + "version": "1.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==", + "url": "https://registry.npmjs.org/@types/mime/-/mime-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "color-name": [ + "1.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-plugin-polyfill-corejs2__0.4.6__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-polyfill-corejs2", + "version": "0.4.6_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/compat-data": "7.23.5", + "@babel/core": "7.23.5", + "@babel/helper-define-polyfill-provider": "0.4.3_at_babel_core_7.23.5", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-polyfill-corejs2": [ + "0.4.6_at_babel_core_7.23.5" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__validate-npm-package-license__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "validate-npm-package-license", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "url": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-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": false + } + }, + "npm__esbuild-linux-mips64le__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-mips64le", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==", + "url": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.18.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": false + } + }, + "npm__at_esbuild_linux-riscv64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-riscv64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-riscv64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": { + "next.js": [ + "react" + ], + "react": [ + "react" + ], + "react-webpack": [ + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_discoveryjs_json-ext__0.5.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@discoveryjs/json-ext", + "version": "0.5.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "url": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-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": false + } + }, + "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": false + } + }, + "npm__at_esbuild_linux-arm__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-arm", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==", + "url": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.8.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": false + } + }, + "npm__esbuild-freebsd-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-freebsd-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==", + "url": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.18.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": false + } + }, + "npm__eslint-compat-utils__0.4.1__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-compat-utils", + "version": "0.4.1_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5N7ZaJG5pZxUeNNJfUchurLVrunD1xJvyg5kYOIVF8kg1f3ajTikmAu/5fZ9w100omNPOoMjngRszh/Q/uFGMg==", + "url": "https://registry.npmjs.org/eslint-compat-utils/-/eslint-compat-utils-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": false + } + }, + "npm__at_types_mime__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/mime", + "version": "3.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/mime": [ + "3.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_parse-json__4.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/parse-json", + "version": "4.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/parse-json": [ + "4.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__array.prototype.tosorted__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array.prototype.tosorted", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "url": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-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": false + } + }, + "npm__at_babel_traverse__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/traverse", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==", + "url": "https://registry.npmjs.org/@babel/traverse/-/traverse-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": false + } + }, + "npm__at_babel_traverse__7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/traverse", + "version": "7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==", + "url": "https://registry.npmjs.org/@babel/traverse/-/traverse-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": false + } + }, + "npm__at_babel_plugin-transform-duplicate-keys__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-duplicate-keys", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-duplicate-keys": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-nullish-coalescing-operator__7.18.6__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-nullish-coalescing-operator", + "version": "7.18.6_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-nullish-coalescing-operator": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_type-utils__7.2.0__2014925157": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/type-utils", + "version": "7.2.0_2014925157", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==", + "url": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-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": false + } + }, + "npm__xmlchars__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "xmlchars", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "url": "https://registry.npmjs.org/xmlchars/-/xmlchars-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": false + } + }, + "npm__http-proxy-agent__7.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-proxy-agent", + "version": "7.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "url": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-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": false + } + }, + "npm__data-urls__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "data-urls", + "version": "3.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "abab": "2.0.6", + "whatwg-mimetype": "3.0.0", + "whatwg-url": "11.0.0" + }, + "transitive_closure": { + "abab": [ + "2.0.6" + ], + "data-urls": [ + "3.0.2" + ], + "punycode": [ + "2.3.1" + ], + "tr46": [ + "3.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-mimetype": [ + "3.0.0" + ], + "whatwg-url": [ + "11.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-transform-stub__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-transform-stub", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "jest-transform-stub" + ], + "react": [ + "jest-transform-stub" + ] + }, + "deps": {}, + "transitive_closure": { + "jest-transform-stub": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__core-js-compat__3.34.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "core-js-compat", + "version": "3.34.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==", + "url": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.34.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": false + } + }, + "npm__prompts__2.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "prompts", + "version": "2.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "kleur": "3.0.3", + "sisteransi": "1.0.5" + }, + "transitive_closure": { + "kleur": [ + "3.0.3" + ], + "prompts": [ + "2.4.2" + ], + "sisteransi": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__cjs-module-lexer__1.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cjs-module-lexer", + "version": "1.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "url": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__acorn-globals__7.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn-globals", + "version": "7.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "acorn": "8.10.0", + "acorn-walk": "8.3.1" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "acorn-globals": [ + "7.0.1" + ], + "acorn-walk": [ + "8.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__mri__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mri", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "url": "https://registry.npmjs.org/mri/-/mri-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": false + } + }, + "npm__dom-converter__0.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dom-converter", + "version": "0.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "url": "https://registry.npmjs.org/dom-converter/-/dom-converter-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": false + } + }, + "npm__jest-transform-stub__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-transform-stub", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "jest-transform-stub" + ], + "react": [ + "jest-transform-stub" + ] + }, + "integrity": "sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==", + "url": "https://registry.npmjs.org/jest-transform-stub/-/jest-transform-stub-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": false + } + }, + "npm__at_babel_plugin-syntax-object-rest-spread__7.8.3__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-object-rest-spread", + "version": "7.8.3_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-darwin-arm64__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-darwin-arm64", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cEXJQY/ZqMACb+nxzDeX9IPLAg7S94xouJJCNVE5BJM8JUEP4HeTF+ti3cmxWeSJo+5D+o8Tc0UAWUkfENdeyw==", + "url": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.6.1.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": false + } + }, + "npm__typed-array-length__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "typed-array-length", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "for-each": "0.3.3", + "is-typed-array": "1.1.12" + }, + "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.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.12" + ], + "typed-array-length": [ + "1.0.4" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__html-minifier-terser__6.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "html-minifier-terser", + "version": "6.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "camel-case": "4.1.2", + "clean-css": "5.3.2", + "commander": "8.3.0", + "he": "1.2.0", + "param-case": "3.0.4", + "relateurl": "0.2.7", + "terser": "5.20.0" + }, + "transitive_closure": { + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "acorn": [ + "8.10.0" + ], + "buffer-from": [ + "1.1.2" + ], + "camel-case": [ + "4.1.2" + ], + "clean-css": [ + "5.3.2" + ], + "commander": [ + "2.20.3", + "8.3.0" + ], + "dot-case": [ + "3.0.4" + ], + "he": [ + "1.2.0" + ], + "html-minifier-terser": [ + "6.1.0" + ], + "lower-case": [ + "2.0.2" + ], + "no-case": [ + "3.0.4" + ], + "param-case": [ + "3.0.4" + ], + "pascal-case": [ + "3.1.2" + ], + "relateurl": [ + "0.2.7" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "terser": [ + "5.20.0" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_retry__0.12.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/retry", + "version": "0.12.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/retry": [ + "0.12.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_react-dom__18.0.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react-dom", + "version": "18.0.9", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@types/react-dom" + ] + }, + "deps": { + "@types/react": "18.0.25" + }, + "transitive_closure": { + "@types/prop-types": [ + "15.7.8" + ], + "@types/react": [ + "18.0.25" + ], + "@types/react-dom": [ + "18.0.9" + ], + "@types/scheduler": [ + "0.16.4" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-import__2.28.1__eslint_8.28.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-import", + "version": "2.28.1_eslint_8.28.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "url": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.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": false + } + }, + "npm__csstype__2.6.21": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "csstype", + "version": "2.6.21", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==", + "url": "https://registry.npmjs.org/csstype/-/csstype-2.6.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": false + } + }, + "npm__at_types_yargs-parser__21.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/yargs-parser", + "version": "21.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==", + "url": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-netbsd-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-netbsd-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-netbsd-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__update-browserslist-db__1.0.13__browserslist_4.22.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "update-browserslist-db", + "version": "1.0.13_browserslist_4.22.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "browserslist": "4.22.1", + "escalade": "3.1.1", + "picocolors": "1.0.0" + }, + "transitive_closure": { + "browserslist": [ + "4.22.1" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "escalade": [ + "3.1.1" + ], + "node-releases": [ + "2.0.13" + ], + "picocolors": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__language-tags__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "language-tags", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "url": "https://registry.npmjs.org/language-tags/-/language-tags-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": false + } + }, + "npm__at_types_connect__3.4.36__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/connect", + "version": "3.4.36", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/connect": [ + "3.4.36" + ], + "@types/node": [ + "18.19.18" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__asynckit__0.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "asynckit", + "version": "0.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "asynckit": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__minimatch__5.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimatch", + "version": "5.1.6", + "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.1.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-netbsd-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-netbsd-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==", + "url": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.18.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": false + } + }, + "npm__execa__8.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "execa", + "version": "8.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "url": "https://registry.npmjs.org/execa/-/execa-8.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": false + } + }, + "npm__at_babel_plugin-transform-modules-amd__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-modules-amd", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-module-transforms": "7.23.3_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-modules-amd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_generator__7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/generator", + "version": "7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "url": "https://registry.npmjs.org/@babel/generator/-/generator-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": false + } + }, + "npm__cosmiconfig__8.3.6__typescript_4.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cosmiconfig", + "version": "8.3.6_typescript_4.9.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "import-fresh": "3.3.0", + "js-yaml": "4.1.0", + "parse-json": "5.2.0", + "path-type": "4.0.0", + "typescript": "4.9.3" + }, + "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" + ], + "argparse": [ + "2.0.1" + ], + "callsites": [ + "3.1.0" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "cosmiconfig": [ + "8.3.6_typescript_4.9.3" + ], + "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" + ], + "js-yaml": [ + "4.1.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" + ], + "typescript": [ + "4.9.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__acorn-typescript__1.4.13__acorn_8.11.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn-typescript", + "version": "1.4.13_acorn_8.11.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "acorn": "8.11.3" + }, + "transitive_closure": { + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_generator__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/generator", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==", + "url": "https://registry.npmjs.org/@babel/generator/-/generator-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": false + } + }, + "npm__jsesc__0.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jsesc", + "version": "0.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "url": "https://registry.npmjs.org/jsesc/-/jsesc-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": false + } + }, + "npm__at_babel_highlight__7.22.20__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/highlight", + "version": "7.22.20", + "dev": true, + "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.22.20" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__postcss-selector-parser__6.0.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss-selector-parser", + "version": "6.0.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "url": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.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": false + } + }, + "npm__bonjour-service__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "bonjour-service", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "url": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-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": false + } + }, + "npm__minimist__1.2.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimist", + "version": "1.2.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "url": "https://registry.npmjs.org/minimist/-/minimist-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": false + } + }, + "npm__normalize-package-data__2.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "normalize-package-data", + "version": "2.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "url": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.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": false + } + }, + "npm__at_leichtgewicht_ip-codec__2.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@leichtgewicht/ip-codec", + "version": "2.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "url": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-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": false + } + }, + "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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__debug__4.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "debug", + "version": "4.3.4", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "ms": "2.1.2" + }, + "transitive_closure": { + "debug": [ + "4.3.4" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-react-hooks__4.6.0__eslint_8.28.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-react-hooks", + "version": "4.6.0_eslint_8.28.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.28.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-plugin-react-hooks": [ + "4.6.0_eslint_8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "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-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__tinybench__2.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tinybench", + "version": "2.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tinybench": [ + "2.5.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__compressible__2.0.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "compressible", + "version": "2.0.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "url": "https://registry.npmjs.org/compressible/-/compressible-2.0.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": false + } + }, + "npm__at_types_html-minifier-terser__6.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/html-minifier-terser", + "version": "6.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "url": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.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": false + } + }, + "npm__at_vitest_utils__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/utils", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "diff-sequences": "29.6.3", + "estree-walker": "3.0.3", + "loupe": "2.3.7", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/estree": [ + "1.0.2" + ], + "@vitest/utils": [ + "1.3.1" + ], + "ansi-styles": [ + "5.2.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "estree-walker": [ + "3.0.3" + ], + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dequal__2.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dequal", + "version": "2.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "url": "https://registry.npmjs.org/dequal/-/dequal-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": false + } + }, + "npm__magic-string__0.30.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "magic-string", + "version": "0.30.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", + "url": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.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": false + } + }, + "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": false + } + }, + "npm__source-map-support__0.5.13__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map-support", + "version": "0.5.13", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "buffer-from": "1.1.2", + "source-map": "0.6.1" + }, + "transitive_closure": { + "buffer-from": [ + "1.1.2" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.13" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__magic-string__0.30.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "magic-string", + "version": "0.30.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==", + "url": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.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": false + } + }, + "npm__at_babel_helper-simple-access__7.22.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-simple-access", + "version": "7.22.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_visitor-keys__5.62.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/visitor-keys", + "version": "5.62.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "url": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.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": false + } + }, + "npm__node-releases__2.0.13__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "node-releases", + "version": "2.0.13", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "node-releases": [ + "2.0.13" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_jsdom__20.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/jsdom", + "version": "20.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "url": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.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": false + } + }, + "npm__define-data-property__1.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "define-data-property", + "version": "1.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-intrinsic": "1.2.1", + "gopd": "1.0.1", + "has-property-descriptors": "1.0.0" + }, + "transitive_closure": { + "define-data-property": [ + "1.1.0" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__semver__7.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "semver", + "version": "7.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "url": "https://registry.npmjs.org/semver/-/semver-7.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": false + } + }, + "npm__at_babel_preset-modules__0.1.6-no-external-plugins__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/preset-modules", + "version": "0.1.6-no-external-plugins_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/types": "7.23.5", + "esutils": "2.0.3" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/preset-modules": [ + "0.1.6-no-external-plugins_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "esutils": [ + "2.0.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_runtime-core__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/runtime-core", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "url": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lines-and-columns": [ + "1.2.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__svg-tags__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "svg-tags", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "svg-tags": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tough-cookie__4.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tough-cookie", + "version": "4.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "url": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.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": false + } + }, + "npm__at_vitest_snapshot__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/snapshot", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9ClDz2/aV5TfWA4reV7XR9p+hE0e7bifhwxlURugj3Fw0YXeTFzHmKCNEHd6wOIFMfthbGGwhlq7TOJ2jDO4/g==", + "url": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-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": false + } + }, + "npm__at_babel_plugin-transform-private-methods__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-private-methods", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-private-methods": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_test-result__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/test-result", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "url": "https://registry.npmjs.org/@jest/test-result/-/test-result-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": false + } + }, + "npm__at_vue_runtime-core__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/runtime-core", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==", + "url": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__array-buffer-byte-length__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array-buffer-byte-length", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "is-array-buffer": "3.0.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.12" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__svelte__5.0.0-next.75__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "svelte", + "version": "5.0.0-next.75", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "svelte" + ] + }, + "deps": { + "@ampproject/remapping": "2.2.1", + "@jridgewell/sourcemap-codec": "1.4.15", + "@types/estree": "1.0.5", + "acorn": "8.11.3", + "acorn-typescript": "1.4.13_acorn_8.11.3", + "aria-query": "5.3.0", + "axobject-query": "4.0.0", + "esm-env": "1.0.0", + "esrap": "1.2.1", + "is-reference": "3.0.2", + "locate-character": "3.0.0", + "magic-string": "0.30.5", + "zimmerframe": "1.1.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "dequal": [ + "2.0.3" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "is-reference": [ + "3.0.2" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "svelte": [ + "5.0.0-next.75" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__regenerate-unicode-properties__10.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regenerate-unicode-properties", + "version": "10.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "url": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.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": false + } + }, + "npm__at_babel_plugin-syntax-json-strings__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-json-strings", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cssom__0.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cssom", + "version": "0.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cssom": [ + "0.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__globalyzer__0.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "globalyzer", + "version": "0.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", + "url": "https://registry.npmjs.org/globalyzer/-/globalyzer-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": false + } + }, + "npm__rechoir__0.8.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "rechoir", + "version": "0.8.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "url": "https://registry.npmjs.org/rechoir/-/rechoir-0.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": false + } + }, + "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": false + } + }, + "npm__babel-preset-react-app__10.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-preset-react-app", + "version": "10.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "url": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.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": false + } + }, + "npm__schema-utils__4.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "schema-utils", + "version": "4.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "url": "https://registry.npmjs.org/schema-utils/-/schema-utils-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": false + } + }, + "npm__at_svgr_babel-plugin-remove-jsx-empty-expression__8.0.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-remove-jsx-empty-expression", + "version": "8.0.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-remove-jsx-empty-expression": [ + "8.0.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tinypool__0.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tinypool", + "version": "0.8.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tinypool": [ + "0.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__playwright-core__1.42.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "playwright-core", + "version": "1.42.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mxz6zclokgrke9p1vtdy/COWBH+eOZgYUVVU34C73M+4j4HLlQJHtfcqiqqxpP0o8HhMkflvfbquLX5dg6wlfA==", + "url": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.42.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": false + } + }, + "npm__regexpu-core__5.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regexpu-core", + "version": "5.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "url": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-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": false + } + }, + "npm__at_esbuild_linux-s390x__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-s390x", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-s390x": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_pluginutils__5.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/pluginutils", + "version": "5.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/estree": "1.0.2", + "estree-walker": "2.0.2", + "picomatch": "2.3.1" + }, + "transitive_closure": { + "@rollup/pluginutils": [ + "5.1.0" + ], + "@types/estree": [ + "1.0.2" + ], + "estree-walker": [ + "2.0.2" + ], + "picomatch": [ + "2.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string-natural-compare__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string-natural-compare", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", + "url": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-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": false + } + }, + "npm__at_types_body-parser__1.19.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/body-parser", + "version": "1.19.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==", + "url": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.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": false + } + }, + "npm__deepmerge__4.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "deepmerge", + "version": "4.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "deepmerge": [ + "4.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-core__3.2.37__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-core", + "version": "3.2.37", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.0", + "@vue/shared": "3.2.37", + "estree-walker": "2.0.2", + "source-map": "0.6.1" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.37" + ], + "@vue/shared": [ + "3.2.37" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map": [ + "0.6.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.3.1", + "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.3.1" + ], + "fastq": [ + "1.15.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-finalizationregistry__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-finalizationregistry", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "url": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-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": false + } + }, + "npm__postcss-scss__4.0.9__postcss_8.4.35": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss-scss", + "version": "4.0.9_postcss_8.4.35", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", + "url": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-modules-commonjs__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-modules-commonjs", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-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": false + } + }, + "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": false + } + }, + "npm__at_types_range-parser__1.2.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/range-parser", + "version": "1.2.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/range-parser": [ + "1.2.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__data-urls__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "data-urls", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "whatwg-mimetype": "4.0.0", + "whatwg-url": "14.0.0" + }, + "transitive_closure": { + "data-urls": [ + "5.0.0" + ], + "punycode": [ + "2.3.1" + ], + "tr46": [ + "5.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-mimetype": [ + "4.0.0" + ], + "whatwg-url": [ + "14.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-optional-catch-binding__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-optional-catch-binding", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.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": false + } + }, + "npm__at_eslint_js__8.55.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint/js", + "version": "8.55.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@eslint/js": [ + "8.55.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__nth-check__2.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "nth-check", + "version": "2.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "boolbase": "1.0.0" + }, + "transitive_closure": { + "boolbase": [ + "1.0.0" + ], + "nth-check": [ + "2.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__signal-exit__3.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "signal-exit", + "version": "3.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "url": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.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": false + } + }, + "npm__keyv__4.5.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "keyv", + "version": "4.5.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "url": "https://registry.npmjs.org/keyv/-/keyv-4.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": false + } + }, + "npm__de-indent__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "de-indent", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "url": "https://registry.npmjs.org/de-indent/-/de-indent-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": false + } + }, + "npm__jest-junit__16.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-junit", + "version": "16.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "jest-junit" + ], + "react": [ + "jest-junit" + ] + }, + "integrity": "sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ==", + "url": "https://registry.npmjs.org/jest-junit/-/jest-junit-16.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-optional-catch-binding__7.8.3__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-optional-catch-binding", + "version": "7.8.3_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.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": false + } + }, + "npm__typed-array-byte-length__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typed-array-byte-length", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "url": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-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": false + } + }, + "npm__at_jest_reporters__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/reporters", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "url": "https://registry.npmjs.org/@jest/reporters/-/reporters-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": false + } + }, + "npm__electron-to-chromium__1.4.608": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "electron-to-chromium", + "version": "1.4.608", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-J2f/3iIIm3Mo0npneITZ2UPe4B1bg8fTNrFjD8715F/k1BvbviRuqYGkET1PgprrczXYTHFvotbBOmUp6KE0uA==", + "url": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.608.tgz", + "commit": "", + "patch_args": [], + "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__at_eslint-community_regexpp__4.10.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint-community/regexpp", + "version": "4.10.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "url": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.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": false + } + }, + "npm__follow-redirects__1.15.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "follow-redirects", + "version": "1.15.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "url": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "regenerator-runtime": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-private-property-in-object__7.21.0-placeholder-for-preset-env.2__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-private-property-in-object", + "version": "7.21.0-placeholder-for-preset-env.2_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-private-property-in-object": [ + "7.21.0-placeholder-for-preset-env.2_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__shebang-command__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "shebang-command", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "url": "https://registry.npmjs.org/shebang-command/-/shebang-command-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": false + } + }, + "npm__safe-array-concat__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "safe-array-concat", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "url": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-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": false + } + }, + "npm__require-from-string__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "require-from-string", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "url": "https://registry.npmjs.org/require-from-string/-/require-from-string-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": false + } + }, + "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": false + } + }, + "npm__at_types_eslint__8.56.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/eslint", + "version": "8.56.5", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@types/eslint" + ] + }, + "integrity": "sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==", + "url": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.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": false + } + }, + "npm__source-map-resolve__0.5.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map-resolve", + "version": "0.5.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "atob": "2.1.2", + "decode-uri-component": "0.2.2", + "resolve-url": "0.2.1", + "source-map-url": "0.4.1", + "urix": "0.1.0" + }, + "transitive_closure": { + "atob": [ + "2.1.2" + ], + "decode-uri-component": [ + "0.2.2" + ], + "resolve-url": [ + "0.2.1" + ], + "source-map-resolve": [ + "0.5.3" + ], + "source-map-url": [ + "0.4.1" + ], + "urix": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__acorn-import-assertions__1.9.0__acorn_8.10.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn-import-assertions", + "version": "1.9.0_acorn_8.10.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "url": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-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": false + } + }, + "npm__babel-plugin-polyfill-corejs2__0.4.6__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-polyfill-corejs2", + "version": "0.4.6_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "url": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.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": false + } + }, + "npm__at_humanwhocodes_object-schema__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@humanwhocodes/object-schema", + "version": "1.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@humanwhocodes/object-schema": [ + "1.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__flatted__3.2.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "flatted", + "version": "3.2.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "flatted": [ + "3.2.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "get-caller-file": [ + "2.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dedent__1.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dedent", + "version": "1.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "dedent": [ + "1.5.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__terser__5.20.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "terser", + "version": "5.20.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/source-map": "0.3.5", + "acorn": "8.10.0", + "commander": "2.20.3", + "source-map-support": "0.5.21" + }, + "transitive_closure": { + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "acorn": [ + "8.10.0" + ], + "buffer-from": [ + "1.1.2" + ], + "commander": [ + "2.20.3" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "terser": [ + "5.20.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-import-resolver-node__0.3.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-import-resolver-node", + "version": "0.3.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "url": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.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": false + } + }, + "npm__node-releases__2.0.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "node-releases", + "version": "2.0.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "url": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.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": false + } + }, + "npm__node-releases__2.0.13": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "node-releases", + "version": "2.0.13", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "url": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.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": false + } + }, + "npm__globalyzer__0.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "globalyzer", + "version": "0.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "globalyzer": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__obuf__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "obuf", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "url": "https://registry.npmjs.org/obuf/-/obuf-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": false + } + }, + "npm__at_typescript-eslint_visitor-keys__5.62.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/visitor-keys", + "version": "5.62.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "3.4.3" + }, + "transitive_closure": { + "@typescript-eslint/types": [ + "5.62.0" + ], + "@typescript-eslint/visitor-keys": [ + "5.62.0" + ], + "eslint-visitor-keys": [ + "3.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-create-class-features-plugin__7.22.15__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-create-class-features-plugin", + "version": "7.22.15_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "url": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-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": false + } + }, + "npm__spdx-expression-parse__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "spdx-expression-parse", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "url": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__nice-try__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "nice-try", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "url": "https://registry.npmjs.org/nice-try/-/nice-try-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": false + } + }, + "npm__at_babel_eslint-parser__7.23.3__-37998846__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/eslint-parser", + "version": "7.23.3_-37998846", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint": "8.57.0", + "eslint-visitor-keys": "2.1.0", + "semver": "6.3.1" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/eslint-parser": [ + "7.23.3_-37998846" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@nicolo-ribaudo/eslint-scope-5-internals": [ + "5.1.1-v1" + ], + "@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": [ + "3.2.1", + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "browserslist": [ + "4.22.2" + ], + "callsites": [ + "3.1.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "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-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "11.12.0", + "13.22.0" + ], + "graphemer": [ + "1.4.0" + ], + "has-flag": [ + "3.0.0", + "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-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "jsesc": [ + "2.5.2" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "2.2.3" + ], + "keyv": [ + "4.5.3" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "5.1.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "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" + ], + "picocolors": [ + "1.0.0" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.3.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": [ + "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": [ + "5.5.0", + "7.2.0" + ], + "text-table": [ + "0.2.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "3.1.1" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": { + "next.js": [ + "react-dom" + ], + "react": [ + "react-dom" + ], + "react-webpack": [ + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cssstyle__2.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cssstyle", + "version": "2.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "cssom": "0.3.8" + }, + "transitive_closure": { + "cssom": [ + "0.3.8" + ], + "cssstyle": [ + "2.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-32__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-32", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-32": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__camel-case__4.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "camel-case", + "version": "4.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "pascal-case": "3.1.2", + "tslib": "2.6.2" + }, + "transitive_closure": { + "camel-case": [ + "4.1.2" + ], + "lower-case": [ + "2.0.2" + ], + "no-case": [ + "3.0.4" + ], + "pascal-case": [ + "3.1.2" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-create-class-features-plugin__7.22.15__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-create-class-features-plugin", + "version": "7.22.15_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "url": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-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": false + } + }, + "npm__at_types_graceful-fs__4.1.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/graceful-fs", + "version": "4.1.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==", + "url": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cssesc__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cssesc", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cssesc": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__execa__5.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "execa", + "version": "5.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "cross-spawn": "7.0.3", + "get-stream": "6.0.1", + "human-signals": "2.1.0", + "is-stream": "2.0.1", + "merge-stream": "2.0.0", + "npm-run-path": "4.0.1", + "onetime": "5.1.2", + "signal-exit": "3.0.7", + "strip-final-newline": "2.0.0" + }, + "transitive_closure": { + "cross-spawn": [ + "7.0.3" + ], + "execa": [ + "5.1.1" + ], + "get-stream": [ + "6.0.1" + ], + "human-signals": [ + "2.1.0" + ], + "is-stream": [ + "2.0.1" + ], + "isexe": [ + "2.0.0" + ], + "merge-stream": [ + "2.0.0" + ], + "mimic-fn": [ + "2.1.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "onetime": [ + "5.1.2" + ], + "path-key": [ + "3.1.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "signal-exit": [ + "3.0.7" + ], + "strip-final-newline": [ + "2.0.0" + ], + "which": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-lib-coverage__3.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "istanbul-lib-coverage", + "version": "3.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "istanbul-lib-coverage": [ + "3.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_svgr_babel-plugin-transform-svg-component__8.0.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-transform-svg-component", + "version": "8.0.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-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": false + } + }, + "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": false + } + }, + "npm__string.prototype.trimstart__1.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.trimstart", + "version": "1.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "url": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-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": false + } + }, + "npm__typed-array-byte-offset__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typed-array-byte-offset", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "url": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-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": false + } + }, + "npm__vite__3.2.8__at_types_node_18.19.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite", + "version": "3.2.8_at_types_node_18.19.18", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "vite" + ] + }, + "integrity": "sha512-EtQU16PLIJpAZol2cTLttNP1mX6L0SyI0pgQB1VOoWeQnMSvtiwovV3D6NcjN8CZQWWyESD2v5NGnpz5RvgOZA==", + "url": "https://registry.npmjs.org/vite/-/vite-3.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": false + } + }, + "npm__at_babel_plugin-transform-optional-chaining__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-optional-chaining", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "7.22.5", + "@babel/plugin-syntax-optional-chaining": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-chaining": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-buffer__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/helper-buffer", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sveltejs_adapter-auto__3.1.1__at_sveltejs_kit_2.5.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sveltejs/adapter-auto", + "version": "3.1.1_at_sveltejs_kit_2.5.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@sveltejs/adapter-auto" + ] + }, + "integrity": "sha512-6LeZft2Fo/4HfmLBi5CucMYmgRxgcETweQl/yQoZo/895K3S9YWYN4Sfm/IhwlIpbJp3QNvhKmwCHbsqQNYQpw==", + "url": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-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": false + } + }, + "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": false + } + }, + "npm__p-limit__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-limit", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "yocto-queue": "1.0.0" + }, + "transitive_closure": { + "p-limit": [ + "5.0.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitejs_plugin-vue__3.2.0__vite_3.2.8__vue_3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitejs/plugin-vue", + "version": "3.2.0_vite_3.2.8__vue_3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "@vitejs/plugin-vue" + ] + }, + "integrity": "sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==", + "url": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-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": false + } + }, + "npm__xml-name-validator__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "xml-name-validator", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "url": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-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": false + } + }, + "npm__at_testing-library_react__13.4.0__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": "13.4.0_react-dom_18.2.0__react_18.2.0", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@testing-library/react" + ], + "react": [ + "@testing-library/react" + ] + }, + "deps": { + "@babel/runtime": "7.23.1", + "@testing-library/dom": "8.20.1", + "@types/react-dom": "18.0.9", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.22.13" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.22.20" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@testing-library/dom": [ + "8.20.1" + ], + "@testing-library/react": [ + "13.4.0_react-dom_18.2.0__react_18.2.0" + ], + "@types/aria-query": [ + "5.0.2" + ], + "@types/prop-types": [ + "15.7.8" + ], + "@types/react": [ + "18.0.25" + ], + "@types/react-dom": [ + "18.0.9" + ], + "@types/scheduler": [ + "0.16.4" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "aria-query": [ + "5.1.3" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "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.2.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dom-accessibility-api": [ + "0.5.16" + ], + "es-get-iterator": [ + "1.1.3" + ], + "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.2.1" + ], + "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-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-arguments": [ + "1.1.1" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "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.3" + ], + "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.5.1" + ], + "scheduler": [ + "0.23.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "stop-iteration-iterator": [ + "1.0.0" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdx-license-ids__3.0.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "spdx-license-ids", + "version": "3.0.15", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "spdx-license-ids": [ + "3.0.15" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-async-generator-functions__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-async-generator-functions", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-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": false + } + }, + "npm__thunky__1.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "thunky", + "version": "1.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "url": "https://registry.npmjs.org/thunky/-/thunky-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": false + } + }, + "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": false + } + }, + "npm__express__4.18.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "express", + "version": "4.18.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "accepts": "1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "1.0.5", + "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.1" + ], + "bytes": [ + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "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.2" + ], + "finalhandler": [ + "1.2.0" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "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.3" + ], + "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.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__fastq__1.15.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fastq", + "version": "1.15.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "url": "https://registry.npmjs.org/fastq/-/fastq-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": false + } + }, + "npm__compression__1.7.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "compression", + "version": "1.7.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "url": "https://registry.npmjs.org/compression/-/compression-1.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": false + } + }, + "npm__at_babel_helper-create-class-features-plugin__7.23.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-create-class-features-plugin", + "version": "7.23.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-function-name": "7.23.0", + "@babel/helper-member-expression-to-functions": "7.23.0", + "@babel/helper-optimise-call-expression": "7.22.5", + "@babel/helper-replace-supers": "7.22.20_at_babel_core_7.23.5", + "@babel/helper-skip-transparent-expression-wrappers": "7.22.5", + "@babel/helper-split-export-declaration": "7.22.6", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__unicode-canonical-property-names-ecmascript__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "unicode-canonical-property-names-ecmascript", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__glob-to-regexp__0.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "glob-to-regexp", + "version": "0.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "glob-to-regexp": [ + "0.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__entities__4.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "entities", + "version": "4.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "url": "https://registry.npmjs.org/entities/-/entities-4.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-reserved-words__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-reserved-words", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_typescript-estree__5.44.0__typescript_4.9.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_4.9.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": false + } + }, + "npm__jest-circus__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-circus", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "url": "https://registry.npmjs.org/jest-circus/-/jest-circus-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": false + } + }, + "npm__relateurl__0.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "relateurl", + "version": "0.2.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "relateurl": [ + "0.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__string-length__4.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string-length", + "version": "4.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "url": "https://registry.npmjs.org/string-length/-/string-length-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": false + } + }, + "npm__path-key__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-key", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-key": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_android-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/android-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/android-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitejs_plugin-vue__3.2.0__vite_3.2.8__vue_3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitejs/plugin-vue", + "version": "3.2.0_vite_3.2.8__vue_3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue/libraries/simple": [ + "@vitejs/plugin-vue" + ] + }, + "integrity": "sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==", + "url": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-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": false + } + }, + "npm__acorn-globals__7.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn-globals", + "version": "7.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "url": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-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": false + } + }, + "npm__dns-packet__5.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dns-packet", + "version": "5.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "url": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss__8.4.31__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss", + "version": "8.4.31", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "nanoid": "3.3.6", + "picocolors": "1.0.0", + "source-map-js": "1.0.2" + }, + "transitive_closure": { + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map-js": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cac__6.7.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cac", + "version": "6.7.14", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cac": [ + "6.7.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-unicode-sets-regex__7.18.6__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-unicode-sets-regex", + "version": "7.18.6_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-regexp-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-unicode-sets-regex": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-linux-arm-gnueabihf__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-linux-arm-gnueabihf", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "object-assign": [ + "4.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__open__8.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "open", + "version": "8.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "define-lazy-prop": "2.0.0", + "is-docker": "2.2.1", + "is-wsl": "2.2.0" + }, + "transitive_closure": { + "define-lazy-prop": [ + "2.0.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-wsl": [ + "2.2.0" + ], + "open": [ + "8.4.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__punycode__2.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "punycode", + "version": "2.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "url": "https://registry.npmjs.org/punycode/-/punycode-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": false + } + }, + "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": false + } + }, + "npm__at_next_swc-android-arm-eabi__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-android-arm-eabi", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YO691dxHlviy6H0eghgwqn+5kU9J3iQnKERHTDSppqjjGDBl6ab4wz9XfI5AhljjkaTg3TknHoIEWFDoZ4Ve8g==", + "url": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.5.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": false + } + }, + "npm__at_babel_plugin-transform-flow-strip-types__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-flow-strip-types", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-flow": "7.23.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-flow": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-flow-strip-types": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-react-pure-annotations__7.23.3__at_babel_core_7.23.5": { + "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.23.5", + "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": false + } + }, + "npm__at_types_express__4.17.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/express", + "version": "4.17.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ==", + "url": "https://registry.npmjs.org/@types/express/-/express-4.17.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": false + } + }, + "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": false + } + }, + "npm__at_types_react__18.0.25__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/react", + "version": "18.0.25", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@types/react" + ] + }, + "deps": { + "@types/prop-types": "15.7.8", + "@types/scheduler": "0.16.4", + "csstype": "3.1.2" + }, + "transitive_closure": { + "@types/prop-types": [ + "15.7.8" + ], + "@types/react": [ + "18.0.25" + ], + "@types/scheduler": [ + "0.16.4" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__delayed-stream__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "delayed-stream", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "url": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-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": false + } + }, + "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": false + } + }, + "npm__assertion-error__1.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "assertion-error", + "version": "1.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "assertion-error": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__minimatch__9.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimatch", + "version": "9.0.3", + "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": [ + "9.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__sirv__2.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sirv", + "version": "2.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", + "url": "https://registry.npmjs.org/sirv/-/sirv-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "core-util-is": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_server-renderer__3.2.45__vue_3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/server-renderer", + "version": "3.2.45_vue_3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-ssr": "3.2.45", + "@vue/shared": "3.2.45", + "vue": "3.2.45" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/compiler-sfc": [ + "3.2.45" + ], + "@vue/compiler-ssr": [ + "3.2.45" + ], + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/reactivity-transform": [ + "3.2.45" + ], + "@vue/runtime-core": [ + "3.2.45" + ], + "@vue/runtime-dom": [ + "3.2.45" + ], + "@vue/server-renderer": [ + "3.2.45_vue_3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "csstype": [ + "2.6.21" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.25.9" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "source-map": [ + "0.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vue": [ + "3.2.45" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-optional-chaining__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-optional-chaining", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.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": false + } + }, + "npm__mimic-fn__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mimic-fn", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mimic-fn": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__signal-exit__4.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "signal-exit", + "version": "4.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "signal-exit": [ + "4.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pretty-error__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pretty-error", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "url": "https://registry.npmjs.org/pretty-error/-/pretty-error-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": false + } + }, + "npm__eslint-compat-utils__0.4.1__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-compat-utils", + "version": "0.4.1_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.57.0", + "semver": "7.6.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-compat-utils": [ + "0.4.1_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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.3.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.6.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-optional-chaining__7.8.3__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-optional-chaining", + "version": "7.8.3_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.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": false + } + }, + "npm__saxes__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "saxes", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "xmlchars": "2.2.0" + }, + "transitive_closure": { + "saxes": [ + "6.0.0" + ], + "xmlchars": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": { + "sveltekit_ts": [ + "eslint" + ] + }, + "deps": { + "@eslint-community/eslint-utils": "4.4.0_eslint_8.57.0", + "@eslint-community/regexpp": "4.10.0", + "@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", + "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.22.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.10.0" + ], + "@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" + ], + "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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__svelte-eslint-parser__0.34.0-next.12__svelte_5.0.0-next.75": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "svelte-eslint-parser", + "version": "0.34.0-next.12_svelte_5.0.0-next.75", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KJTStZILapiwY6ULdUaAf+6GgJs0qGZJrRy5PHtgAGKr8xNHtst9Cax0xbxz2ONDvDGaR26SZRDl9vI2f1KBAQ==", + "url": "https://registry.npmjs.org/svelte-eslint-parser/-/svelte-eslint-parser-0.34.0-next.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": false + } + }, + "npm__neo-async__2.6.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "neo-async", + "version": "2.6.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "url": "https://registry.npmjs.org/neo-async/-/neo-async-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": false + } + }, + "npm__strip-final-newline__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-final-newline", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "url": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-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": false + } + }, + "npm__svelte-preprocess__5.1.3__1286447536": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "svelte-preprocess", + "version": "5.1.3_1286447536", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==", + "url": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.3.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": false + } + }, + "npm__ansi-escapes__4.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-escapes", + "version": "4.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "type-fest": "0.21.3" + }, + "transitive_closure": { + "ansi-escapes": [ + "4.3.2" + ], + "type-fest": [ + "0.21.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__write-file-atomic__4.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "write-file-atomic", + "version": "4.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "imurmurhash": "0.1.4", + "signal-exit": "3.0.7" + }, + "transitive_closure": { + "imurmurhash": [ + "0.1.4" + ], + "signal-exit": [ + "3.0.7" + ], + "write-file-atomic": [ + "4.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__rollup__2.79.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "rollup", + "version": "2.79.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fsevents": "2.3.3" + }, + "transitive_closure": { + "fsevents": [ + "2.3.3" + ], + "rollup": [ + "2.79.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cookie__0.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cookie", + "version": "0.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "url": "https://registry.npmjs.org/cookie/-/cookie-0.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": false + } + }, + "npm__semver__5.7.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "semver", + "version": "5.7.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "url": "https://registry.npmjs.org/semver/-/semver-5.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": false + } + }, + "npm__at_babel_helper-module-transforms__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-module-transforms", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "url": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-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": false + } + }, + "npm__jest-environment-node__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-environment-node", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "url": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-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": false + } + }, + "npm__which-builtin-type__1.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "which-builtin-type", + "version": "1.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "function.prototype.name": "1.1.6", + "has-tostringtag": "1.0.0", + "is-async-function": "2.0.0", + "is-date-object": "1.0.5", + "is-finalizationregistry": "1.0.2", + "is-generator-function": "1.0.10", + "is-regex": "1.1.4", + "is-weakref": "1.0.2", + "isarray": "2.0.5", + "which-boxed-primitive": "1.0.2", + "which-collection": "1.0.1", + "which-typed-array": "1.1.11" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-map": [ + "2.0.2" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1", + "has-symbols": "1.0.3", + "object-keys": "1.1.1" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "require-directory": [ + "2.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__select-hose__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "select-hose", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "select-hose": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vue-tsc__1.0.9__typescript_4.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vue-tsc", + "version": "1.0.9_typescript_4.9.3", + "dev": true, + "root_package": "", + "link_packages": { + "vue": [ + "vue-tsc" + ] + }, + "deps": { + "@volar/vue-language-core": "1.0.9", + "@volar/vue-typescript": "1.0.9", + "typescript": "4.9.3" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@volar/language-core": [ + "1.0.9" + ], + "@volar/source-map": [ + "1.0.9" + ], + "@volar/typescript": [ + "1.0.9" + ], + "@volar/vue-language-core": [ + "1.0.9" + ], + "@volar/vue-typescript": [ + "1.0.9" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-sfc": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "de-indent": [ + "1.0.2" + ], + "estree-walker": [ + "2.0.2" + ], + "he": [ + "1.2.0" + ], + "magic-string": [ + "0.30.4" + ], + "minimatch": [ + "5.1.6" + ], + "muggle-string": [ + "0.1.0" + ], + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ], + "typescript": [ + "4.9.3" + ], + "vue-template-compiler": [ + "2.7.14" + ], + "vue-tsc": [ + "1.0.9_typescript_4.9.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_yargs__13.0.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/yargs", + "version": "13.0.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/yargs-parser": "21.0.1" + }, + "transitive_closure": { + "@types/yargs": [ + "13.0.12" + ], + "@types/yargs-parser": [ + "21.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_testing-library_dom__8.20.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@testing-library/dom", + "version": "8.20.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", + "url": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.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": false + } + }, + "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": false + } + }, + "npm__is-stream__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-stream", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-stream": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_tough-cookie__4.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/tough-cookie", + "version": "4.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg==", + "url": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-potential-custom-element-name__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-potential-custom-element-name", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-potential-custom-element-name": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-named-capturing-groups-regex__7.22.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-named-capturing-groups-regex", + "version": "7.22.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-regexp-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-named-capturing-groups-regex": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_fake-timers__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/fake-timers", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "29.6.3", + "@sinonjs/fake-timers": "10.3.0", + "@types/node": "18.19.18", + "jest-message-util": "29.7.0", + "jest-mock": "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/fake-timers": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.8.0" + ], + "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.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "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" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_experimental-utils__5.62.0__1986444992": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/experimental-utils", + "version": "5.62.0_1986444992", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "url": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__string.prototype.trimend__1.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.trimend", + "version": "1.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__camelcase__5.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "camelcase", + "version": "5.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "camelcase": [ + "5.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-pnp-resolver__1.2.3__jest-resolve_29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-pnp-resolver", + "version": "1.2.3_jest-resolve_29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "jest-resolve": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "braces": [ + "3.0.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "6.3.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "leven": [ + "3.1.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "node-int64": [ + "0.4.0" + ], + "normalize-path": [ + "3.0.0" + ], + "path-parse": [ + "1.0.7" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve.exports": [ + "2.0.2" + ], + "slash": [ + "3.0.0" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "walker": [ + "1.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_eslint-community_eslint-utils__4.4.0__eslint_8.55.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.55.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.55.0", + "eslint-visitor-keys": "3.4.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.55.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.55.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" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.55.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-config__29.7.0__at_types_node_18.19.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-config", + "version": "29.7.0_at_types_node_18.19.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "url": "https://registry.npmjs.org/jest-config/-/jest-config-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": false + } + }, + "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": false + } + }, + "npm__ast-types-flow__0.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ast-types-flow", + "version": "0.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "url": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.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": false + } + }, + "npm__jest-worker__27.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-worker", + "version": "27.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18", + "merge-stream": "2.0.0", + "supports-color": "8.1.1" + }, + "transitive_closure": { + "@types/node": [ + "18.19.18" + ], + "has-flag": [ + "4.0.0" + ], + "jest-worker": [ + "27.5.1" + ], + "merge-stream": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_rollup_rollup-win32-arm64-msvc__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-win32-arm64-msvc", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-v2FVT6xfnnmTe3W9bJXl6r5KwJglMK/iRlkKiIFfO6ysKs0rDgz7Cwwf3tjldxQUrHL9INT/1r4VA0n9L/F1vQ==", + "url": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.6.1.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": false + } + }, + "npm__kind-of__6.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "kind-of", + "version": "6.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "url": "https://registry.npmjs.org/kind-of/-/kind-of-6.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": false + } + }, + "npm__lru-cache__5.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lru-cache", + "version": "5.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "url": "https://registry.npmjs.org/lru-cache/-/lru-cache-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": false + } + }, + "npm__css-select__4.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "css-select", + "version": "4.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "boolbase": "1.0.0", + "css-what": "6.1.0", + "domhandler": "4.3.1", + "domutils": "2.8.0", + "nth-check": "2.1.1" + }, + "transitive_closure": { + "boolbase": [ + "1.0.0" + ], + "css-select": [ + "4.3.0" + ], + "css-what": [ + "6.1.0" + ], + "dom-serializer": [ + "1.4.1" + ], + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ], + "domutils": [ + "2.8.0" + ], + "entities": [ + "2.2.0" + ], + "nth-check": [ + "2.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-member-expression-to-functions__7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-member-expression-to-functions", + "version": "7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "url": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-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": false + } + }, + "npm__at_types_scheduler__0.16.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/scheduler", + "version": "0.16.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/scheduler": [ + "0.16.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__es-abstract__1.22.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-abstract", + "version": "1.22.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "url": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.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": false + } + }, + "npm__at_babel_plugin-transform-object-super__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-object-super", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-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": false + } + }, + "npm__at_babel_plugin-syntax-dynamic-import__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-dynamic-import", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-dynamic-import": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tsconfig-to-swcconfig__2.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tsconfig-to-swcconfig", + "version": "2.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "tsconfig-to-swcconfig" + ] + }, + "integrity": "sha512-S6O8ZOawd1yw/Vau98TPIaqHs3N22PRZImFDDnc776XPpuZ9iGNPo1ggO1ARLuL0BcpY7zipXl93RJXjEzcDbw==", + "url": "https://registry.npmjs.org/tsconfig-to-swcconfig/-/tsconfig-to-swcconfig-2.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rushstack_eslint-patch__1.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rushstack/eslint-patch", + "version": "1.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==", + "url": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-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": false + } + }, + "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": false + } + }, + "npm__vue-router__4.1.6__vue_3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vue-router", + "version": "4.1.6_vue_3.2.45", + "dev": false, + "root_package": "", + "link_packages": { + "vue": [ + "vue-router" + ] + }, + "deps": { + "@vue/devtools-api": "6.5.0", + "vue": "3.2.45" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/compiler-sfc": [ + "3.2.45" + ], + "@vue/compiler-ssr": [ + "3.2.45" + ], + "@vue/devtools-api": [ + "6.5.0" + ], + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/reactivity-transform": [ + "3.2.45" + ], + "@vue/runtime-core": [ + "3.2.45" + ], + "@vue/runtime-dom": [ + "3.2.45" + ], + "@vue/server-renderer": [ + "3.2.45_vue_3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "csstype": [ + "2.6.21" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.25.9" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "source-map": [ + "0.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vue": [ + "3.2.45" + ], + "vue-router": [ + "4.1.6_vue_3.2.45" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__html-minifier-terser__6.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "html-minifier-terser", + "version": "6.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "url": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.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": false + } + }, + "npm__human-signals__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "human-signals", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "url": "https://registry.npmjs.org/human-signals/-/human-signals-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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__retry__0.13.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "retry", + "version": "0.13.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "retry": [ + "0.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_ampproject_remapping__2.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@ampproject/remapping", + "version": "2.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "url": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-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": false + } + }, + "npm__at_xtuc_ieee754__1.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@xtuc/ieee754", + "version": "1.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "url": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-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": false + } + }, + "npm__regenerator-transform__0.15.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regenerator-transform", + "version": "0.15.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.1" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.1" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regenerator-transform": [ + "0.15.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tr46__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tr46", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "url": "https://registry.npmjs.org/tr46/-/tr46-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@sinclair/typebox": [ + "0.27.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__domelementtype__2.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "domelementtype", + "version": "2.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "domelementtype": [ + "2.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-jsx__7.23.3__at_babel_core_7.23.5__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.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-jsx-a11y__6.7.1__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-jsx-a11y", + "version": "6.7.1_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "url": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.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": false + } + }, + "npm__path-type__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-type", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "pify": "3.0.0" + }, + "transitive_closure": { + "path-type": [ + "3.0.0" + ], + "pify": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__fs-monkey__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fs-monkey", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", + "url": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-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": false + } + }, + "npm__dom-serializer__1.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dom-serializer", + "version": "1.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "domelementtype": "2.3.0", + "domhandler": "4.3.1", + "entities": "2.2.0" + }, + "transitive_closure": { + "dom-serializer": [ + "1.4.1" + ], + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ], + "entities": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__mkdirp__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mkdirp", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "url": "https://registry.npmjs.org/mkdirp/-/mkdirp-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_eslint__8.56.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/eslint", + "version": "8.56.5", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@types/eslint" + ] + }, + "deps": { + "@types/estree": "1.0.2", + "@types/json-schema": "7.0.13" + }, + "transitive_closure": { + "@types/eslint": [ + "8.56.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/json-schema": [ + "7.0.13" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_is-odd__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/is-odd", + "version": "3.0.2", + "dev": true, + "root_package": "", + "link_packages": { + "packages/one": [ + "@types/is-odd" + ] + }, + "deps": {}, + "transitive_closure": { + "@types/is-odd": [ + "3.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_is-odd__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/is-odd", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": { + "packages/one": [ + "@types/is-odd" + ] + }, + "integrity": "sha512-a/mE50FokBkPY86oocj/oorgDaYjT+l2EGSVLwbAUFwjOpFFDlbqHW5I9FS0cISLxmuDRr1J26znAy88UkHUbg==", + "url": "https://registry.npmjs.org/@types/is-odd/-/is-odd-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": false + } + }, + "npm__at_testing-library_jest-dom__4.2.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@testing-library/jest-dom", + "version": "4.2.4", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@testing-library/jest-dom" + ], + "react": [ + "@testing-library/jest-dom" + ] + }, + "deps": { + "@babel/runtime": "7.23.1", + "chalk": "2.4.2", + "css": "2.2.4", + "css.escape": "1.5.1", + "jest-diff": "24.9.0", + "jest-matcher-utils": "24.9.0", + "lodash": "4.17.21", + "pretty-format": "24.9.0", + "redent": "3.0.0" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.1" + ], + "@jest/types": [ + "24.9.0" + ], + "@testing-library/jest-dom": [ + "4.2.4" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "1.1.2" + ], + "@types/yargs": [ + "13.0.12" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-regex": [ + "4.1.1" + ], + "ansi-styles": [ + "3.2.1" + ], + "atob": [ + "2.1.2" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "css": [ + "2.2.4" + ], + "css.escape": [ + "1.5.1" + ], + "decode-uri-component": [ + "0.2.2" + ], + "diff-sequences": [ + "24.9.0" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "indent-string": [ + "4.0.0" + ], + "inherits": [ + "2.0.4" + ], + "jest-diff": [ + "24.9.0" + ], + "jest-get-type": [ + "24.9.0" + ], + "jest-matcher-utils": [ + "24.9.0" + ], + "lodash": [ + "4.17.21" + ], + "min-indent": [ + "1.0.1" + ], + "pretty-format": [ + "24.9.0" + ], + "react-is": [ + "16.13.1" + ], + "redent": [ + "3.0.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "resolve-url": [ + "0.2.1" + ], + "source-map": [ + "0.6.1" + ], + "source-map-resolve": [ + "0.5.3" + ], + "source-map-url": [ + "0.4.1" + ], + "strip-indent": [ + "3.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "urix": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helpers__7.23.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helpers", + "version": "7.23.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==", + "url": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.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": false + } + }, + "npm__cssstyle__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cssstyle", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==", + "url": "https://registry.npmjs.org/cssstyle/-/cssstyle-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": false + } + }, + "npm__at_types_estree__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/estree", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "url": "https://registry.npmjs.org/@types/estree/-/estree-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": false + } + }, + "npm__at_babel_helpers__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helpers", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==", + "url": "https://registry.npmjs.org/@babel/helpers/-/helpers-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": false + } + }, + "npm__at_types_estree__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/estree", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==", + "url": "https://registry.npmjs.org/@types/estree/-/estree-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": false + } + }, + "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": false + } + }, + "npm__at_babel_preset-typescript__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/preset-typescript", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", + "url": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-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": false + } + }, + "npm__eslint-import-resolver-typescript__3.6.1__237066510": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-import-resolver-typescript", + "version": "3.6.1_237066510", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", + "url": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_compat-data__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/compat-data", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "url": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-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": false + } + }, + "npm__at_esbuild_netbsd-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/netbsd-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/netbsd-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": { + "sveltekit_ts": [ + "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": false + } + }, + "npm__path-key__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-key", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "url": "https://registry.npmjs.org/path-key/-/path-key-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": false + } + }, + "npm__minimatch__9.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimatch", + "version": "9.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "url": "https://registry.npmjs.org/minimatch/-/minimatch-9.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": false + } + }, + "npm__esbuild__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@esbuild/android-arm": "0.15.18", + "@esbuild/linux-loong64": "0.15.18", + "esbuild-android-64": "0.15.18", + "esbuild-android-arm64": "0.15.18", + "esbuild-darwin-64": "0.15.18", + "esbuild-darwin-arm64": "0.15.18", + "esbuild-freebsd-64": "0.15.18", + "esbuild-freebsd-arm64": "0.15.18", + "esbuild-linux-32": "0.15.18", + "esbuild-linux-64": "0.15.18", + "esbuild-linux-arm": "0.15.18", + "esbuild-linux-arm64": "0.15.18", + "esbuild-linux-mips64le": "0.15.18", + "esbuild-linux-ppc64le": "0.15.18", + "esbuild-linux-riscv64": "0.15.18", + "esbuild-linux-s390x": "0.15.18", + "esbuild-netbsd-64": "0.15.18", + "esbuild-openbsd-64": "0.15.18", + "esbuild-sunos-64": "0.15.18", + "esbuild-windows-32": "0.15.18", + "esbuild-windows-64": "0.15.18", + "esbuild-windows-arm64": "0.15.18" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__utila__0.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "utila", + "version": "0.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "url": "https://registry.npmjs.org/utila/-/utila-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": false + } + }, + "npm__at_types_semver__7.5.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/semver", + "version": "7.5.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/semver": [ + "7.5.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jsx-ast-utils__3.3.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jsx-ast-utils", + "version": "3.3.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-includes": "3.1.7", + "array.prototype.flat": "1.3.2", + "object.assign": "4.1.4", + "object.values": "1.1.7" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "jsx-ast-utils": [ + "3.3.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.values": [ + "1.1.7" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_yargs__13.0.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/yargs", + "version": "13.0.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "url": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.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": false + } + }, + "npm__at_babel_plugin-transform-exponentiation-operator__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-exponentiation-operator", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "y18n": [ + "5.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-import__2.28.1__eslint_8.28.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-import", + "version": "2.28.1_eslint_8.28.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-includes": "3.1.7", + "array.prototype.findlastindex": "1.2.3", + "array.prototype.flat": "1.3.2", + "array.prototype.flatmap": "1.3.2", + "debug": "3.2.7", + "doctrine": "2.1.0", + "eslint": "8.28.0", + "eslint-import-resolver-node": "0.3.9", + "eslint-module-utils": "2.8.0_-993259024", + "has": "1.0.3", + "is-core-module": "2.13.0", + "is-glob": "4.0.3", + "minimatch": "3.1.2", + "object.fromentries": "2.0.7", + "object.groupby": "1.0.1", + "object.values": "1.1.7", + "semver": "6.3.1", + "tsconfig-paths": "3.14.2" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/json5": [ + "0.0.29" + ], + "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-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array.prototype.findlastindex": [ + "1.2.3" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "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": [ + "3.2.7", + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-module-utils": [ + "2.8.0_-993259024" + ], + "eslint-plugin-import": [ + "2.28.1_eslint_8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "js-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "keyv": [ + "4.5.3" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.8" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.groupby": [ + "1.0.1" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "tsconfig-paths": [ + "3.14.2" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string-length__4.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string-length", + "version": "4.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "char-regex": "1.0.2", + "strip-ansi": "6.0.1" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "char-regex": [ + "1.0.2" + ], + "string-length": [ + "4.0.2" + ], + "strip-ansi": [ + "6.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pify__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pify", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pify": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-environment-jsdom__29.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-environment-jsdom", + "version": "29.5.0", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "jest-environment-jsdom" + ] + }, + "deps": { + "@jest/environment": "29.7.0", + "@jest/fake-timers": "29.7.0", + "@jest/types": "29.6.3", + "@types/jsdom": "20.0.1", + "@types/node": "18.19.18", + "jest-mock": "29.7.0", + "jest-util": "29.7.0", + "jsdom": "20.0.3" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@tootallnate/once": [ + "2.0.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/jsdom": [ + "20.0.1" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/tough-cookie": [ + "4.0.3" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "abab": [ + "2.0.6" + ], + "acorn": [ + "8.10.0" + ], + "acorn-globals": [ + "7.0.1" + ], + "acorn-walk": [ + "8.3.1" + ], + "agent-base": [ + "6.0.2" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "asynckit": [ + "0.4.0" + ], + "braces": [ + "3.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "combined-stream": [ + "1.0.8" + ], + "cssom": [ + "0.3.8", + "0.5.0" + ], + "cssstyle": [ + "2.3.0" + ], + "data-urls": [ + "3.0.2" + ], + "debug": [ + "4.3.4" + ], + "decimal.js": [ + "10.4.3" + ], + "delayed-stream": [ + "1.0.0" + ], + "domexception": [ + "4.0.0" + ], + "entities": [ + "4.5.0" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "escodegen": [ + "2.1.0" + ], + "esprima": [ + "4.0.1" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fill-range": [ + "7.0.1" + ], + "form-data": [ + "4.0.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "html-encoding-sniffer": [ + "3.0.0" + ], + "http-proxy-agent": [ + "5.0.0" + ], + "https-proxy-agent": [ + "5.0.1" + ], + "iconv-lite": [ + "0.6.3" + ], + "is-number": [ + "7.0.0" + ], + "is-potential-custom-element-name": [ + "1.0.1" + ], + "jest-environment-jsdom": [ + "29.5.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsdom": [ + "20.0.3" + ], + "micromatch": [ + "4.0.5" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.1.2" + ], + "nwsapi": [ + "2.2.7" + ], + "parse5": [ + "7.1.2" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "psl": [ + "1.9.0" + ], + "punycode": [ + "2.3.1" + ], + "querystringify": [ + "2.2.0" + ], + "react-is": [ + "18.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "safer-buffer": [ + "2.1.2" + ], + "saxes": [ + "6.0.0" + ], + "slash": [ + "3.0.0" + ], + "source-map": [ + "0.6.1" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "symbol-tree": [ + "3.2.4" + ], + "to-regex-range": [ + "5.0.1" + ], + "tough-cookie": [ + "4.1.3" + ], + "tr46": [ + "3.0.0" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ], + "universalify": [ + "0.2.0" + ], + "url-parse": [ + "1.5.10" + ], + "w3c-xmlserializer": [ + "4.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-encoding": [ + "2.0.0" + ], + "whatwg-mimetype": [ + "3.0.0" + ], + "whatwg-url": [ + "11.0.0" + ], + "ws": [ + "8.14.2" + ], + "xml-name-validator": [ + "4.0.0" + ], + "xmlchars": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vite-node__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite-node", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==", + "url": "https://registry.npmjs.org/vite-node/-/vite-node-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": false + } + }, + "npm__jsonc-parser__3.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jsonc-parser", + "version": "3.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "url": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-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": false + } + }, + "npm__require-from-string__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "require-from-string", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "require-from-string": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__array-includes__3.1.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array-includes", + "version": "3.1.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "get-intrinsic": "1.2.1", + "is-string": "1.0.7" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-remove-jsx-attribute__8.0.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-remove-jsx-attribute", + "version": "8.0.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-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": false + } + }, + "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": false + } + }, + "npm__postcss-safe-parser__6.0.0__postcss_8.4.35__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss-safe-parser", + "version": "6.0.0_postcss_8.4.35", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "postcss": "8.4.35" + }, + "transitive_closure": { + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "postcss-safe-parser": [ + "6.0.0_postcss_8.4.35" + ], + "source-map-js": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__minimalistic-assert__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "minimalistic-assert", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "url": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-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": false + } + }, + "npm__yargs-parser__21.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yargs-parser", + "version": "21.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yargs-parser": [ + "21.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__mrmime__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mrmime", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "url": "https://registry.npmjs.org/mrmime/-/mrmime-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": false + } + }, + "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.3", + "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.3" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-darwin-x64__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-darwin-x64", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-darwin-x64": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-json-strings__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-json-strings", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-json-strings": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-json-strings": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdx-correct__3.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "spdx-correct", + "version": "3.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "spdx-expression-parse": "3.0.1", + "spdx-license-ids": "3.0.15" + }, + "transitive_closure": { + "spdx-correct": [ + "3.2.0" + ], + "spdx-exceptions": [ + "2.3.0" + ], + "spdx-expression-parse": [ + "3.0.1" + ], + "spdx-license-ids": [ + "3.0.15" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-openbsd-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-openbsd-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==", + "url": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.18.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": false + } + }, + "npm__jest-matcher-utils__24.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-matcher-utils", + "version": "24.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", + "url": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.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": false + } + }, + "npm__array.prototype.flat__1.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array.prototype.flat", + "version": "1.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "url": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-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": false + } + }, + "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": false + } + }, + "npm__istanbul-lib-report__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "istanbul-lib-report", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "url": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-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": false + } + }, + "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": false + } + }, + "npm__at_volar_typescript__1.0.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@volar/typescript", + "version": "1.0.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@volar/language-core": "1.0.9" + }, + "transitive_closure": { + "@volar/language-core": [ + "1.0.9" + ], + "@volar/source-map": [ + "1.0.9" + ], + "@volar/typescript": [ + "1.0.9" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "muggle-string": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_express-serve-static-core__4.17.37": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/express-serve-static-core", + "version": "4.17.37", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==", + "url": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz", + "commit": "", + "patch_args": [], + "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__array.prototype.tosorted__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array.prototype.tosorted", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "es-shim-unscopables": "1.0.0", + "get-intrinsic": "1.2.1" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "array.prototype.tosorted": [ + "1.1.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webpack-dev-middleware__5.3.3__webpack_5.89.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "webpack-dev-middleware", + "version": "5.3.3_webpack_5.89.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "colorette": "2.0.20", + "memfs": "3.5.3", + "mime-types": "2.1.35", + "range-parser": "1.2.1", + "schema-utils": "4.2.0", + "webpack": "5.89.0_-1501518582" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-linux-x64-musl__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-linux-x64-musl", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_volar_typescript__1.0.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@volar/typescript", + "version": "1.0.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dVziu+ShQUWuMukM6bvK2v2O446/gG6l1XkTh2vfkccw1IzjfbiP1TWQoNo1ipTfZOtu5YJGYAx+o5HNrGXWfQ==", + "url": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.0.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": false + } + }, + "npm__makeerror__1.0.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "makeerror", + "version": "1.0.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tmpl": "1.0.5" + }, + "transitive_closure": { + "makeerror": [ + "1.0.12" + ], + "tmpl": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_scope-manager__7.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/scope-manager", + "version": "7.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "7.2.0", + "@typescript-eslint/visitor-keys": "7.2.0" + }, + "transitive_closure": { + "@typescript-eslint/scope-manager": [ + "7.2.0" + ], + "@typescript-eslint/types": [ + "7.2.0" + ], + "@typescript-eslint/visitor-keys": [ + "7.2.0" + ], + "eslint-visitor-keys": [ + "3.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_test-sequencer__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/test-sequencer", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "url": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-darwin-x64__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-darwin-x64", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LoSU9Xu56isrkV2jLldcKspJ7sSXmZWkAxg7sW/RfF7GS4F5/v4EiqKSMCFbZtDu2Nc1gxxFdQdKwkKS4rwxNg==", + "url": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.6.1.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": false + } + }, + "npm__reflect.getprototypeof__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "reflect.getprototypeof", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "url": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-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": false + } + }, + "npm__at_babel_plugin-transform-member-expression-literals__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-member-expression-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-member-expression-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_freebsd-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/freebsd-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==", + "url": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.8.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": false + } + }, + "npm__regenerate__1.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regenerate", + "version": "1.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "url": "https://registry.npmjs.org/regenerate/-/regenerate-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": false + } + }, + "npm__at_vitejs_plugin-vue-jsx__2.1.1__vite_3.2.8__vue_3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitejs/plugin-vue-jsx", + "version": "2.1.1_vite_3.2.8__vue_3.2.45", + "dev": true, + "root_package": "", + "link_packages": { + "vue": [ + "@vitejs/plugin-vue-jsx" + ] + }, + "deps": { + "@babel/core": "7.23.0", + "@babel/plugin-transform-typescript": "7.22.15_at_babel_core_7.23.0", + "@vue/babel-plugin-jsx": "1.1.5_at_babel_core_7.23.0", + "vite": "3.2.8_at_types_node_18.19.18", + "vue": "3.2.45" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.0" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.0" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.0" + ], + "@babel/plugin-transform-typescript": [ + "7.22.15_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/node": [ + "18.19.18" + ], + "@vitejs/plugin-vue-jsx": [ + "2.1.1_vite_3.2.8__vue_3.2.45" + ], + "@vue/babel-helper-vue-transform-on": [ + "1.1.5" + ], + "@vue/babel-plugin-jsx": [ + "1.1.5_at_babel_core_7.23.0" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/compiler-sfc": [ + "3.2.45" + ], + "@vue/compiler-ssr": [ + "3.2.45" + ], + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/reactivity-transform": [ + "3.2.45" + ], + "@vue/runtime-core": [ + "3.2.45" + ], + "@vue/runtime-dom": [ + "3.2.45" + ], + "@vue/server-renderer": [ + "3.2.45_vue_3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "camelcase": [ + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "csstype": [ + "2.6.21" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "estree-walker": [ + "2.0.2" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "html-tags": [ + "3.3.1" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "magic-string": [ + "0.25.9" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "resolve": [ + "1.22.6" + ], + "rollup": [ + "2.79.1" + ], + "semver": [ + "6.3.1" + ], + "source-map": [ + "0.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "svg-tags": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "vite": [ + "3.2.8_at_types_node_18.19.18" + ], + "vue": [ + "3.2.45" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-lib-instrument__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "istanbul-lib-instrument", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/parser": "7.23.5", + "@istanbuljs/schema": "0.1.3", + "istanbul-lib-coverage": "3.2.0", + "semver": "7.5.4" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "6.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__set-cookie-parser__2.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "set-cookie-parser", + "version": "2.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "set-cookie-parser": [ + "2.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitest_runner__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/runner", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==", + "url": "https://registry.npmjs.org/@vitest/runner/-/runner-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": false + } + }, + "npm__at_volar_language-core__1.0.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@volar/language-core", + "version": "1.0.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5Fty3slLet6svXiJw2YxhYeo6c7wFdtILrql5bZymYLM+HbiZtJbryW1YnUEKAP7MO9Mbeh+TNH4Z0HFxHgIqw==", + "url": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.0.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": false + } + }, + "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.1.0" + }, + "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.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "json-buffer": [ + "3.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__onetime__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "onetime", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "url": "https://registry.npmjs.org/onetime/-/onetime-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__which-typed-array__1.1.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "which-typed-array", + "version": "1.1.11", + "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.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__npm-run-path__5.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "npm-run-path", + "version": "5.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "url": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_android-arm__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/android-arm", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==", + "url": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.18.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": false + } + }, + "npm__at_esbuild_darwin-arm64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/darwin-arm64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==", + "url": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.8.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-parse": [ + "1.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-lib-report__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "istanbul-lib-report", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "istanbul-lib-coverage": "3.2.0", + "make-dir": "4.0.0", + "supports-color": "7.2.0" + }, + "transitive_closure": { + "has-flag": [ + "4.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-report": [ + "3.0.1" + ], + "lru-cache": [ + "6.0.0" + ], + "make-dir": [ + "4.0.0" + ], + "semver": [ + "7.5.4" + ], + "supports-color": [ + "7.2.0" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__resolve-pkg-maps__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve-pkg-maps", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "resolve-pkg-maps": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-config-react-app__7.0.1__-1232442389": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-config-react-app", + "version": "7.0.1_-1232442389", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "eslint-config-react-app" + ] + }, + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "url": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-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": false + } + }, + "npm__at_babel_plugin-syntax-jsx__7.22.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-jsx", + "version": "7.22.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-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": false + } + }, + "npm__function.prototype.name__1.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "function.prototype.name", + "version": "1.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "url": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-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": false + } + }, + "npm__whatwg-url__11.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "whatwg-url", + "version": "11.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tr46": "3.0.0", + "webidl-conversions": "7.0.0" + }, + "transitive_closure": { + "punycode": [ + "2.3.1" + ], + "tr46": [ + "3.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-url": [ + "11.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-jsx__7.22.5__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-jsx", + "version": "7.22.5_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-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": false + } + }, + "npm__known-css-properties__0.29.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "known-css-properties", + "version": "0.29.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "known-css-properties": [ + "0.29.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__regenerate-unicode-properties__10.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regenerate-unicode-properties", + "version": "10.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "regenerate": "1.4.2" + }, + "transitive_closure": { + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-dom__3.2.37__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-dom", + "version": "3.2.37", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-core": "3.2.37", + "@vue/shared": "3.2.37" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.37" + ], + "@vue/compiler-dom": [ + "3.2.37" + ], + "@vue/shared": [ + "3.2.37" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map": [ + "0.6.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-windows-arm64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-windows-arm64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==", + "url": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.18.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": false + } + }, + "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": false + } + }, + "npm__shallow-clone__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "shallow-clone", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "kind-of": "6.0.3" + }, + "transitive_closure": { + "kind-of": [ + "6.0.3" + ], + "shallow-clone": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-import-attributes__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-import-attributes", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-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": false + } + }, + "npm__tr46__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tr46", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", + "url": "https://registry.npmjs.org/tr46/-/tr46-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jsx-ast-utils__3.3.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jsx-ast-utils", + "version": "3.3.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "url": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.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": false + } + }, + "npm__jest-worker__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-worker", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18", + "jest-util": "29.7.0", + "merge-stream": "2.0.0", + "supports-color": "8.1.1" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "4.0.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "merge-stream": [ + "2.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__next__13.0.5__-1955910335": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "next", + "version": "13.0.5_-1955910335", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "next" + ] + }, + "integrity": "sha512-awpc3DkphyKydwCotcBnuKwh6hMqkT5xdiBK4OatJtOZurDPBYLP62jtM2be/4OunpmwIbsS0Eyv+ZGU97ciEg==", + "url": "https://registry.npmjs.org/next/-/next-13.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": false + } + }, + "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": { + "next.js": [ + "react-dom" + ], + "react": [ + "react-dom" + ], + "react-webpack": [ + "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": false + } + }, + "npm__at_webassemblyjs_wasm-gen__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/wasm-gen", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "url": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.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": false + } + }, + "npm__vite__5.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite", + "version": "5.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MD3joyAEBtV7QZPl2JVVUai6zHms3YOmLR+BpMzLlX2Yzjfcc4gTgNi09d/Rua3F4EtC8zdwPU8eQYyib4vVMQ==", + "url": "https://registry.npmjs.org/vite/-/vite-5.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": false + } + }, + "npm__dot-case__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dot-case", + "version": "3.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "no-case": "3.0.4", + "tslib": "2.6.2" + }, + "transitive_closure": { + "dot-case": [ + "3.0.4" + ], + "lower-case": [ + "2.0.2" + ], + "no-case": [ + "3.0.4" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitest_spy__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/spy", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tinyspy": "2.2.0" + }, + "transitive_closure": { + "@vitest/spy": [ + "1.0.2" + ], + "tinyspy": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__aria-query__5.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "aria-query", + "version": "5.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "url": "https://registry.npmjs.org/aria-query/-/aria-query-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "jest-get-type": [ + "29.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-loong64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-loong64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==", + "url": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.18.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": false + } + }, + "npm__at_babel_plugin-transform-block-scoped-functions__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-block-scoped-functions", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-block-scoped-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__domelementtype__2.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "domelementtype", + "version": "2.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "url": "https://registry.npmjs.org/domelementtype/-/domelementtype-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": false + } + }, + "npm__iconv-lite__0.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "iconv-lite", + "version": "0.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "url": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-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": false + } + }, + "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": false + } + }, + "npm__core-js-compat__3.34.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "core-js-compat", + "version": "3.34.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "browserslist": "4.22.2" + }, + "transitive_closure": { + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "core-js-compat": [ + "3.34.0" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdx-exceptions__2.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "spdx-exceptions", + "version": "2.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "url": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-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": false + } + }, + "npm__https-proxy-agent__7.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "https-proxy-agent", + "version": "7.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "url": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.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": false + } + }, + "npm__jest-matcher-utils__24.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-matcher-utils", + "version": "24.9.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "chalk": "2.4.2", + "jest-diff": "24.9.0", + "jest-get-type": "24.9.0", + "pretty-format": "24.9.0" + }, + "transitive_closure": { + "@jest/types": [ + "24.9.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "1.1.2" + ], + "@types/yargs": [ + "13.0.12" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-regex": [ + "4.1.1" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "diff-sequences": [ + "24.9.0" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "jest-diff": [ + "24.9.0" + ], + "jest-get-type": [ + "24.9.0" + ], + "jest-matcher-utils": [ + "24.9.0" + ], + "pretty-format": [ + "24.9.0" + ], + "react-is": [ + "16.13.1" + ], + "supports-color": [ + "5.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-nullish-coalescing-operator__7.8.3__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-nullish-coalescing-operator", + "version": "7.8.3_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ajv-keywords__3.5.2__ajv_6.12.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ajv-keywords", + "version": "3.5.2_ajv_6.12.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "url": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__kleur__3.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "kleur", + "version": "3.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "kleur": [ + "3.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__html-encoding-sniffer__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "html-encoding-sniffer", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "whatwg-encoding": "2.0.0" + }, + "transitive_closure": { + "html-encoding-sniffer": [ + "3.0.0" + ], + "iconv-lite": [ + "0.6.3" + ], + "safer-buffer": [ + "2.1.2" + ], + "whatwg-encoding": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-riscv64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-riscv64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==", + "url": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.8.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": false + } + }, + "npm__at_typescript-eslint_experimental-utils__5.62.0__1986444992__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/experimental-utils", + "version": "5.62.0_1986444992", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/utils": "5.62.0_1986444992", + "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.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/experimental-utils": [ + "5.62.0_1986444992" + ], + "@typescript-eslint/scope-manager": [ + "5.62.0" + ], + "@typescript-eslint/types": [ + "5.62.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.62.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.62.0_1986444992" + ], + "@typescript-eslint/visitor-keys": [ + "5.62.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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-visitor-keys": [ + "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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__watchpack__2.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "watchpack", + "version": "2.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "url": "https://registry.npmjs.org/watchpack/-/watchpack-2.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": false + } + }, + "npm__yargs-parser__21.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yargs-parser", + "version": "21.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "url": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.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": false + } + }, + "npm__at_typescript-eslint_typescript-estree__7.2.0__typescript_5.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/typescript-estree", + "version": "7.2.0_typescript_5.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", + "url": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sisteransi__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sisteransi", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "url": "https://registry.npmjs.org/sisteransi/-/sisteransi-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": false + } + }, + "npm__at_typescript-eslint_type-utils__5.44.0__1986444992": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/type-utils", + "version": "5.44.0_1986444992", + "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": false + } + }, + "npm__es-set-tostringtag__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-set-tostringtag", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "url": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-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": false + } + }, + "npm__string.prototype.matchall__4.0.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.matchall", + "version": "4.0.10", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "get-intrinsic": "1.2.1", + "has-symbols": "1.0.3", + "internal-slot": "1.0.5", + "regexp.prototype.flags": "1.5.1", + "set-function-name": "2.0.1", + "side-channel": "1.0.4" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.matchall": [ + "4.0.10" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__jest-runtime__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-runtime", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "url": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-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": false + } + }, + "npm__at_babel_plugin-syntax-object-rest-spread__7.8.3__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-object-rest-spread", + "version": "7.8.3_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.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": false + } + }, + "npm__at_vue_compiler-sfc__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-sfc", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.0", + "@vue/compiler-core": "3.2.45", + "@vue/compiler-dom": "3.2.45", + "@vue/compiler-ssr": "3.2.45", + "@vue/reactivity-transform": "3.2.45", + "@vue/shared": "3.2.45", + "estree-walker": "2.0.2", + "magic-string": "0.25.9", + "postcss": "8.4.32", + "source-map": "0.6.1" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/compiler-sfc": [ + "3.2.45" + ], + "@vue/compiler-ssr": [ + "3.2.45" + ], + "@vue/reactivity-transform": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.25.9" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "source-map": [ + "0.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_ast__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/ast", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + }, + "transitive_closure": { + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__data-urls__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "data-urls", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "url": "https://registry.npmjs.org/data-urls/-/data-urls-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": false + } + }, + "npm__confusing-browser-globals__1.0.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "confusing-browser-globals", + "version": "1.0.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "url": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-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": false + } + }, + "npm__at_babel_plugin-syntax-jsx__7.22.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-jsx", + "version": "7.22.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__kind-of__3.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "kind-of", + "version": "3.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "url": "https://registry.npmjs.org/kind-of/-/kind-of-3.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": false + } + }, + "npm__at_babel_compat-data__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/compat-data", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/compat-data": [ + "7.23.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_parser__5.44.0__1986444992": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "5.44.0_1986444992", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "@typescript-eslint/parser" + ] + }, + "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": false + } + }, + "npm__get-stream__6.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-stream", + "version": "6.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "get-stream": [ + "6.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-unicode-escapes__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-unicode-escapes", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_core__8.1.0__typescript_4.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/core", + "version": "8.1.0_typescript_4.9.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", + "url": "https://registry.npmjs.org/@svgr/core/-/core-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": false + } + }, + "npm__webpack__5.89.0__-1501518582__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "webpack", + "version": "5.89.0_-1501518582", + "dev": true, + "root_package": "", + "link_packages": { + "react-webpack": [ + "webpack" + ] + }, + "deps": { + "@types/eslint-scope": "3.7.5", + "@types/estree": "1.0.2", + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/wasm-edit": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "acorn": "8.10.0", + "acorn-import-assertions": "1.9.0_acorn_8.10.0", + "browserslist": "4.22.1", + "chrome-trace-event": "1.0.3", + "enhanced-resolve": "5.15.0", + "es-module-lexer": "1.3.1", + "eslint-scope": "5.1.1", + "events": "3.3.0", + "glob-to-regexp": "0.4.1", + "graceful-fs": "4.2.11", + "json-parse-even-better-errors": "2.3.1", + "loader-runner": "4.3.0", + "mime-types": "2.1.35", + "neo-async": "2.6.2", + "schema-utils": "3.3.0", + "tapable": "2.2.1", + "terser-webpack-plugin": "5.3.9_1251614587", + "watchpack": "2.4.0", + "webpack-cli": "5.1.4_34022717", + "webpack-sources": "3.2.3" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__websocket-driver__0.7.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "websocket-driver", + "version": "0.7.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "http-parser-js": "0.5.8", + "safe-buffer": "5.2.1", + "websocket-extensions": "0.1.4" + }, + "transitive_closure": { + "http-parser-js": [ + "0.5.8" + ], + "safe-buffer": [ + "5.2.1" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-android-arm64__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-android-arm64", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-android-arm64": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-module-utils__2.8.0__2031701610": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-module-utils", + "version": "2.8.0_2031701610", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "url": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-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": false + } + }, + "npm__emittery__0.13.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "emittery", + "version": "0.13.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "url": "https://registry.npmjs.org/emittery/-/emittery-0.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": false + } + }, + "npm__is-array-buffer__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-array-buffer", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "url": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-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": false + } + }, + "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": false + } + }, + "npm__eslint-module-utils__2.8.0__-1048923313": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-module-utils", + "version": "2.8.0_-1048923313", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "url": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__typed-array-byte-offset__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "typed-array-byte-offset", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "available-typed-arrays": "1.0.5", + "call-bind": "1.0.2", + "for-each": "0.3.3", + "has-proto": "1.0.1", + "is-typed-array": "1.1.12" + }, + "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.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.12" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vite__3.2.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite", + "version": "3.2.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fsevents": "2.3.3", + "esbuild": "0.15.18", + "postcss": "8.4.32", + "resolve": "1.22.6", + "rollup": "2.79.1" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ], + "nanoid": [ + "3.3.7" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "resolve": [ + "1.22.6" + ], + "rollup": [ + "2.79.1" + ], + "source-map-js": [ + "1.0.2" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "vite": [ + "3.2.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-typescript__7.22.15__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-typescript", + "version": "7.22.15_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.0", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-typescript": "7.22.5_at_babel_core_7.23.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.0" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.0" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.0" + ], + "@babel/plugin-transform-typescript": [ + "7.22.15_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_testing-library_react__13.4.0__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": "13.4.0_react-dom_18.2.0__react_18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@testing-library/react" + ], + "react": [ + "@testing-library/react" + ] + }, + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "url": "https://registry.npmjs.org/@testing-library/react/-/react-13.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": false + } + }, + "npm__at_esbuild_linux-mips64el__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-mips64el", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==", + "url": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.8.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": false + } + }, + "npm__axobject-query__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "axobject-query", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==", + "url": "https://registry.npmjs.org/axobject-query/-/axobject-query-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": false + } + }, + "npm__pirates__4.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pirates", + "version": "4.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "url": "https://registry.npmjs.org/pirates/-/pirates-4.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": false + } + }, + "npm__at_rollup_rollup-linux-arm64-musl__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-linux-arm64-musl", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__muggle-string__0.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "muggle-string", + "version": "0.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==", + "url": "https://registry.npmjs.org/muggle-string/-/muggle-string-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": false + } + }, + "npm__array-includes__3.1.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array-includes", + "version": "3.1.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "url": "https://registry.npmjs.org/array-includes/-/array-includes-3.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": false + } + }, + "npm__selfsigned__2.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "selfsigned", + "version": "2.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "node-forge": "1.3.1" + }, + "transitive_closure": { + "node-forge": [ + "1.3.1" + ], + "selfsigned": [ + "2.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-mock__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-mock", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "url": "https://registry.npmjs.org/jest-mock/-/jest-mock-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": false + } + }, + "npm__mimic-fn__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mimic-fn", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mimic-fn": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_android-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/android-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==", + "url": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.8.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": false + } + }, + "npm__at_jridgewell_trace-mapping__0.3.19": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/trace-mapping", + "version": "0.3.19", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "url": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.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": false + } + }, + "npm__axobject-query__3.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "axobject-query", + "version": "3.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "url": "https://registry.npmjs.org/axobject-query/-/axobject-query-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": false + } + }, + "npm__minimist__1.2.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimist", + "version": "1.2.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "minimist": [ + "1.2.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__exit__0.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "exit", + "version": "0.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "url": "https://registry.npmjs.org/exit/-/exit-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "emoji-regex": [ + "8.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__execa__8.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "execa", + "version": "8.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "cross-spawn": "7.0.3", + "get-stream": "8.0.1", + "human-signals": "5.0.0", + "is-stream": "3.0.0", + "merge-stream": "2.0.0", + "npm-run-path": "5.1.0", + "onetime": "6.0.0", + "signal-exit": "4.1.0", + "strip-final-newline": "3.0.0" + }, + "transitive_closure": { + "cross-spawn": [ + "7.0.3" + ], + "execa": [ + "8.0.1" + ], + "get-stream": [ + "8.0.1" + ], + "human-signals": [ + "5.0.0" + ], + "is-stream": [ + "3.0.0" + ], + "isexe": [ + "2.0.0" + ], + "merge-stream": [ + "2.0.0" + ], + "mimic-fn": [ + "4.0.0" + ], + "npm-run-path": [ + "5.1.0" + ], + "onetime": [ + "6.0.0" + ], + "path-key": [ + "3.1.1", + "4.0.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "signal-exit": [ + "4.1.0" + ], + "strip-final-newline": [ + "3.0.0" + ], + "which": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_types__7.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/types", + "version": "7.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@typescript-eslint/types": [ + "7.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-number": [ + "7.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_eslint-community_regexpp__4.10.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint-community/regexpp", + "version": "4.10.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@eslint-community/regexpp": [ + "4.10.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__convert-source-map__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "convert-source-map", + "version": "2.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "convert-source-map": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string.prototype.trim__1.2.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.trim", + "version": "1.2.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__makeerror__1.0.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "makeerror", + "version": "1.0.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "url": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.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": false + } + }, + "npm__at_babel_plugin-syntax-decorators__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-decorators", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-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": false + } + }, + "npm__agent-base__7.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "agent-base", + "version": "7.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "url": "https://registry.npmjs.org/agent-base/-/agent-base-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_typescript-eslint_utils__5.44.0__1986444992__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "5.44.0_1986444992", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/json-schema": "7.0.13", + "@types/semver": "7.5.3", + "@typescript-eslint/scope-manager": "5.44.0", + "@typescript-eslint/types": "5.44.0", + "@typescript-eslint/typescript-estree": "5.44.0_typescript_4.9.3", + "eslint": "8.57.0", + "eslint-scope": "5.1.1", + "eslint-utils": "3.0.0_eslint_8.57.0", + "semver": "7.5.4" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_1986444992" + ], + "@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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.57.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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__no-case__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "no-case", + "version": "3.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "lower-case": "2.0.2", + "tslib": "2.6.2" + }, + "transitive_closure": { + "lower-case": [ + "2.0.2" + ], + "no-case": [ + "3.0.4" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__resolve.exports__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve.exports", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "resolve.exports": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-potential-custom-element-name__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-potential-custom-element-name", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "url": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-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": false + } + }, + "npm__at_babel_helper-replace-supers__7.22.20__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-replace-supers", + "version": "7.22.20_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-member-expression-to-functions": "7.23.0", + "@babel/helper-optimise-call-expression": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_express__4.17.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/express", + "version": "4.17.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/body-parser": "1.19.3", + "@types/express-serve-static-core": "4.17.37", + "@types/qs": "6.9.8", + "@types/serve-static": "1.15.3" + }, + "transitive_closure": { + "@types/body-parser": [ + "1.19.3" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_svgr_babel-plugin-remove-jsx-empty-expression__8.0.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-remove-jsx-empty-expression", + "version": "8.0.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-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": false + } + }, + "npm__at_svgr_babel-plugin-replace-jsx-attribute-value__8.0.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-replace-jsx-attribute-value", + "version": "8.0.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-replace-jsx-attribute-value": [ + "8.0.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__saxes__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "saxes", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "url": "https://registry.npmjs.org/saxes/-/saxes-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": false + } + }, + "npm__stop-iteration-iterator__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "stop-iteration-iterator", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "url": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-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": false + } + }, + "npm__at_esbuild_win32-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/win32-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==", + "url": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.8.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": false + } + }, + "npm__at_types_stack-utils__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/stack-utils", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/stack-utils": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__internal-slot__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "internal-slot", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-intrinsic": "1.2.1", + "has": "1.0.3", + "side-channel": "1.0.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "internal-slot": [ + "1.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "side-channel": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-reports__3.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "istanbul-reports", + "version": "3.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "url": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-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": false + } + }, + "npm__pascal-case__3.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pascal-case", + "version": "3.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "no-case": "3.0.4", + "tslib": "2.6.2" + }, + "transitive_closure": { + "lower-case": [ + "2.0.2" + ], + "no-case": [ + "3.0.4" + ], + "pascal-case": [ + "3.1.2" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__is-generator-fn__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-generator-fn", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "url": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-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": false + } + }, + "npm__source-map-support__0.5.13": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map-support", + "version": "0.5.13", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "url": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.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": false + } + }, + "npm__ufo__1.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ufo", + "version": "1.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==", + "url": "https://registry.npmjs.org/ufo/-/ufo-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": false + } + }, + "npm__at_babel_plugin-bugfix-v8-spread-parameters-in-optional-chaining__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "url": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-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": false + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "is-shared-array-buffer": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pathval__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pathval", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pathval": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__renderkid__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "renderkid", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "url": "https://registry.npmjs.org/renderkid/-/renderkid-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": false + } + }, + "npm__loupe__2.3.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "loupe", + "version": "2.3.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-func-name": "2.0.2" + }, + "transitive_closure": { + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__source-map-support__0.5.21": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map-support", + "version": "0.5.21", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "url": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.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": false + } + }, + "npm__at_babel_plugin-transform-dynamic-import__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-dynamic-import", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-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": false + } + }, + "npm__webpack-sources__3.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "webpack-sources", + "version": "3.2.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "webpack-sources": [ + "3.2.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_babel__generator__7.6.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/babel__generator", + "version": "7.6.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__envinfo__7.11.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "envinfo", + "version": "7.11.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "envinfo": [ + "7.11.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-linux-x64-gnu__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-linux-x64-gnu", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-linux-x64-gnu": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-linux-x64-gnu__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-linux-x64-gnu", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DNGZvZDO5YF7jN5fX8ZqmGLjZEXIJRdJEdTFMhiyXqyXubBa0WVLDWSNlQ5JR2PNgDbEV1VQowhVRUh+74D+RA==", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.6.1.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": false + } + }, + "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": false + } + }, + "npm__at_esbuild_netbsd-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/netbsd-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==", + "url": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.8.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": false + } + }, + "npm__at_rollup_rollup-android-arm64__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-android-arm64", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1TKm25Rn20vr5aTGGZqo6E4mzPicCUD79k17EgTLAsXc1zysyi4xXKACfUbwyANEPAEIxkzwue6JZ+stYzWUTA==", + "url": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.6.1.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": false + } + }, + "npm__source-map-js__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map-js", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "url": "https://registry.npmjs.org/source-map-js/-/source-map-js-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": false + } + }, + "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", + "espree": "9.6.1", + "globals": "13.22.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" + ], + "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.22.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.3.1" + ], + "resolve-from": [ + "4.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-import__2.28.1__-730496819": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-import", + "version": "2.28.1_-730496819", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "url": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__rimraf__2.7.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "rimraf", + "version": "2.7.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "url": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.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": false + } + }, + "npm__asynciterator.prototype__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "asynciterator.prototype", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "url": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-unicode-property-regex__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-unicode-property-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-api-error__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/helper-api-error", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__jest-leak-detector__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-leak-detector", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "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": [ + "5.2.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-leak-detector": [ + "29.7.0" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-private-methods__7.18.6__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-private-methods", + "version": "7.18.6_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-private-methods": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__function.prototype.name__1.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "function.prototype.name", + "version": "1.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "functions-have-names": "1.2.3" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ast-types-flow__0.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ast-types-flow", + "version": "0.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ast-types-flow": [ + "0.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-object-rest-spread__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-object-rest-spread", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.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": false + } + }, + "npm__postcss-selector-parser__6.0.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss-selector-parser", + "version": "6.0.15", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "cssesc": "3.0.0", + "util-deprecate": "1.0.2" + }, + "transitive_closure": { + "cssesc": [ + "3.0.0" + ], + "postcss-selector-parser": [ + "6.0.15" + ], + "util-deprecate": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_darwin-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/darwin-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/darwin-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__kind-of__3.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "kind-of", + "version": "3.2.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "is-buffer": "1.1.6" + }, + "transitive_closure": { + "is-buffer": [ + "1.1.6" + ], + "kind-of": [ + "3.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__css__2.2.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "css", + "version": "2.2.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "url": "https://registry.npmjs.org/css/-/css-2.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": false + } + }, + "npm__at_esbuild_linux-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_utils__5.62.0__1986444992": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "5.62.0_1986444992", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "url": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.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": false + } + }, + "npm__at_webpack-cli_configtest__2.1.1__-360275163": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webpack-cli/configtest", + "version": "2.1.1_-360275163", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "url": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-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": false + } + }, + "npm__form-data__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "form-data", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "asynckit": "0.4.0", + "combined-stream": "1.0.8", + "mime-types": "2.1.35" + }, + "transitive_closure": { + "asynckit": [ + "0.4.0" + ], + "combined-stream": [ + "1.0.8" + ], + "delayed-stream": [ + "1.0.0" + ], + "form-data": [ + "4.0.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__svelte-preprocess__5.1.3__1286447536__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "svelte-preprocess", + "version": "5.1.3_1286447536", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/pug": "2.0.10", + "detect-indent": "6.1.0", + "magic-string": "0.30.5", + "postcss": "8.4.35", + "sorcery": "0.11.0", + "strip-indent": "3.0.0", + "svelte": "5.0.0-next.75", + "typescript": "5.4.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/estree": [ + "1.0.5" + ], + "@types/pug": [ + "2.0.10" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "buffer-crc32": [ + "0.2.13" + ], + "concat-map": [ + "0.0.1" + ], + "dequal": [ + "2.0.3" + ], + "detect-indent": [ + "6.1.0" + ], + "es6-promise": [ + "3.3.1" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "graceful-fs": [ + "4.2.11" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-reference": [ + "3.0.2" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "min-indent": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.8" + ], + "mkdirp": [ + "0.5.6" + ], + "nanoid": [ + "3.3.7" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rimraf": [ + "2.7.1" + ], + "sander": [ + "0.5.1" + ], + "sorcery": [ + "0.11.0" + ], + "source-map-js": [ + "1.0.2" + ], + "strip-indent": [ + "3.0.0" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-preprocess": [ + "5.1.3_1286447536" + ], + "typescript": [ + "5.4.2" + ], + "wrappy": [ + "1.0.2" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__domutils__2.8.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "domutils", + "version": "2.8.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "dom-serializer": "1.4.1", + "domelementtype": "2.3.0", + "domhandler": "4.3.1" + }, + "transitive_closure": { + "dom-serializer": [ + "1.4.1" + ], + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ], + "domutils": [ + "2.8.0" + ], + "entities": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__shell-quote__1.8.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "shell-quote", + "version": "1.8.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "shell-quote": [ + "1.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_babel__template__7.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/babel__template", + "version": "7.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==", + "url": "https://registry.npmjs.org/@types/babel__template/-/babel__template-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": false + } + }, + "npm__at_webassemblyjs_leb128__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/leb128", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@xtuc/long": "4.2.2" + }, + "transitive_closure": { + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__compression__1.7.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "compression", + "version": "1.7.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "accepts": "1.3.8", + "bytes": "3.0.0", + "compressible": "2.0.18", + "debug": "2.6.9", + "on-headers": "1.0.2", + "safe-buffer": "5.1.2", + "vary": "1.1.2" + }, + "transitive_closure": { + "accepts": [ + "1.3.8" + ], + "bytes": [ + "3.0.0" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "debug": [ + "2.6.9" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.0.0" + ], + "negotiator": [ + "0.6.3" + ], + "on-headers": [ + "1.0.2" + ], + "safe-buffer": [ + "5.1.2" + ], + "vary": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-cli__29.5.0__at_types_node_18.19.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-cli", + "version": "29.5.0_at_types_node_18.19.18", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "jest-cli" + ] + }, + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "url": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": { + "minimist": "1.2.8" + }, + "transitive_closure": { + "minimist": [ + "1.2.8" + ], + "mkdirp": [ + "0.5.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string-natural-compare__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string-natural-compare", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "string-natural-compare": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-export-namespace-from__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-export-namespace-from", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-export-namespace-from": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-arm64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-arm64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==", + "url": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.18.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": false + } + }, + "npm__at_next_swc-linux-x64-musl__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-linux-x64-musl", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-V+1mnh49qmS9fOZxVRbzjhBEz9IUGJ7AQ80JPWAYQM5LI4TxfdiF4APLPvJ52rOmNeTqnVz1bbKtVOso+7EZ4w==", + "url": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.5.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": false + } + }, + "npm__lower-case__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lower-case", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "url": "https://registry.npmjs.org/lower-case/-/lower-case-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": false + } + }, + "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": false + } + }, + "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.15.0" + }, + "transitive_closure": { + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "fastq": [ + "1.15.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__detect-indent__6.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "detect-indent", + "version": "6.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "url": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.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": false + } + }, + "npm__esbuild-linux-mips64le__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-mips64le", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-mips64le": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__merge-stream__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "merge-stream", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "url": "https://registry.npmjs.org/merge-stream/-/merge-stream-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": false + } + }, + "npm__at_svgr_plugin-jsx__8.1.0__at_svgr_core_8.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/plugin-jsx", + "version": "8.1.0_at_svgr_core_8.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@svgr/babel-preset": "8.1.0_at_babel_core_7.23.5", + "@svgr/core": "8.1.0_typescript_4.9.3", + "@svgr/hast-util-to-babel-ast": "8.0.0", + "svg-parser": "2.0.4" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-add-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-empty-expression": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-replace-jsx-attribute-value": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-dynamic-title": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-em-dimensions": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-react-native-svg": [ + "8.1.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-svg-component": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-preset": [ + "8.1.0_at_babel_core_7.23.5" + ], + "@svgr/core": [ + "8.1.0_typescript_4.9.3" + ], + "@svgr/hast-util-to-babel-ast": [ + "8.0.0" + ], + "@svgr/plugin-jsx": [ + "8.1.0_at_svgr_core_8.1.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "argparse": [ + "2.0.1" + ], + "browserslist": [ + "4.22.2" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "cosmiconfig": [ + "8.3.6_typescript_4.9.3" + ], + "debug": [ + "4.3.4" + ], + "dot-case": [ + "3.0.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "entities": [ + "4.5.0" + ], + "error-ex": [ + "1.3.2" + ], + "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" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "jsesc": [ + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "lines-and-columns": [ + "1.2.4" + ], + "lower-case": [ + "2.0.2" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "no-case": [ + "3.0.4" + ], + "node-releases": [ + "2.0.14" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-type": [ + "4.0.0" + ], + "picocolors": [ + "1.0.0" + ], + "resolve-from": [ + "4.0.0" + ], + "semver": [ + "6.3.1" + ], + "snake-case": [ + "3.0.4" + ], + "supports-color": [ + "5.5.0" + ], + "svg-parser": [ + "2.0.4" + ], + "to-fast-properties": [ + "2.0.0" + ], + "tslib": [ + "2.6.2" + ], + "typescript": [ + "4.9.3" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__http-parser-js__0.5.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-parser-js", + "version": "0.5.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "http-parser-js": [ + "0.5.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__watchpack__2.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "watchpack", + "version": "2.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "glob-to-regexp": "0.4.1", + "graceful-fs": "4.2.11" + }, + "transitive_closure": { + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "watchpack": [ + "2.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-unicode-escapes__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-unicode-escapes", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-unicode-escapes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_eslint-plugin__5.44.0__-718862811__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/eslint-plugin", + "version": "5.44.0_-718862811", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "@typescript-eslint/eslint-plugin" + ] + }, + "deps": { + "@typescript-eslint/parser": "5.44.0_1986444992", + "@typescript-eslint/scope-manager": "5.44.0", + "@typescript-eslint/type-utils": "5.44.0_1986444992", + "@typescript-eslint/utils": "5.44.0_1986444992", + "debug": "4.3.4", + "eslint": "8.57.0", + "ignore": "5.2.4", + "natural-compare-lite": "1.4.0", + "regexpp": "3.2.0", + "semver": "7.5.4", + "tsutils": "3.21.0_typescript_4.9.3", + "typescript": "4.9.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/eslint-plugin": [ + "5.44.0_-718862811" + ], + "@typescript-eslint/parser": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_1986444992" + ], + "@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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.57.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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_bcoe_v8-coverage__0.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@bcoe/v8-coverage", + "version": "0.2.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@bcoe/v8-coverage": [ + "0.2.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ufo__1.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ufo", + "version": "1.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ufo": [ + "1.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_react__18.0.25": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react", + "version": "18.0.25", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@types/react" + ] + }, + "integrity": "sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==", + "url": "https://registry.npmjs.org/@types/react/-/react-18.0.25.tgz", + "commit": "", + "patch_args": [], + "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__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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-dom__3.2.37": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-dom", + "version": "3.2.37", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ==", + "url": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.37.tgz", + "commit": "", + "patch_args": [], + "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__open__8.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "open", + "version": "8.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "url": "https://registry.npmjs.org/open/-/open-8.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-each__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-each", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "url": "https://registry.npmjs.org/jest-each/-/jest-each-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": false + } + }, + "npm__jest-haste-map__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-haste-map", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "url": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-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": false + } + }, + "npm__at_babel_plugin-syntax-import-meta__7.10.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-import-meta", + "version": "7.10.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.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": false + } + }, + "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": false + } + }, + "npm__vue-router__4.1.6__vue_3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vue-router", + "version": "4.1.6_vue_3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "vue-router" + ] + }, + "integrity": "sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==", + "url": "https://registry.npmjs.org/vue-router/-/vue-router-4.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": false + } + }, + "npm__svg-parser__2.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "svg-parser", + "version": "2.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "url": "https://registry.npmjs.org/svg-parser/-/svg-parser-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": false + } + }, + "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": false + } + }, + "npm__at_esbuild_android-arm__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/android-arm", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==", + "url": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.8.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": false + } + }, + "npm__at_vue_compiler-core__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-core", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "url": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.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": false + } + }, + "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": false + } + }, + "npm__std-env__3.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "std-env", + "version": "3.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==", + "url": "https://registry.npmjs.org/std-env/-/std-env-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": false + } + }, + "npm__lodash.debounce__4.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lodash.debounce", + "version": "4.0.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lodash.debounce": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-add-jsx-attribute__8.0.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-add-jsx-attribute", + "version": "8.0.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-add-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__fastq__1.15.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fastq", + "version": "1.15.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "reusify": "1.0.4" + }, + "transitive_closure": { + "fastq": [ + "1.15.0" + ], + "reusify": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vue__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vue", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": { + "vue/libraries/simple": [ + "vue" + ] + }, + "deps": { + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4_vue_3.3.4", + "@vue/shared": "3.3.4" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-sfc": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/runtime-core": [ + "3.3.4" + ], + "@vue/runtime-dom": [ + "3.3.4" + ], + "@vue/server-renderer": [ + "3.3.4_vue_3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "csstype": [ + "3.1.2" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.30.4" + ], + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vue": [ + "3.3.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__multicast-dns__7.2.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "multicast-dns", + "version": "7.2.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "dns-packet": "5.6.1", + "thunky": "1.1.0" + }, + "transitive_closure": { + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "dns-packet": [ + "5.6.1" + ], + "multicast-dns": [ + "7.2.5" + ], + "thunky": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_volar_vue-typescript__1.0.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@volar/vue-typescript", + "version": "1.0.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@volar/typescript": "1.0.9", + "@volar/vue-language-core": "1.0.9" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@volar/language-core": [ + "1.0.9" + ], + "@volar/source-map": [ + "1.0.9" + ], + "@volar/typescript": [ + "1.0.9" + ], + "@volar/vue-language-core": [ + "1.0.9" + ], + "@volar/vue-typescript": [ + "1.0.9" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-sfc": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "de-indent": [ + "1.0.2" + ], + "estree-walker": [ + "2.0.2" + ], + "he": [ + "1.2.0" + ], + "magic-string": [ + "0.30.4" + ], + "minimatch": [ + "5.1.6" + ], + "muggle-string": [ + "0.1.0" + ], + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vue-template-compiler": [ + "2.7.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__string.prototype.trim__1.2.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.trim", + "version": "1.2.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "url": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-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": false + } + }, + "npm__fb-watchman__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fb-watchman", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "bser": "2.1.1" + }, + "transitive_closure": { + "bser": [ + "2.1.1" + ], + "fb-watchman": [ + "2.0.2" + ], + "node-int64": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_react__18.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/react", + "version": "18.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "@types/react" + ] + }, + "integrity": "sha512-0FLj93y5USLHdnhIhABk83rm8XEGA7kH3cr+YUlvxoUGp1xNt/DINUMvqPxLyOQMzLmZe8i4RTHbvb8MC7NmrA==", + "url": "https://registry.npmjs.org/@types/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": false + } + }, + "npm__at_babel_plugin-syntax-import-meta__7.10.4__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-import-meta", + "version": "7.10.4_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.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": false + } + }, + "npm__body-parser__1.20.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "body-parser", + "version": "1.20.1", + "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.1", + "type-is": "1.6.18", + "unpipe": "1.0.0" + }, + "transitive_closure": { + "body-parser": [ + "1.20.1" + ], + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "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.3" + ], + "on-finished": [ + "2.4.1" + ], + "qs": [ + "6.11.0" + ], + "raw-body": [ + "2.5.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-preset-current-node-syntax__1.0.1__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-preset-current-node-syntax", + "version": "1.0.1_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/plugin-syntax-async-generators": "7.8.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-bigint": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-class-properties": "7.12.13_at_babel_core_7.23.5", + "@babel/plugin-syntax-import-meta": "7.10.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-json-strings": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-logical-assignment-operators": "7.10.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-numeric-separator": "7.10.4_at_babel_core_7.23.5", + "@babel/plugin-syntax-object-rest-spread": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-optional-catch-binding": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-optional-chaining": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-syntax-top-level-await": "7.14.5_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__schema-utils__4.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "schema-utils", + "version": "4.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/json-schema": "7.0.13", + "ajv": "8.12.0", + "ajv-formats": "2.1.1_ajv_8.12.0", + "ajv-keywords": "5.1.0_ajv_8.12.0" + }, + "transitive_closure": { + "@types/json-schema": [ + "7.0.13" + ], + "ajv": [ + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "5.1.0_ajv_8.12.0" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "json-schema-traverse": [ + "1.0.0" + ], + "punycode": [ + "2.3.1" + ], + "require-from-string": [ + "2.0.2" + ], + "schema-utils": [ + "4.2.0" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__url-parse__1.5.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "url-parse", + "version": "1.5.10", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "querystringify": "2.2.0", + "requires-port": "1.0.0" + }, + "transitive_closure": { + "querystringify": [ + "2.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "url-parse": [ + "1.5.10" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__websocket-extensions__0.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "websocket-extensions", + "version": "0.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "url": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-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": false + } + }, + "npm__at_babel_plugin-transform-private-property-in-object__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-private-property-in-object", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-private-property-in-object": "7.14.5_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-private-property-in-object": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-private-property-in-object": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__connect-history-api-fallback__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "connect-history-api-fallback", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "connect-history-api-fallback": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__https-proxy-agent__5.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "https-proxy-agent", + "version": "5.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "url": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-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": false + } + }, + "npm__buffer-crc32__0.2.13": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "buffer-crc32", + "version": "0.2.13", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "url": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.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": false + } + }, + "npm__p-retry__4.6.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-retry", + "version": "4.6.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "url": "https://registry.npmjs.org/p-retry/-/p-retry-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": false + } + }, + "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.5" + }, + "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.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webpack-sources__3.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "webpack-sources", + "version": "3.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "url": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.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": false + } + }, + "npm__at_webassemblyjs_wast-printer__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/wast-printer", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "url": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.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": false + } + }, + "npm__regjsparser__0.9.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regjsparser", + "version": "0.9.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "url": "https://registry.npmjs.org/regjsparser/-/regjsparser-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": false + } + }, + "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": {}, + "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": false + } + }, + "npm__at_babel_helper-wrap-function__7.22.20__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-wrap-function", + "version": "7.22.20", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/helper-function-name": "7.23.0", + "@babel/template": "7.22.15", + "@babel/types": "7.23.5" + }, + "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/helper-wrap-function": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/types": [ + "7.23.5" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-win32-x64-msvc__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-win32-x64-msvc", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string.prototype.trimstart__1.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.trimstart", + "version": "1.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-typescript__7.23.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-typescript", + "version": "7.23.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-create-class-features-plugin": "7.23.5_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-typescript": "7.23.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-typescript": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__urix__0.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "urix", + "version": "0.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "url": "https://registry.npmjs.org/urix/-/urix-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": false + } + }, + "npm__http-proxy-agent__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-proxy-agent", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@tootallnate/once": "2.0.0", + "agent-base": "6.0.2", + "debug": "4.3.4" + }, + "transitive_closure": { + "@tootallnate/once": [ + "2.0.0" + ], + "agent-base": [ + "6.0.2" + ], + "debug": [ + "4.3.4" + ], + "http-proxy-agent": [ + "5.0.0" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__envinfo__7.11.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "envinfo", + "version": "7.11.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==", + "url": "https://registry.npmjs.org/envinfo/-/envinfo-7.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": false + } + }, + "npm__at_babel_helper-remap-async-to-generator__7.22.20__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-remap-async-to-generator", + "version": "7.22.20_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-wrap-function": "7.22.20" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-remap-async-to-generator": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helper-wrap-function": [ + "7.22.20" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-bigint__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-bigint", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.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": false + } + }, + "npm__html-encoding-sniffer__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "html-encoding-sniffer", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "url": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-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": false + } + }, + "npm__regexp.prototype.flags__1.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regexp.prototype.flags", + "version": "1.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "set-function-name": "2.0.1" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "object-keys": [ + "1.1.1" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "set-function-name": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-bigint__7.8.3__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-bigint", + "version": "7.8.3_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.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": false + } + }, + "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": false + } + }, + "npm__at_vue_compiler-dom__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-dom", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==", + "url": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pkg-types__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pkg-types", + "version": "1.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "jsonc-parser": "3.2.0", + "mlly": "1.4.2", + "pathe": "1.1.1" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "jsonc-parser": [ + "3.2.0" + ], + "mlly": [ + "1.4.2" + ], + "pathe": [ + "1.1.1" + ], + "pkg-types": [ + "1.0.3" + ], + "ufo": [ + "1.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_types__0.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/types", + "version": "0.1.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/types": [ + "0.1.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-sticky-regex__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-sticky-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-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": false + } + }, + "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": false + } + }, + "npm__eslint-plugin-svelte__2.36.0-next.10__-1307611191__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-svelte", + "version": "2.36.0-next.10_-1307611191", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "eslint-plugin-svelte" + ] + }, + "deps": { + "@eslint-community/eslint-utils": "4.4.0_eslint_8.57.0", + "@jridgewell/sourcemap-codec": "1.4.15", + "debug": "4.3.4", + "eslint": "8.57.0", + "eslint-compat-utils": "0.4.1_eslint_8.57.0", + "esutils": "2.0.3", + "known-css-properties": "0.29.0", + "postcss": "8.4.35", + "postcss-load-config": "3.1.4_postcss_8.4.35", + "postcss-safe-parser": "6.0.0_postcss_8.4.35", + "postcss-selector-parser": "6.0.15", + "semver": "7.6.0", + "svelte": "5.0.0-next.75", + "svelte-eslint-parser": "0.34.0-next.12_svelte_5.0.0-next.75" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@ampproject/remapping": [ + "2.2.1" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/estree": [ + "1.0.5" + ], + "@ungap/structured-clone": [ + "1.2.0" + ], + "acorn": [ + "8.10.0", + "8.11.3" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "ajv": [ + "6.12.6" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "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" + ], + "cssesc": [ + "3.0.0" + ], + "debug": [ + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "dequal": [ + "2.0.3" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-compat-utils": [ + "0.4.1_eslint_8.57.0" + ], + "eslint-plugin-svelte": [ + "2.36.0-next.10_-1307611191" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "esm-env": [ + "1.0.0" + ], + "espree": [ + "9.6.1" + ], + "esquery": [ + "1.5.0" + ], + "esrap": [ + "1.2.1" + ], + "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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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" + ], + "is-reference": [ + "3.0.2" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "known-css-properties": [ + "0.29.0" + ], + "levn": [ + "0.4.1" + ], + "lilconfig": [ + "2.1.0" + ], + "locate-character": [ + "3.0.0" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "lru-cache": [ + "6.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "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" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "postcss-load-config": [ + "3.1.4_postcss_8.4.35" + ], + "postcss-safe-parser": [ + "6.0.0_postcss_8.4.35" + ], + "postcss-scss": [ + "4.0.9_postcss_8.4.35" + ], + "postcss-selector-parser": [ + "6.0.15" + ], + "prelude-ls": [ + "1.2.1" + ], + "punycode": [ + "2.3.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.6.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "source-map-js": [ + "1.0.2" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-eslint-parser": [ + "0.34.0-next.12_svelte_5.0.0-next.75" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yaml": [ + "1.10.2" + ], + "yocto-queue": [ + "0.1.0" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-optimise-call-expression__7.22.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-optimise-call-expression", + "version": "7.22.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "chalk": "4.1.2", + "ci-info": "3.8.0", + "graceful-fs": "4.2.11", + "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.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "graceful-fs": [ + "4.2.11" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_bazel_ibazel__0.16.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@bazel/ibazel", + "version": "0.16.2", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@bazel/ibazel" + ], + "react": [ + "@bazel/ibazel" + ], + "vue": [ + "@bazel/ibazel" + ] + }, + "integrity": "sha512-KgqAWMH0emL6f3xH6nqyTryoBMqlJ627LBIe9PT1PRRQPz2FtHib3FIHJPukp1slzF3hJYZvdiVwgPnHbaSOOA==", + "url": "https://registry.npmjs.org/@bazel/ibazel/-/ibazel-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": false + } + }, + "npm__playwright__1.42.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "playwright", + "version": "1.42.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fsevents": "2.3.2", + "playwright-core": "1.42.1" + }, + "transitive_closure": { + "fsevents": [ + "2.3.2" + ], + "playwright": [ + "1.42.1" + ], + "playwright-core": [ + "1.42.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_prop-types__15.7.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/prop-types", + "version": "15.7.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/prop-types": [ + "15.7.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__human-signals__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "human-signals", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "human-signals": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__es-iterator-helpers__1.0.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-iterator-helpers", + "version": "1.0.15", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "asynciterator.prototype": "1.0.0", + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "es-set-tostringtag": "2.0.1", + "function-bind": "1.1.1", + "get-intrinsic": "1.2.1", + "globalthis": "1.0.3", + "has-property-descriptors": "1.0.0", + "has-proto": "1.0.1", + "has-symbols": "1.0.3", + "internal-slot": "1.0.5", + "iterator.prototype": "1.1.2", + "safe-array-concat": "1.0.1" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "asynciterator.prototype": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-iterator-helpers": [ + "1.0.15" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-map": [ + "2.0.2" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "iterator.prototype": [ + "1.1.2" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "reflect.getprototypeof": [ + "1.0.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__resolve__1.22.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve", + "version": "1.22.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "url": "https://registry.npmjs.org/resolve/-/resolve-1.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": false + } + }, + "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": false + } + }, + "npm__tr46__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tr46", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "punycode": "2.3.1" + }, + "transitive_closure": { + "punycode": [ + "2.3.1" + ], + "tr46": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-riscv64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-riscv64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-riscv64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cliui__8.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cliui", + "version": "8.0.1", + "dev": true, + "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": [ + "8.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_transform__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/transform", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "url": "https://registry.npmjs.org/@jest/transform/-/transform-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": false + } + }, + "npm__at_babel_plugin-syntax-optional-catch-binding__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-optional-catch-binding", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-regenerator__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-regenerator", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "regenerator-transform": "0.15.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-regenerator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regenerator-transform": [ + "0.15.2" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webpack-cli_serve__2.0.5__-1521883062__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webpack-cli/serve", + "version": "2.0.5_-1521883062", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "webpack": "5.89.0_-1501518582", + "webpack-cli": "5.1.4_34022717", + "webpack-dev-server": "4.15.1_-360275163" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_jest_globals__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/globals", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "url": "https://registry.npmjs.org/@jest/globals/-/globals-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": false + } + }, + "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": false + } + }, + "npm__esbuild-openbsd-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-openbsd-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-openbsd-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_swc_core-linux-x64-gnu__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-linux-x64-gnu", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XUdGu3dxAkjsahLYnm8WijPfKebo+jHgHphDxaW0ovI6sTdmEGFDew7QzKZRlbYL2jRkUuuKuDGvD6lO5frmhA==", + "url": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.100.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": false + } + }, + "npm__jsdom__20.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jsdom", + "version": "20.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "url": "https://registry.npmjs.org/jsdom/-/jsdom-20.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": false + } + }, + "npm__fsevents__2.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fsevents", + "version": "2.3.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fsevents": [ + "2.3.3" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-modules-systemjs__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-modules-systemjs", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-hoist-variables": "7.22.5", + "@babel/helper-module-transforms": "7.23.3_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-validator-identifier": "7.22.20" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-modules-systemjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_types__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/types", + "version": "7.23.5", + "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.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__magic-string__0.30.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "magic-string", + "version": "0.30.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/sourcemap-codec": "1.4.15" + }, + "transitive_closure": { + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "magic-string": [ + "0.30.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitejs_plugin-vue-jsx__2.1.1__vite_3.2.8__vue_3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitejs/plugin-vue-jsx", + "version": "2.1.1_vite_3.2.8__vue_3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "@vitejs/plugin-vue-jsx" + ] + }, + "integrity": "sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==", + "url": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-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": false + } + }, + "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": false + } + }, + "npm__stop-iteration-iterator__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "stop-iteration-iterator", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "internal-slot": "1.0.5" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "internal-slot": [ + "1.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "side-channel": [ + "1.0.4" + ], + "stop-iteration-iterator": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__graceful-fs__4.2.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "graceful-fs", + "version": "4.2.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "url": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.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": false + } + }, + "npm__at_svgr_plugin-jsx__8.1.0__at_svgr_core_8.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/plugin-jsx", + "version": "8.1.0_at_svgr_core_8.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", + "url": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-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": false + } + }, + "npm__web-vitals__2.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "web-vitals", + "version": "2.1.4", + "dev": false, + "root_package": "", + "link_packages": { + "react": [ + "web-vitals" + ] + }, + "deps": {}, + "transitive_closure": { + "web-vitals": [ + "2.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-typescript__7.22.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-typescript", + "version": "7.22.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__symbol-tree__3.2.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "symbol-tree", + "version": "3.2.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "symbol-tree": [ + "3.2.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-typescript__7.22.5__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-typescript", + "version": "7.22.5_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-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": false + } + }, + "npm__rollup__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "rollup", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jZHaZotEHQaHLgKr8JnQiDT1rmatjgKlMekyksz+yk9jt/8z9quNjnKNRoaM0wd9DC2QKXjmWWuDYtM3jfF8pQ==", + "url": "https://registry.npmjs.org/rollup/-/rollup-4.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": false + } + }, + "npm__esbuild-windows-32__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-windows-32", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==", + "url": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.18.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-typescript__7.22.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-typescript", + "version": "7.22.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-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": false + } + }, + "npm__resolve-url__0.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve-url", + "version": "0.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "resolve-url": [ + "0.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-spread__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-spread", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-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": false + } + }, + "npm__unicode-match-property-ecmascript__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "unicode-match-property-ecmascript", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "url": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-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": false + } + }, + "npm__commander__8.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "commander", + "version": "8.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "url": "https://registry.npmjs.org/commander/-/commander-8.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": false + } + }, + "npm__zimmerframe__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "zimmerframe", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__resolve-url__0.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve-url", + "version": "0.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "url": "https://registry.npmjs.org/resolve-url/-/resolve-url-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": false + } + }, + "npm__jest-environment-jsdom__29.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-environment-jsdom", + "version": "29.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "jest-environment-jsdom" + ] + }, + "integrity": "sha512-G46nKgiez2Gy4zvYNhayfMEAFlVHhWfncqvqS6yCd0i+a4NsSUD2WtrKSaYQrYiLQaupHXxCRi8xxVL2M9PbhA==", + "url": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.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": false + } + }, + "npm__is-plain-object__2.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-plain-object", + "version": "2.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "url": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sinonjs_fake-timers__10.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sinonjs/fake-timers", + "version": "10.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@sinonjs/commons": "3.0.0" + }, + "transitive_closure": { + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_testing-library_user-event__14.4.3__at_testing-library_dom_8.20.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@testing-library/user-event", + "version": "14.4.3_at_testing-library_dom_8.20.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "@testing-library/user-event" + ] + }, + "integrity": "sha512-kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q==", + "url": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.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": false + } + }, + "npm__whatwg-encoding__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "whatwg-encoding", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "iconv-lite": "0.6.3" + }, + "transitive_closure": { + "iconv-lite": [ + "0.6.3" + ], + "safer-buffer": [ + "2.1.2" + ], + "whatwg-encoding": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-sunos-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-sunos-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-sunos-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "@jest/types": "29.6.3", + "@types/stack-utils": "2.0.1", + "chalk": "4.1.2", + "graceful-fs": "4.2.11", + "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.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.11" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__jest-changed-files__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-changed-files", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "url": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-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": false + } + }, + "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": false + } + }, + "npm__esbuild-linux-arm__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-arm", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==", + "url": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.18.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string.prototype.padend__3.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string.prototype.padend", + "version": "3.1.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.padend": [ + "3.1.5" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__strip-final-newline__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-final-newline", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "strip-final-newline": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__combined-stream__1.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "combined-stream", + "version": "1.0.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "delayed-stream": "1.0.0" + }, + "transitive_closure": { + "combined-stream": [ + "1.0.8" + ], + "delayed-stream": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__arraybuffer.prototype.slice__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "arraybuffer.prototype.slice", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "url": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__select-hose__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "select-hose", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "url": "https://registry.npmjs.org/select-hose/-/select-hose-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_vue_runtime-core__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/runtime-core", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/reactivity": "3.2.45", + "@vue/shared": "3.2.45" + }, + "transitive_closure": { + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/runtime-core": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-transform-svg-component__8.0.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-transform-svg-component", + "version": "8.0.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-transform-svg-component": [ + "8.0.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__import-meta-resolve__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "import-meta-resolve", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", + "url": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-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": false + } + }, + "npm__at_eslint-community_eslint-utils__4.4.0__eslint_8.55.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.55.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": false + } + }, + "npm__at_next_swc-darwin-x64__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-darwin-x64", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SfigOKW4Z2UB3ruUPyvrlDIkcJq1hiw1wvYApWugD+tQsAkYZKEoz+/8emCmeYZ6Gwgi1WHV+z52Oj8u7bEHPg==", + "url": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.5.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": false + } + }, + "npm__eslint-config-next__13.0.5__-1300088051": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-config-next", + "version": "13.0.5_-1300088051", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "eslint-config-next" + ] + }, + "integrity": "sha512-lge94W7ME6kNCO96eCykq5GbKbllzmcDNDhh1/llMCRgNPl0+GIQ8dOoM0I7uRQVW56VmTXFybJFXgow11a5pg==", + "url": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.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": false + } + }, + "npm__unicode-match-property-ecmascript__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "unicode-match-property-ecmascript", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "unicode-canonical-property-names-ecmascript": "2.0.0", + "unicode-property-aliases-ecmascript": "2.1.0" + }, + "transitive_closure": { + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__svelte-check__3.6.6__-1180690637": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "svelte-check", + "version": "3.6.6_-1180690637", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "svelte-check" + ] + }, + "integrity": "sha512-b9q9rOHOMYF3U8XllK7LmXTq1LeWQ98waGfEJzrFutViadkNl1tgdEtxIQ8yuPx+VQ4l7YrknYol+0lfZocaZw==", + "url": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.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": false + } + }, + "npm__at_babel_plugin-transform-async-to-generator__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-async-to-generator", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-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": false + } + }, + "npm__jest-pnp-resolver__1.2.3__jest-resolve_29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-pnp-resolver", + "version": "1.2.3_jest-resolve_29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "url": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-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": false + } + }, + "npm__raw-body__2.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "raw-body", + "version": "2.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "url": "https://registry.npmjs.org/raw-body/-/raw-body-2.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": false + } + }, + "npm__vite-node__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite-node", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "cac": "6.7.14", + "debug": "4.3.4", + "pathe": "1.1.1", + "picocolors": "1.0.0", + "vite": "5.1.6" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "cac": [ + "6.7.14" + ], + "debug": [ + "4.3.4" + ], + "esbuild": [ + "0.19.8" + ], + "fsevents": [ + "2.3.3" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "pathe": [ + "1.1.1" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "vite": [ + "5.1.6" + ], + "vite-node": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitest_spy__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/spy", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==", + "url": "https://registry.npmjs.org/@vitest/spy/-/spy-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": false + } + }, + "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": false + } + }, + "npm__param-case__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "param-case", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "url": "https://registry.npmjs.org/param-case/-/param-case-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": false + } + }, + "npm__at_typescript-eslint_typescript-estree__5.44.0__typescript_4.9.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_4.9.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", + "globby": "11.1.0", + "is-glob": "4.0.3", + "semver": "7.5.4", + "tsutils": "3.21.0_typescript_4.9.3", + "typescript": "4.9.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_4.9.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0" + ], + "array-union": [ + "2.1.0" + ], + "braces": [ + "3.0.2" + ], + "debug": [ + "4.3.4" + ], + "dir-glob": [ + "3.0.1" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "fast-glob": [ + "3.3.1" + ], + "fastq": [ + "1.15.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" + ], + "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" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "typescript": [ + "4.9.3" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_core__7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/core", + "version": "7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@ampproject/remapping": "2.2.1", + "@babel/code-frame": "7.22.13", + "@babel/generator": "7.23.0", + "@babel/helper-compilation-targets": "7.22.15", + "@babel/helper-module-transforms": "7.23.0_at_babel_core_7.23.0", + "@babel/helpers": "7.23.1", + "@babel/parser": "7.23.0", + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.0", + "@babel/types": "7.23.5", + "convert-source-map": "2.0.0", + "debug": "4.3.4", + "gensync": "1.0.0-beta.2", + "json5": "2.2.3", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-function-name__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-function-name", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-compilation-targets": "7.22.15", + "@babel/helper-function-name": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-function-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__obuf__1.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "obuf", + "version": "1.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "obuf": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__xml-name-validator__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "xml-name-validator", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "xml-name-validator": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__path-key__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "path-key", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "url": "https://registry.npmjs.org/path-key/-/path-key-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": false + } + }, + "npm__at_vue_compiler-sfc__3.2.37": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-sfc", + "version": "3.2.37", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue/libraries/simple": [ + "@vue/compiler-sfc" + ] + }, + "integrity": "sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==", + "url": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.37.tgz", + "commit": "", + "patch_args": [], + "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__at_babel_plugin-transform-runtime__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-runtime", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-module-imports": "7.22.15", + "@babel/helper-plugin-utils": "7.22.5", + "babel-plugin-polyfill-corejs2": "0.4.6_at_babel_core_7.23.5", + "babel-plugin-polyfill-corejs3": "0.8.6_at_babel_core_7.23.5", + "babel-plugin-polyfill-regenerator": "0.5.3_at_babel_core_7.23.5", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-runtime": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-polyfill-corejs2": [ + "0.4.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-corejs3": [ + "0.8.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-regenerator": [ + "0.5.3_at_babel_core_7.23.5" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "core-js-compat": [ + "3.34.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_types__7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/types", + "version": "7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "url": "https://registry.npmjs.org/@babel/types/-/types-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": false + } + }, + "npm__collect-v8-coverage__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "collect-v8-coverage", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "url": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-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": false + } + }, + "npm__es-abstract__1.22.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-abstract", + "version": "1.22.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-buffer-byte-length": "1.0.0", + "arraybuffer.prototype.slice": "1.0.2", + "available-typed-arrays": "1.0.5", + "call-bind": "1.0.2", + "es-set-tostringtag": "2.0.1", + "es-to-primitive": "1.2.1", + "function.prototype.name": "1.1.6", + "get-intrinsic": "1.2.1", + "get-symbol-description": "1.0.0", + "globalthis": "1.0.3", + "gopd": "1.0.1", + "has": "1.0.3", + "has-property-descriptors": "1.0.0", + "has-proto": "1.0.1", + "has-symbols": "1.0.3", + "internal-slot": "1.0.5", + "is-array-buffer": "3.0.2", + "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-typed-array": "1.1.12", + "is-weakref": "1.0.2", + "object-inspect": "1.12.3", + "object-keys": "1.1.1", + "object.assign": "4.1.4", + "regexp.prototype.flags": "1.5.1", + "safe-array-concat": "1.0.1", + "safe-regex-test": "1.0.0", + "string.prototype.trim": "1.2.8", + "string.prototype.trimend": "1.0.7", + "string.prototype.trimstart": "1.0.7", + "typed-array-buffer": "1.0.0", + "typed-array-byte-length": "1.0.0", + "typed-array-byte-offset": "1.0.0", + "typed-array-length": "1.0.4", + "unbox-primitive": "1.0.2", + "which-typed-array": "1.1.11" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__commander__10.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "commander", + "version": "10.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "url": "https://registry.npmjs.org/commander/-/commander-10.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__html-entities__2.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "html-entities", + "version": "2.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "html-entities": [ + "2.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-numeric-separator__7.10.4__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-numeric-separator", + "version": "7.10.4_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.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": false + } + }, + "npm__at_babel_plugin-transform-nullish-coalescing-operator__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-nullish-coalescing-operator", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-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": false + } + }, + "npm__nanoid__3.3.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "nanoid", + "version": "3.3.6", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "nanoid": [ + "3.3.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_types__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/types", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==", + "url": "https://registry.npmjs.org/@babel/types/-/types-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": false + } + }, + "npm__es-module-lexer__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-module-lexer", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "es-module-lexer": [ + "1.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__websocket-driver__0.7.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "websocket-driver", + "version": "0.7.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "url": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-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": false + } + }, + "npm__at_vitest_snapshot__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/snapshot", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "magic-string": "0.30.5", + "pathe": "1.1.1", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@vitest/snapshot": [ + "1.0.2" + ], + "ansi-styles": [ + "5.2.0" + ], + "magic-string": [ + "0.30.5" + ], + "pathe": [ + "1.1.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-numeric-separator__7.10.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-numeric-separator", + "version": "7.10.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.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": false + } + }, + "npm__at_babel_generator__7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/generator", + "version": "7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5", + "@jridgewell/gen-mapping": "0.3.3", + "@jridgewell/trace-mapping": "0.3.19", + "jsesc": "2.5.2" + }, + "transitive_closure": { + "@babel/generator": [ + "7.23.0" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "jsesc": [ + "2.5.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__es6-promise__3.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es6-promise", + "version": "3.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "es6-promise": [ + "3.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__typed-array-byte-length__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "typed-array-byte-length", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "for-each": "0.3.3", + "has-proto": "1.0.1", + "is-typed-array": "1.1.12" + }, + "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.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.12" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-react-jsx-development__7.22.5__at_babel_core_7.23.5__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.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/plugin-transform-react-jsx": "7.23.4_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx-development": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitest_utils__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/utils", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "diff-sequences": "29.6.3", + "loupe": "2.3.7", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@vitest/utils": [ + "1.0.2" + ], + "ansi-styles": [ + "5.2.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sinonjs_fake-timers__10.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sinonjs/fake-timers", + "version": "10.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "url": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-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": false + } + }, + "npm__next__13.0.5__-1955910335__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "next", + "version": "13.0.5_-1955910335", + "dev": false, + "root_package": "", + "link_packages": { + "next.js": [ + "next" + ] + }, + "deps": { + "@next/swc-android-arm-eabi": "13.0.5", + "@next/swc-android-arm64": "13.0.5", + "@next/swc-darwin-arm64": "13.0.5", + "@next/swc-darwin-x64": "13.0.5", + "@next/swc-freebsd-x64": "13.0.5", + "@next/swc-linux-arm-gnueabihf": "13.0.5", + "@next/swc-linux-arm64-gnu": "13.0.5", + "@next/swc-linux-arm64-musl": "13.0.5", + "@next/swc-linux-x64-gnu": "13.0.5", + "@next/swc-linux-x64-musl": "13.0.5", + "@next/swc-win32-arm64-msvc": "13.0.5", + "@next/swc-win32-ia32-msvc": "13.0.5", + "@next/swc-win32-x64-msvc": "13.0.5", + "@next/env": "13.0.5", + "@swc/helpers": "0.4.14", + "caniuse-lite": "1.0.30001542", + "postcss": "8.4.14", + "react": "18.2.0", + "react-dom": "18.2.0_react_18.2.0", + "styled-jsx": "5.1.0_986221465" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@next/env": [ + "13.0.5" + ], + "@next/swc-android-arm-eabi": [ + "13.0.5" + ], + "@next/swc-android-arm64": [ + "13.0.5" + ], + "@next/swc-darwin-arm64": [ + "13.0.5" + ], + "@next/swc-darwin-x64": [ + "13.0.5" + ], + "@next/swc-freebsd-x64": [ + "13.0.5" + ], + "@next/swc-linux-arm-gnueabihf": [ + "13.0.5" + ], + "@next/swc-linux-arm64-gnu": [ + "13.0.5" + ], + "@next/swc-linux-arm64-musl": [ + "13.0.5" + ], + "@next/swc-linux-x64-gnu": [ + "13.0.5" + ], + "@next/swc-linux-x64-musl": [ + "13.0.5" + ], + "@next/swc-win32-arm64-msvc": [ + "13.0.5" + ], + "@next/swc-win32-ia32-msvc": [ + "13.0.5" + ], + "@next/swc-win32-x64-msvc": [ + "13.0.5" + ], + "@swc/helpers": [ + "0.4.14" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001542", + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "client-only": [ + "0.0.1" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "loose-envify": [ + "1.4.0" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.6" + ], + "next": [ + "13.0.5_-1955910335" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.14" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "scheduler": [ + "0.23.0" + ], + "semver": [ + "6.3.1" + ], + "source-map-js": [ + "1.0.2" + ], + "styled-jsx": [ + "5.1.0_986221465" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "tslib": [ + "2.6.2" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_traverse__7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/traverse", + "version": "7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "@babel/generator": "7.23.5", + "@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.5", + "@babel/types": "7.23.5", + "debug": "4.3.4", + "globals": "11.12.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@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.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "debug": [ + "4.3.4" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__signal-exit__3.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "signal-exit", + "version": "3.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "signal-exit": [ + "3.0.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-typescript__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-typescript", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-sfc__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-sfc", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==", + "url": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__connect-history-api-fallback__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "connect-history-api-fallback", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "url": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-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": false + } + }, + "npm__dom-converter__0.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dom-converter", + "version": "0.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "utila": "0.4.0" + }, + "transitive_closure": { + "dom-converter": [ + "0.2.0" + ], + "utila": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sockjs__0.3.24": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sockjs", + "version": "0.3.24", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "url": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ws__8.14.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ws", + "version": "8.14.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "url": "https://registry.npmjs.org/ws/-/ws-8.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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-lib-instrument__5.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "istanbul-lib-instrument", + "version": "5.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/parser": "7.23.5", + "@istanbuljs/schema": "0.1.3", + "istanbul-lib-coverage": "3.2.0", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__no-case__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "no-case", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "url": "https://registry.npmjs.org/no-case/-/no-case-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": false + } + }, + "npm__at_esbuild_win32-arm64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/win32-arm64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==", + "url": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.8.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": false + } + }, + "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": false + } + }, + "npm__colorette__2.0.20": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "colorette", + "version": "2.0.20", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "url": "https://registry.npmjs.org/colorette/-/colorette-2.0.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": false + } + }, + "npm__loader-runner__4.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "loader-runner", + "version": "4.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "loader-runner": [ + "4.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__globals__13.22.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "globals", + "version": "13.22.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "type-fest": "0.20.2" + }, + "transitive_closure": { + "globals": [ + "13.22.0" + ], + "type-fest": [ + "0.20.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__acorn-walk__8.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn-walk", + "version": "8.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "acorn-walk": [ + "8.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_reactivity-transform__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/reactivity-transform", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "url": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.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": false + } + }, + "npm__is-typed-array__1.1.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-typed-array", + "version": "1.1.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "which-typed-array": "1.1.11" + }, + "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.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.12" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-bugfix-safari-id-destructuring-collision-in-function-expression__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__escape-html__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "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": false + } + }, + "npm__pascal-case__3.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pascal-case", + "version": "3.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "url": "https://registry.npmjs.org/pascal-case/-/pascal-case-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": false + } + }, + "npm__at_babel_plugin-syntax-bigint__7.8.3__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-bigint", + "version": "7.8.3_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__yaml__1.10.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "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": false + } + }, + "npm__object.entries__1.1.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.entries", + "version": "1.1.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.7" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__decode-uri-component__0.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "decode-uri-component", + "version": "0.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "url": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.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": false + } + }, + "npm__css-select__4.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "css-select", + "version": "4.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "url": "https://registry.npmjs.org/css-select/-/css-select-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": false + } + }, + "npm__http-proxy__1.18.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-proxy", + "version": "1.18.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "url": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.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": false + } + }, + "npm__at_babel_plugin-transform-new-target__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-new-target", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-new-target": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_types__0.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/types", + "version": "0.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==", + "url": "https://registry.npmjs.org/@swc/types/-/types-0.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": false + } + }, + "npm__svelte-hmr__0.15.3__svelte_5.0.0-next.75__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "svelte-hmr", + "version": "0.15.3_svelte_5.0.0-next.75", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "svelte": "5.0.0-next.75" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "dequal": [ + "2.0.3" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "is-reference": [ + "3.0.2" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-hmr": [ + "0.15.3_svelte_5.0.0-next.75" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_http-errors__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/http-errors", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==", + "url": "https://registry.npmjs.org/@types/http-errors/-/http-errors-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": false + } + }, + "npm__cssom__0.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cssom", + "version": "0.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "url": "https://registry.npmjs.org/cssom/-/cssom-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": false + } + }, + "npm__at_babel_plugin-syntax-import-meta__7.10.4__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-import-meta", + "version": "7.10.4_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_shared__3.2.37": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/shared", + "version": "3.2.37", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==", + "url": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.37.tgz", + "commit": "", + "patch_args": [], + "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__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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__walker__1.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "walker", + "version": "1.0.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "makeerror": "1.0.12" + }, + "transitive_closure": { + "makeerror": [ + "1.0.12" + ], + "tmpl": [ + "1.0.5" + ], + "walker": [ + "1.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__shebang-regex__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "shebang-regex", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "shebang-regex": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-core__3.2.37": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-core", + "version": "3.2.37", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==", + "url": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.37.tgz", + "commit": "", + "patch_args": [], + "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__at_babel_plugin-transform-export-namespace-from__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-export-namespace-from", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-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": false + } + }, + "npm__at_webassemblyjs_floating-point-hex-parser__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/floating-point-hex-parser", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "url": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.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": false + } + }, + "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.2.1" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "is-weakset": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_babel__traverse__7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/babel__traverse", + "version": "7.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__pure-rand__6.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pure-rand", + "version": "6.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pure-rand": [ + "6.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__estree-walker__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "estree-walker", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "url": "https://registry.npmjs.org/estree-walker/-/estree-walker-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": false + } + }, + "npm__fsevents__2.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fsevents", + "version": "2.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "url": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.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": false + } + }, + "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": false + } + }, + "npm__set-cookie-parser__2.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "set-cookie-parser", + "version": "2.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", + "url": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.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": false + } + }, + "npm__magic-string__0.30.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "magic-string", + "version": "0.30.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/sourcemap-codec": "1.4.15" + }, + "transitive_closure": { + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "magic-string": [ + "0.30.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__define-lazy-prop__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "define-lazy-prop", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "define-lazy-prop": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-haste-map__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-haste-map", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fsevents": "2.3.3", + "@jest/types": "29.6.3", + "@types/graceful-fs": "4.1.7", + "@types/node": "18.19.18", + "anymatch": "3.1.3", + "fb-watchman": "2.0.2", + "graceful-fs": "4.2.11", + "jest-regex-util": "29.6.3", + "jest-util": "29.7.0", + "jest-worker": "29.7.0", + "micromatch": "4.0.5", + "walker": "1.0.8" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "anymatch": [ + "3.1.3" + ], + "braces": [ + "3.0.2" + ], + "bser": [ + "2.1.1" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "fsevents": [ + "2.3.3" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "node-int64": [ + "0.4.0" + ], + "normalize-path": [ + "3.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "tmpl": [ + "1.0.5" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "walker": [ + "1.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tinypool__0.8.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tinypool", + "version": "0.8.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tinypool": [ + "0.8.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-flowtype__8.0.3__-1935217645": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-flowtype", + "version": "8.0.3_-1935217645", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "url": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.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": false + } + }, + "npm__spdy__4.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "spdy", + "version": "4.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "4.3.4", + "handle-thing": "2.0.1", + "http-deceiver": "1.2.7", + "select-hose": "2.0.0", + "spdy-transport": "3.0.0" + }, + "transitive_closure": { + "core-util-is": [ + "1.0.3" + ], + "debug": [ + "4.3.4" + ], + "detect-node": [ + "2.1.0" + ], + "handle-thing": [ + "2.0.1" + ], + "hpack.js": [ + "2.1.6" + ], + "http-deceiver": [ + "1.2.7" + ], + "inherits": [ + "2.0.4" + ], + "isarray": [ + "1.0.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "ms": [ + "2.1.2" + ], + "obuf": [ + "1.1.2" + ], + "process-nextick-args": [ + "2.0.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "select-hose": [ + "2.0.0" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "util-deprecate": [ + "1.0.2" + ], + "wbuf": [ + "1.7.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-nullish-coalescing-operator__7.18.6__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-nullish-coalescing-operator", + "version": "7.18.6_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.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": false + } + }, + "npm__at_babel_plugin-syntax-top-level-await__7.14.5__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-top-level-await", + "version": "7.14.5_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-private-property-in-object__7.14.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-private-property-in-object", + "version": "7.14.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__readable-stream__2.3.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "readable-stream", + "version": "2.3.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "url": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.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": false + } + }, + "npm__at_babel_plugin-transform-new-target__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-new-target", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-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": false + } + }, + "npm__at_babel_plugin-transform-dynamic-import__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-dynamic-import", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-dynamic-import": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-dynamic-import": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-dynamic-import": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_preset-react__7.23.3__at_babel_core_7.23.5": { + "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.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "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": false + } + }, + "npm__at_types_babel__core__7.20.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/babel__core", + "version": "7.20.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.5", + "@babel/types": "7.23.5", + "@types/babel__generator": "7.6.5", + "@types/babel__template": "7.4.2", + "@types/babel__traverse": "7.20.2" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@types/babel__core": [ + "7.20.2" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss__8.4.35__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss", + "version": "8.4.35", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "nanoid": "3.3.7", + "picocolors": "1.0.0", + "source-map-js": "1.0.2" + }, + "transitive_closure": { + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "source-map-js": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_next_env__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/env", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/env": [ + "13.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_typescript-estree__7.2.0__typescript_5.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/typescript-estree", + "version": "7.2.0_typescript_5.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "7.2.0", + "@typescript-eslint/visitor-keys": "7.2.0", + "debug": "4.3.4", + "globby": "11.1.0", + "is-glob": "4.0.3", + "minimatch": "9.0.3", + "semver": "7.5.4", + "ts-api-utils": "1.3.0_typescript_5.4.2", + "typescript": "5.4.2" + }, + "transitive_closure": { + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@typescript-eslint/types": [ + "7.2.0" + ], + "@typescript-eslint/typescript-estree": [ + "7.2.0_typescript_5.4.2" + ], + "@typescript-eslint/visitor-keys": [ + "7.2.0" + ], + "array-union": [ + "2.1.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "braces": [ + "3.0.2" + ], + "debug": [ + "4.3.4" + ], + "dir-glob": [ + "3.0.1" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "fast-glob": [ + "3.3.1" + ], + "fastq": [ + "1.15.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" + ], + "lru-cache": [ + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "9.0.3" + ], + "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" + ], + "to-regex-range": [ + "5.0.1" + ], + "ts-api-utils": [ + "1.3.0_typescript_5.4.2" + ], + "typescript": [ + "5.4.2" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-ppc64le__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-ppc64le", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==", + "url": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.18.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": false + } + }, + "npm__regjsparser__0.9.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regjsparser", + "version": "0.9.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "jsesc": "0.5.0" + }, + "transitive_closure": { + "jsesc": [ + "0.5.0" + ], + "regjsparser": [ + "0.9.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__requires-port__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "requires-port", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "url": "https://registry.npmjs.org/requires-port/-/requires-port-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": false + } + }, + "npm__regexpu-core__5.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regexpu-core", + "version": "5.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/regjsgen": "0.8.0", + "regenerate": "1.4.2", + "regenerate-unicode-properties": "10.1.1", + "regjsparser": "0.9.1", + "unicode-match-property-ecmascript": "2.0.0", + "unicode-match-property-value-ecmascript": "2.1.0" + }, + "transitive_closure": { + "@babel/regjsgen": [ + "0.8.0" + ], + "jsesc": [ + "0.5.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-wasm-bytecode__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/helper-wasm-bytecode", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-reports__3.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "istanbul-reports", + "version": "3.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "html-escaper": "2.0.2", + "istanbul-lib-report": "3.0.1" + }, + "transitive_closure": { + "has-flag": [ + "4.0.0" + ], + "html-escaper": [ + "2.0.2" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-report": [ + "3.0.1" + ], + "istanbul-reports": [ + "3.1.6" + ], + "lru-cache": [ + "6.0.0" + ], + "make-dir": [ + "4.0.0" + ], + "semver": [ + "7.5.4" + ], + "supports-color": [ + "7.2.0" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_istanbuljs_load-nyc-config__1.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@istanbuljs/load-nyc-config", + "version": "1.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "camelcase": "5.3.1", + "find-up": "4.1.0", + "get-package-type": "0.1.0", + "js-yaml": "3.14.1", + "resolve-from": "5.0.0" + }, + "transitive_closure": { + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "argparse": [ + "1.0.10" + ], + "camelcase": [ + "5.3.1" + ], + "esprima": [ + "4.0.1" + ], + "find-up": [ + "4.1.0" + ], + "get-package-type": [ + "0.1.0" + ], + "js-yaml": [ + "3.14.1" + ], + "locate-path": [ + "5.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "sprintf-js": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vite__5.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite", + "version": "5.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "vite" + ] + }, + "integrity": "sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==", + "url": "https://registry.npmjs.org/vite/-/vite-5.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": false + } + }, + "npm__at_rollup_rollup-linux-arm64-musl__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-linux-arm64-musl", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FfoOK1yP5ksX3wwZ4Zk1NgyGHZyuRhf99j64I5oEmirV8EFT7+OhUZEnP+x17lcP/QHJNWGsoJwrz4PJ9fBEXw==", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.6.1.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": false + } + }, + "npm__get-func-name__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-func-name", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "url": "https://registry.npmjs.org/get-func-name/-/get-func-name-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": false + } + }, + "npm__styled-jsx__5.1.0__986221465__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "styled-jsx", + "version": "5.1.0_986221465", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "client-only": "0.0.1", + "react": "18.2.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "client-only": [ + "0.0.1" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "loose-envify": [ + "1.4.0" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "react": [ + "18.2.0" + ], + "semver": [ + "6.3.1" + ], + "styled-jsx": [ + "5.1.0_986221465" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-win32-x64-msvc__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-win32-x64-msvc", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0zfTlFAIhgz8V2G8STq8toAjsYYA6eci1hnXuyOTUFnymrtJwnS6uGKiv3v5UrPZkBlamLvrLV2iiaeqCKzb0A==", + "url": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.6.1.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": false + } + }, + "npm__at_types_cookie__0.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/cookie", + "version": "0.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", + "url": "https://registry.npmjs.org/@types/cookie/-/cookie-0.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": false + } + }, + "npm__at_webassemblyjs_ast__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/ast", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "url": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.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": false + } + }, + "npm__nwsapi__2.2.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "nwsapi", + "version": "2.2.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "url": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "diff-sequences": [ + "29.6.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__uuid__8.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "uuid", + "version": "8.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "uuid": [ + "8.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-exponentiation-operator__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-exponentiation-operator", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-builder-binary-assignment-operator-visitor": "7.22.15", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-builder-binary-assignment-operator-visitor": [ + "7.22.15" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-exponentiation-operator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_is-even__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/is-even", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@types/is-even" + ] + }, + "integrity": "sha512-8FbDpWHrWEiXXCuuwkuPT2p4tHr7fhOR2STGdSyQ0ljlqJT7sIqtHSRDXFSLTHqtizXmvThht0Hx3+2+7MAewg==", + "url": "https://registry.npmjs.org/@types/is-even/-/is-even-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": false + } + }, + "npm__axobject-query__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "axobject-query", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "dequal": "2.0.3" + }, + "transitive_closure": { + "axobject-query": [ + "4.0.0" + ], + "dequal": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-optional-catch-binding__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-optional-catch-binding", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-catch-binding": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-core-module__2.13.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-core-module", + "version": "2.13.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has": "1.0.3" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_server-renderer__3.3.4__vue_3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/server-renderer", + "version": "3.3.4_vue_3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "url": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__regenerator-transform__0.15.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "regenerator-transform", + "version": "0.15.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "url": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.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": false + } + }, + "npm__at_babel_traverse__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/traverse", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/code-frame": "7.23.5", + "@babel/generator": "7.23.5", + "@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.5", + "@babel/types": "7.23.5", + "debug": "4.3.4", + "globals": "11.12.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@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.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "debug": [ + "4.3.4" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_scheduler__0.16.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/scheduler", + "version": "0.16.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==", + "url": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.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": false + } + }, + "npm__object.groupby__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.groupby", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "url": "https://registry.npmjs.org/object.groupby/-/object.groupby-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": false + } + }, + "npm__at_babel_plugin-transform-react-jsx-self__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-react-jsx-self", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-react-jsx-self": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-docblock__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-docblock", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "detect-newline": "3.1.0" + }, + "transitive_closure": { + "detect-newline": [ + "3.1.0" + ], + "jest-docblock": [ + "29.7.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-decorators__7.23.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-decorators", + "version": "7.23.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6IsY8jOeWibsengGlWIezp7cuZEFzNlAghFpzh9wiZwhQ42/hRcPnY/QV9HJoKTlujupinSlnQPiEy/u2C1ZfQ==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-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": false + } + }, + "npm__at_babel_plugin-transform-block-scoping__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-block-scoping", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-block-scoping": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-typed-array__1.1.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-typed-array", + "version": "1.1.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "url": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.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": false + } + }, + "npm__js-yaml__3.14.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "js-yaml", + "version": "3.14.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "url": "https://registry.npmjs.org/js-yaml/-/js-yaml-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": false + } + }, + "npm__fastest-levenshtein__1.0.16": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fastest-levenshtein", + "version": "1.0.16", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "url": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "commit": "", + "patch_args": [], + "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__at_babel_helpers__7.23.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helpers", + "version": "7.23.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.5", + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@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.23.1" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "debug": [ + "4.3.4" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__webpack-cli__5.1.4__34022717": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "webpack-cli", + "version": "5.1.4_34022717", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react-webpack": [ + "webpack-cli" + ] + }, + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "url": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.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": false + } + }, + "npm__at_neoconfetti_svelte__2.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@neoconfetti/svelte", + "version": "2.2.1", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@neoconfetti/svelte" + ] + }, + "deps": {}, + "transitive_closure": { + "@neoconfetti/svelte": [ + "2.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ansi-regex__4.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ansi-regex", + "version": "4.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ansi-regex": [ + "4.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__on-headers__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "on-headers", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "url": "https://registry.npmjs.org/on-headers/-/on-headers-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": false + } + }, + "npm__jest-docblock__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-docblock", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "url": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-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": false + } + }, + "npm__at_next_swc-android-arm64__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-android-arm64", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ugbwffkUmp8cd2afehDC8LtQeFUxElRUBBngfB5UYSWBx18HW4OgzkPFIY8jUBH16zifvGZWXbICXJWDHrOLtw==", + "url": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.0.5.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": false + } + }, + "npm__at_vue_babel-plugin-jsx__1.1.5__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/babel-plugin-jsx", + "version": "1.1.5_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==", + "url": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-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": false + } + }, + "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": false + } + }, + "npm__readable-stream__2.3.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "readable-stream", + "version": "2.3.8", + "dev": true, + "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.8" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_rollup_rollup-win32-arm64-msvc__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-win32-arm64-msvc", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__resolve-pkg-maps__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve-pkg-maps", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "url": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-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": false + } + }, + "npm__ajv__8.12.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ajv", + "version": "8.12.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "url": "https://registry.npmjs.org/ajv/-/ajv-8.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": false + } + }, + "npm__vite-plugin-svgr__4.2.0__typescript_4.9.3__vite_3.2.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite-plugin-svgr", + "version": "4.2.0_typescript_4.9.3__vite_3.2.8", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "vite-plugin-svgr" + ] + }, + "deps": { + "@rollup/pluginutils": "5.1.0", + "@svgr/core": "8.1.0_typescript_4.9.3", + "@svgr/plugin-jsx": "8.1.0_at_svgr_core_8.1.0", + "vite": "3.2.8" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@rollup/pluginutils": [ + "5.1.0" + ], + "@svgr/babel-plugin-add-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-empty-expression": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-replace-jsx-attribute-value": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-dynamic-title": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-em-dimensions": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-react-native-svg": [ + "8.1.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-svg-component": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-preset": [ + "8.1.0_at_babel_core_7.23.5" + ], + "@svgr/core": [ + "8.1.0_typescript_4.9.3" + ], + "@svgr/hast-util-to-babel-ast": [ + "8.0.0" + ], + "@svgr/plugin-jsx": [ + "8.1.0_at_svgr_core_8.1.0" + ], + "@types/estree": [ + "1.0.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "argparse": [ + "2.0.1" + ], + "browserslist": [ + "4.22.2" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "cosmiconfig": [ + "8.3.6_typescript_4.9.3" + ], + "debug": [ + "4.3.4" + ], + "dot-case": [ + "3.0.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "entities": [ + "4.5.0" + ], + "error-ex": [ + "1.3.2" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "estree-walker": [ + "2.0.2" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "jsesc": [ + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "lines-and-columns": [ + "1.2.4" + ], + "lower-case": [ + "2.0.2" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "no-case": [ + "3.0.4" + ], + "node-releases": [ + "2.0.14" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "postcss": [ + "8.4.32" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "4.0.0" + ], + "rollup": [ + "2.79.1" + ], + "semver": [ + "6.3.1" + ], + "snake-case": [ + "3.0.4" + ], + "source-map-js": [ + "1.0.2" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "svg-parser": [ + "2.0.4" + ], + "to-fast-properties": [ + "2.0.0" + ], + "tslib": [ + "2.6.2" + ], + "typescript": [ + "4.9.3" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "vite": [ + "3.2.8" + ], + "vite-plugin-svgr": [ + "4.2.0_typescript_4.9.3__vite_3.2.8" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__define-data-property__1.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "define-data-property", + "version": "1.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "url": "https://registry.npmjs.org/define-data-property/-/define-data-property-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": false + } + }, + "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.2.1" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__client-only__0.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "client-only", + "version": "0.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "url": "https://registry.npmjs.org/client-only/-/client-only-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": false + } + }, + "npm__at_babel_plugin-syntax-export-namespace-from__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-export-namespace-from", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.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": false + } + }, + "npm__resolve-cwd__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve-cwd", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "resolve-from": "5.0.0" + }, + "transitive_closure": { + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__resolve__1.22.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve", + "version": "1.22.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-core-module": "2.13.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.13.0" + ], + "path-parse": [ + "1.0.7" + ], + "resolve": [ + "1.22.6" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_volar_source-map__1.0.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@volar/source-map", + "version": "1.0.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fazB/vy5ZEJ3yKx4fabJyGNI3CBkdLkfEIRVu6+1P3VixK0Mn+eqyUIkLBrzGYaeFM3GybhCLCvsVdNz0Fu/CQ==", + "url": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.0.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": false + } + }, + "npm__ansi-regex__4.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-regex", + "version": "4.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "url": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-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": false + } + }, + "npm__deep-equal__2.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "deep-equal", + "version": "2.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==", + "url": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.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": false + } + }, + "npm__svelte-hmr__0.15.3__svelte_5.0.0-next.75": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "svelte-hmr", + "version": "0.15.3_svelte_5.0.0-next.75", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==", + "url": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.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": false + } + }, + "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": false + } + }, + "npm__at_esbuild_sunos-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/sunos-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/sunos-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__p-retry__4.6.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-retry", + "version": "4.6.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/retry": "0.12.0", + "retry": "0.13.1" + }, + "transitive_closure": { + "@types/retry": [ + "0.12.0" + ], + "p-retry": [ + "4.6.2" + ], + "retry": [ + "0.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdx-expression-parse__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "spdx-expression-parse", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "spdx-exceptions": "2.3.0", + "spdx-license-ids": "3.0.15" + }, + "transitive_closure": { + "spdx-exceptions": [ + "2.3.0" + ], + "spdx-expression-parse": [ + "3.0.1" + ], + "spdx-license-ids": [ + "3.0.15" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-arrow-functions__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-arrow-functions", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-arrow-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_eslint-plugin__7.2.0__1202521382": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/eslint-plugin", + "version": "7.2.0_1202521382", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@typescript-eslint/eslint-plugin" + ] + }, + "integrity": "sha512-mdekAHOqS9UjlmyF/LSs6AIEvfceV749GFxoBAjwAv0nkevfKHWQFDMcBZWUiIC5ft6ePWivXoS36aKQ0Cy3sw==", + "url": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-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": false + } + }, + "npm__at_babel_plugin-transform-modules-systemjs__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-modules-systemjs", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-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": false + } + }, + "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": false + } + }, + "npm__jest-get-type__24.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-get-type", + "version": "24.9.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "jest-get-type": [ + "24.9.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pathe__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pathe", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pathe": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jridgewell_gen-mapping__0.3.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/gen-mapping", + "version": "0.3.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "url": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-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": false + } + }, + "npm__jsdom__20.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jsdom", + "version": "20.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "abab": "2.0.6", + "acorn": "8.10.0", + "acorn-globals": "7.0.1", + "cssom": "0.5.0", + "cssstyle": "2.3.0", + "data-urls": "3.0.2", + "decimal.js": "10.4.3", + "domexception": "4.0.0", + "escodegen": "2.1.0", + "form-data": "4.0.0", + "html-encoding-sniffer": "3.0.0", + "http-proxy-agent": "5.0.0", + "https-proxy-agent": "5.0.1", + "is-potential-custom-element-name": "1.0.1", + "nwsapi": "2.2.7", + "parse5": "7.1.2", + "saxes": "6.0.0", + "symbol-tree": "3.2.4", + "tough-cookie": "4.1.3", + "w3c-xmlserializer": "4.0.0", + "webidl-conversions": "7.0.0", + "whatwg-encoding": "2.0.0", + "whatwg-mimetype": "3.0.0", + "whatwg-url": "11.0.0", + "ws": "8.14.2", + "xml-name-validator": "4.0.0" + }, + "transitive_closure": { + "@tootallnate/once": [ + "2.0.0" + ], + "abab": [ + "2.0.6" + ], + "acorn": [ + "8.10.0" + ], + "acorn-globals": [ + "7.0.1" + ], + "acorn-walk": [ + "8.3.1" + ], + "agent-base": [ + "6.0.2" + ], + "asynckit": [ + "0.4.0" + ], + "combined-stream": [ + "1.0.8" + ], + "cssom": [ + "0.3.8", + "0.5.0" + ], + "cssstyle": [ + "2.3.0" + ], + "data-urls": [ + "3.0.2" + ], + "debug": [ + "4.3.4" + ], + "decimal.js": [ + "10.4.3" + ], + "delayed-stream": [ + "1.0.0" + ], + "domexception": [ + "4.0.0" + ], + "entities": [ + "4.5.0" + ], + "escodegen": [ + "2.1.0" + ], + "esprima": [ + "4.0.1" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "form-data": [ + "4.0.0" + ], + "html-encoding-sniffer": [ + "3.0.0" + ], + "http-proxy-agent": [ + "5.0.0" + ], + "https-proxy-agent": [ + "5.0.1" + ], + "iconv-lite": [ + "0.6.3" + ], + "is-potential-custom-element-name": [ + "1.0.1" + ], + "jsdom": [ + "20.0.3" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.1.2" + ], + "nwsapi": [ + "2.2.7" + ], + "parse5": [ + "7.1.2" + ], + "psl": [ + "1.9.0" + ], + "punycode": [ + "2.3.1" + ], + "querystringify": [ + "2.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "safer-buffer": [ + "2.1.2" + ], + "saxes": [ + "6.0.0" + ], + "source-map": [ + "0.6.1" + ], + "symbol-tree": [ + "3.2.4" + ], + "tough-cookie": [ + "4.1.3" + ], + "tr46": [ + "3.0.0" + ], + "universalify": [ + "0.2.0" + ], + "url-parse": [ + "1.5.10" + ], + "w3c-xmlserializer": [ + "4.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-encoding": [ + "2.0.0" + ], + "whatwg-mimetype": [ + "3.0.0" + ], + "whatwg-url": [ + "11.0.0" + ], + "ws": [ + "8.14.2" + ], + "xml-name-validator": [ + "4.0.0" + ], + "xmlchars": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string_decoder__1.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "string_decoder", + "version": "1.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "safe-buffer": "5.2.1" + }, + "transitive_closure": { + "safe-buffer": [ + "5.2.1" + ], + "string_decoder": [ + "1.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cross-spawn__6.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cross-spawn", + "version": "6.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "nice-try": "1.0.5", + "path-key": "2.0.1", + "semver": "5.7.2", + "shebang-command": "1.2.0", + "which": "1.3.1" + }, + "transitive_closure": { + "cross-spawn": [ + "6.0.5" + ], + "isexe": [ + "2.0.0" + ], + "nice-try": [ + "1.0.5" + ], + "path-key": [ + "2.0.1" + ], + "semver": [ + "5.7.2" + ], + "shebang-command": [ + "1.2.0" + ], + "shebang-regex": [ + "1.0.0" + ], + "which": [ + "1.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__babel-preset-react-app__10.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-preset-react-app", + "version": "10.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/plugin-proposal-class-properties": "7.18.6_at_babel_core_7.23.5", + "@babel/plugin-proposal-decorators": "7.23.5_at_babel_core_7.23.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6_at_babel_core_7.23.5", + "@babel/plugin-proposal-numeric-separator": "7.18.6_at_babel_core_7.23.5", + "@babel/plugin-proposal-optional-chaining": "7.21.0_at_babel_core_7.23.5", + "@babel/plugin-proposal-private-methods": "7.18.6_at_babel_core_7.23.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.11_at_babel_core_7.23.5", + "@babel/plugin-transform-flow-strip-types": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-react-display-name": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-runtime": "7.23.4_at_babel_core_7.23.5", + "@babel/preset-env": "7.23.5_at_babel_core_7.23.5", + "@babel/preset-react": "7.23.3_at_babel_core_7.23.5", + "@babel/preset-typescript": "7.23.3_at_babel_core_7.23.5", + "@babel/runtime": "7.23.1", + "babel-plugin-macros": "3.1.0", + "babel-plugin-transform-react-remove-prop-types": "0.4.24" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-builder-binary-assignment-operator-visitor": [ + "7.22.15" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5", + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-remap-async-to-generator": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helper-wrap-function": [ + "7.22.20" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-class-properties": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-decorators": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-nullish-coalescing-operator": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-numeric-separator": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-optional-chaining": [ + "7.21.0_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-private-methods": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-private-property-in-object": [ + "7.21.0-placeholder-for-preset-env.2_at_babel_core_7.23.5", + "7.21.11_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-static-block": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-decorators": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-dynamic-import": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-export-namespace-from": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-flow": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-assertions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-attributes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-private-property-in-object": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-unicode-sets-regex": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-arrow-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-async-generator-functions": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-async-to-generator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-block-scoped-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-block-scoping": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-class-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-class-static-block": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-classes": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-computed-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-destructuring": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-dotall-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-duplicate-keys": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-dynamic-import": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-exponentiation-operator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-export-namespace-from": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-flow-strip-types": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-for-of": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-function-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-json-strings": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-logical-assignment-operators": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-member-expression-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-amd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-commonjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-systemjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-umd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-named-capturing-groups-regex": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-new-target": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-nullish-coalescing-operator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-numeric-separator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-object-rest-spread": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-object-super": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-catch-binding": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-chaining": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-parameters": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-private-methods": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-private-property-in-object": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-property-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-display-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx-development": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-pure-annotations": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-regenerator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-reserved-words": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-runtime": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-shorthand-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-spread": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-sticky-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-template-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-typeof-symbol": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-typescript": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-escapes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-property-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-sets-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/preset-env": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/preset-modules": [ + "0.1.6-no-external-plugins_at_babel_core_7.23.5" + ], + "@babel/preset-react": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/preset-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/parse-json": [ + "4.0.2" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "babel-plugin-polyfill-corejs2": [ + "0.4.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-corejs3": [ + "0.8.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-regenerator": [ + "0.5.3_at_babel_core_7.23.5" + ], + "babel-plugin-transform-react-remove-prop-types": [ + "0.4.24" + ], + "babel-preset-react-app": [ + "10.0.1" + ], + "browserslist": [ + "4.22.2" + ], + "callsites": [ + "3.1.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "core-js-compat": [ + "3.34.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "error-ex": [ + "1.3.2" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "esutils": [ + "2.0.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "lines-and-columns": [ + "1.2.4" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "4.0.0" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regenerator-transform": [ + "0.15.2" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "4.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__acorn__8.11.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn", + "version": "8.11.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "url": "https://registry.npmjs.org/acorn/-/acorn-8.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": false + } + }, + "npm__at_types_aria-query__5.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/aria-query", + "version": "5.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PHKZuMN+K5qgKIWhBodXzQslTo5P+K/6LqeKXS6O/4liIDdZqaX5RXrCK++LAw+y/nptN48YmUMFiQHRSWYwtQ==", + "url": "https://registry.npmjs.org/@types/aria-query/-/aria-query-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-class-properties__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-class-properties", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-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": false + } + }, + "npm__leven__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "leven", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "url": "https://registry.npmjs.org/leven/-/leven-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": false + } + }, + "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": false + } + }, + "npm__pretty-format__24.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pretty-format", + "version": "24.9.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "24.9.0", + "ansi-regex": "4.1.1", + "ansi-styles": "3.2.1", + "react-is": "16.13.1" + }, + "transitive_closure": { + "@jest/types": [ + "24.9.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "1.1.2" + ], + "@types/yargs": [ + "13.0.12" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-regex": [ + "4.1.1" + ], + "ansi-styles": [ + "3.2.1" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "pretty-format": [ + "24.9.0" + ], + "react-is": [ + "16.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__domhandler__4.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "domhandler", + "version": "4.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "domelementtype": "2.3.0" + }, + "transitive_closure": { + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__lilconfig__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lilconfig", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lilconfig": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__update-browserslist-db__1.0.13__browserslist_4.22.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "update-browserslist-db", + "version": "1.0.13_browserslist_4.22.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "url": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.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": false + } + }, + "npm__is-number__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-number", + "version": "6.0.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-number": [ + "6.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__import-local__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "import-local", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "url": "https://registry.npmjs.org/import-local/-/import-local-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": false + } + }, + "npm__update-browserslist-db__1.0.13__browserslist_4.22.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "update-browserslist-db", + "version": "1.0.13_browserslist_4.22.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "url": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.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": false + } + }, + "npm__at_babel_helper-create-class-features-plugin__7.23.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-create-class-features-plugin", + "version": "7.23.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==", + "url": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-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": false + } + }, + "npm__object.values__1.1.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.values", + "version": "1.1.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.values": [ + "1.1.7" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__camel-case__4.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "camel-case", + "version": "4.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "url": "https://registry.npmjs.org/camel-case/-/camel-case-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": false + } + }, + "npm__html-encoding-sniffer__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "html-encoding-sniffer", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "whatwg-encoding": "3.1.1" + }, + "transitive_closure": { + "html-encoding-sniffer": [ + "4.0.0" + ], + "iconv-lite": [ + "0.6.3" + ], + "safer-buffer": [ + "2.1.2" + ], + "whatwg-encoding": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__whatwg-mimetype__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "whatwg-mimetype", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "url": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-linux-x64-gnu__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-linux-x64-gnu", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-numeric-separator__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-numeric-separator", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-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": false + } + }, + "npm__at_types_eslint-scope__3.7.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/eslint-scope", + "version": "3.7.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==", + "url": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-ia32__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-ia32", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==", + "url": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.8.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": false + } + }, + "npm__sade__1.8.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sade", + "version": "1.8.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "url": "https://registry.npmjs.org/sade/-/sade-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "safe-buffer": [ + "5.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esm-env__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esm-env", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esm-env": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__faye-websocket__0.11.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "faye-websocket", + "version": "0.11.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "url": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.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": false + } + }, + "npm__jest-validate__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-validate", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "url": "https://registry.npmjs.org/jest-validate/-/jest-validate-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": false + } + }, + "npm__pretty-error__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pretty-error", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "lodash": "4.17.21", + "renderkid": "3.0.0" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "boolbase": [ + "1.0.0" + ], + "css-select": [ + "4.3.0" + ], + "css-what": [ + "6.1.0" + ], + "dom-converter": [ + "0.2.0" + ], + "dom-serializer": [ + "1.4.1" + ], + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ], + "domutils": [ + "2.8.0" + ], + "entities": [ + "2.2.0" + ], + "htmlparser2": [ + "6.1.0" + ], + "lodash": [ + "4.17.21" + ], + "nth-check": [ + "2.1.1" + ], + "pretty-error": [ + "4.0.0" + ], + "renderkid": [ + "3.0.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "utila": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_vitest_expect__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/expect", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==", + "url": "https://registry.npmjs.org/@vitest/expect/-/expect-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-destructuring__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-destructuring", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-destructuring": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_graceful-fs__4.1.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/graceful-fs", + "version": "4.1.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/node": [ + "18.19.18" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1", + "object-inspect": "1.12.3" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "object-inspect": [ + "1.12.3" + ], + "side-channel": [ + "1.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__prompts__2.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "prompts", + "version": "2.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "url": "https://registry.npmjs.org/prompts/-/prompts-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": false + } + }, + "npm__at_jest_source-map__29.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/source-map", + "version": "29.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "url": "https://registry.npmjs.org/@jest/source-map/-/source-map-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": false + } + }, + "npm__unicode-match-property-value-ecmascript__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "unicode-match-property-value-ecmascript", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-nullish-coalescing-operator__7.8.3__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-nullish-coalescing-operator", + "version": "7.8.3_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.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": false + } + }, + "npm__at_vitest_runner__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/runner", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vitest/utils": "1.0.2", + "p-limit": "5.0.0", + "pathe": "1.1.1" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@vitest/runner": [ + "1.0.2" + ], + "@vitest/utils": [ + "1.0.2" + ], + "ansi-styles": [ + "5.2.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ], + "p-limit": [ + "5.0.0" + ], + "pathe": [ + "1.1.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-resolve__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-resolve", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "chalk": "4.1.2", + "graceful-fs": "4.2.11", + "jest-haste-map": "29.7.0", + "jest-pnp-resolver": "1.2.3_jest-resolve_29.7.0", + "jest-util": "29.7.0", + "jest-validate": "29.7.0", + "resolve": "1.22.6", + "resolve.exports": "2.0.2", + "slash": "3.0.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "braces": [ + "3.0.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "6.3.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "leven": [ + "3.1.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "node-int64": [ + "0.4.0" + ], + "normalize-path": [ + "3.0.0" + ], + "path-parse": [ + "1.0.7" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve.exports": [ + "2.0.2" + ], + "slash": [ + "3.0.0" + ], + "supports-color": [ + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "walker": [ + "1.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-bugfix-v8-static-class-fields-redefine-readonly__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "url": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-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": false + } + }, + "npm__at_types_parse-json__4.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/parse-json", + "version": "4.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "url": "https://registry.npmjs.org/@types/parse-json/-/parse-json-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": false + } + }, + "npm__at_babel_plugin-syntax-nullish-coalescing-operator__7.8.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-nullish-coalescing-operator", + "version": "7.8.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.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": false + } + }, + "npm__at_babel_plugin-transform-unicode-property-regex__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-unicode-property-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-regexp-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-unicode-property-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__array.prototype.findlastindex__1.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array.prototype.findlastindex", + "version": "1.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "url": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-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": false + } + }, + "npm__node-int64__0.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "node-int64", + "version": "0.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "url": "https://registry.npmjs.org/node-int64/-/node-int64-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__cssstyle__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cssstyle", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "rrweb-cssom": "0.6.0" + }, + "transitive_closure": { + "cssstyle": [ + "3.0.0" + ], + "rrweb-cssom": [ + "0.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__http-proxy-agent__7.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-proxy-agent", + "version": "7.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "agent-base": "7.1.0", + "debug": "4.3.4" + }, + "transitive_closure": { + "agent-base": [ + "7.1.0" + ], + "debug": [ + "4.3.4" + ], + "http-proxy-agent": [ + "7.0.0" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__node-releases__2.0.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "node-releases", + "version": "2.0.14", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "node-releases": [ + "2.0.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-template-literals__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-template-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-template-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__domhandler__4.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "domhandler", + "version": "4.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "url": "https://registry.npmjs.org/domhandler/-/domhandler-4.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": false + } + }, + "npm__atob__2.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "atob", + "version": "2.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "url": "https://registry.npmjs.org/atob/-/atob-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": false + } + }, + "npm__at_babel_plugin-transform-modules-amd__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-modules-amd", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-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": false + } + }, + "npm__array-flatten__2.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array-flatten", + "version": "2.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "array-flatten": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-array-buffer__3.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-array-buffer", + "version": "3.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.2.1", + "is-typed-array": "1.1.12" + }, + "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.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.12" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_typescript-eslint_parser__5.44.0__509062556__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "5.44.0_509062556", + "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_4.9.3", + "debug": "4.3.4", + "eslint": "8.28.0", + "typescript": "4.9.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.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_509062556" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globby": [ + "11.1.0" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "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-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_vitest_spy__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/spy", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tinyspy": "2.2.0" + }, + "transitive_closure": { + "@vitest/spy": [ + "1.3.1" + ], + "tinyspy": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-riscv64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-riscv64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==", + "url": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.18.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": false + } + }, + "npm__onetime__5.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "onetime", + "version": "5.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "mimic-fn": "2.1.0" + }, + "transitive_closure": { + "mimic-fn": [ + "2.1.0" + ], + "onetime": [ + "5.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_swc_core__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": { + "react-webpack": [ + "@swc/core" + ] + }, + "deps": { + "@swc/core-darwin-arm64": "1.3.100", + "@swc/core-darwin-x64": "1.3.100", + "@swc/core-linux-arm64-gnu": "1.3.100", + "@swc/core-linux-arm64-musl": "1.3.100", + "@swc/core-linux-x64-gnu": "1.3.100", + "@swc/core-linux-x64-musl": "1.3.100", + "@swc/core-win32-arm64-msvc": "1.3.100", + "@swc/core-win32-ia32-msvc": "1.3.100", + "@swc/core-win32-x64-msvc": "1.3.100", + "@swc/counter": "0.1.2", + "@swc/types": "0.1.5" + }, + "transitive_closure": { + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_node__18.19.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/node", + "version": "18.19.18", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@types/node" + ], + "vue": [ + "@types/node" + ] + }, + "deps": { + "undici-types": "5.26.5" + }, + "transitive_closure": { + "@types/node": [ + "18.19.18" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__jest-cli__29.5.0__at_types_node_18.19.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-cli", + "version": "29.5.0_at_types_node_18.19.18", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "jest-cli" + ] + }, + "deps": { + "@jest/core": "29.7.0", + "@jest/test-result": "29.7.0", + "@jest/types": "29.6.3", + "chalk": "4.1.2", + "exit": "0.1.2", + "graceful-fs": "4.2.11", + "import-local": "3.1.0", + "jest-config": "29.7.0_at_types_node_18.19.18", + "jest-util": "29.7.0", + "jest-validate": "29.7.0", + "prompts": "2.4.2", + "yargs": "17.7.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0", + "7.23.5" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0", + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1", + "7.23.5" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.0", + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.0", + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.0", + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@bcoe/v8-coverage": [ + "0.2.3" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/core": [ + "29.7.0" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/globals": [ + "29.7.0" + ], + "@jest/reporters": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/source-map": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/test-sequencer": [ + "29.7.0" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/babel__core": [ + "7.20.2" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-escapes": [ + "4.3.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-jest": [ + "29.7.0_at_babel_core_7.23.0" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-plugin-jest-hoist": [ + "29.6.3" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.0", + "1.0.1_at_babel_core_7.23.5" + ], + "babel-preset-jest": [ + "29.6.3_at_babel_core_7.23.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "buffer-from": [ + "1.1.2" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "5.3.1", + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "char-regex": [ + "1.0.2" + ], + "ci-info": [ + "3.8.0" + ], + "cjs-module-lexer": [ + "1.2.3" + ], + "cliui": [ + "8.0.1" + ], + "co": [ + "4.6.0" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "1.9.0", + "2.0.0" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4" + ], + "dedent": [ + "1.5.1" + ], + "deepmerge": [ + "4.3.1" + ], + "detect-newline": [ + "3.1.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "emittery": [ + "0.13.1" + ], + "emoji-regex": [ + "8.0.0" + ], + "error-ex": [ + "1.3.2" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "execa": [ + "5.1.1" + ], + "exit": [ + "0.1.2" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-caller-file": [ + "2.0.5" + ], + "get-package-type": [ + "0.1.0" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "html-escaper": [ + "2.0.2" + ], + "human-signals": [ + "2.1.0" + ], + "import-local": [ + "3.1.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.13.0" + ], + "is-fullwidth-code-point": [ + "3.0.0" + ], + "is-generator-fn": [ + "2.1.0" + ], + "is-number": [ + "7.0.0" + ], + "is-stream": [ + "2.0.1" + ], + "isexe": [ + "2.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1", + "6.0.0" + ], + "istanbul-lib-report": [ + "3.0.1" + ], + "istanbul-lib-source-maps": [ + "4.0.1" + ], + "istanbul-reports": [ + "3.1.6" + ], + "jest-changed-files": [ + "29.7.0" + ], + "jest-circus": [ + "29.7.0" + ], + "jest-cli": [ + "29.5.0_at_types_node_18.19.18" + ], + "jest-config": [ + "29.7.0_at_types_node_18.19.18" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-docblock": [ + "29.7.0" + ], + "jest-each": [ + "29.7.0" + ], + "jest-environment-node": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-leak-detector": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-resolve-dependencies": [ + "29.7.0" + ], + "jest-runner": [ + "29.7.0" + ], + "jest-runtime": [ + "29.7.0" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-watcher": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "kleur": [ + "3.0.3" + ], + "leven": [ + "3.1.0" + ], + "lines-and-columns": [ + "1.2.4" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "make-dir": [ + "4.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "p-limit": [ + "2.3.0", + "3.1.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "parse-json": [ + "5.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pkg-dir": [ + "4.2.0" + ], + "pretty-format": [ + "29.7.0" + ], + "prompts": [ + "2.4.2" + ], + "pure-rand": [ + "6.0.4" + ], + "react-is": [ + "18.2.0" + ], + "require-directory": [ + "2.1.1" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "resolve.exports": [ + "2.0.2" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "signal-exit": [ + "3.0.7" + ], + "sisteransi": [ + "1.0.5" + ], + "slash": [ + "3.0.0" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.13" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "string-length": [ + "4.0.2" + ], + "string-width": [ + "4.2.3" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "4.0.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-detect": [ + "4.0.8" + ], + "type-fest": [ + "0.21.3" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "v8-to-istanbul": [ + "9.1.0" + ], + "walker": [ + "1.0.8" + ], + "which": [ + "2.0.2" + ], + "wrap-ansi": [ + "7.0.0" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "y18n": [ + "5.0.8" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ], + "yargs": [ + "17.7.2" + ], + "yargs-parser": [ + "21.1.1" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-class-static-block__7.14.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-class-static-block", + "version": "7.14.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-class-static-block": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sander__0.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sander", + "version": "0.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==", + "url": "https://registry.npmjs.org/sander/-/sander-0.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": false + } + }, + "npm__babel-plugin-transform-react-remove-prop-types__0.4.24": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-transform-react-remove-prop-types", + "version": "0.4.24", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "url": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-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": false + } + }, + "npm__import-meta-resolve__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "import-meta-resolve", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "import-meta-resolve": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_ws__8.5.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/ws", + "version": "8.5.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/node": [ + "18.19.18" + ], + "@types/ws": [ + "8.5.6" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_eslint-plugin-next__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/eslint-plugin-next", + "version": "13.0.5", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@next/eslint-plugin-next" + ] + }, + "deps": { + "glob": "7.1.7" + }, + "transitive_closure": { + "@next/eslint-plugin-next": [ + "13.0.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.1.7" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_runtime-dom__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/runtime-dom", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/runtime-core": "3.2.45", + "@vue/shared": "3.2.45", + "csstype": "2.6.21" + }, + "transitive_closure": { + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/runtime-core": [ + "3.2.45" + ], + "@vue/runtime-dom": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "csstype": [ + "2.6.21" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-react__7.33.2__eslint_8.28.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-react", + "version": "7.33.2_eslint_8.28.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "url": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__svelte-check__3.6.6__-1180690637__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "svelte-check", + "version": "3.6.6_-1180690637", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "svelte-check" + ] + }, + "deps": { + "@jridgewell/trace-mapping": "0.3.19", + "chokidar": "3.5.3", + "fast-glob": "3.3.1", + "import-fresh": "3.3.0", + "picocolors": "1.0.0", + "sade": "1.8.1", + "svelte": "5.0.0-next.75", + "svelte-preprocess": "5.1.3_1286447536", + "typescript": "5.4.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@types/estree": [ + "1.0.5" + ], + "@types/pug": [ + "2.0.10" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "anymatch": [ + "3.1.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "balanced-match": [ + "1.0.2" + ], + "binary-extensions": [ + "2.2.0" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "buffer-crc32": [ + "0.2.13" + ], + "callsites": [ + "3.1.0" + ], + "chokidar": [ + "3.5.3" + ], + "concat-map": [ + "0.0.1" + ], + "dequal": [ + "2.0.3" + ], + "detect-indent": [ + "6.1.0" + ], + "es6-promise": [ + "3.3.1" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "fast-glob": [ + "3.3.1" + ], + "fastq": [ + "1.15.0" + ], + "fill-range": [ + "7.0.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "graceful-fs": [ + "4.2.11" + ], + "import-fresh": [ + "3.3.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-reference": [ + "3.0.2" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "min-indent": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.8" + ], + "mkdirp": [ + "0.5.6" + ], + "mri": [ + "1.2.0" + ], + "nanoid": [ + "3.3.7" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "parent-module": [ + "1.0.1" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "postcss": [ + "8.4.35" + ], + "queue-microtask": [ + "1.2.3" + ], + "readdirp": [ + "3.6.0" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "2.7.1" + ], + "run-parallel": [ + "1.2.0" + ], + "sade": [ + "1.8.1" + ], + "sander": [ + "0.5.1" + ], + "sorcery": [ + "0.11.0" + ], + "source-map-js": [ + "1.0.2" + ], + "strip-indent": [ + "3.0.0" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-check": [ + "3.6.6_-1180690637" + ], + "svelte-preprocess": [ + "5.1.3_1286447536" + ], + "to-regex-range": [ + "5.0.1" + ], + "typescript": [ + "5.4.2" + ], + "wrappy": [ + "1.0.2" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webidl-conversions__7.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "webidl-conversions", + "version": "7.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "webidl-conversions": [ + "7.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__http-deceiver__1.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-deceiver", + "version": "1.2.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "http-deceiver": [ + "1.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_testing-library_user-event__14.4.3__at_testing-library_dom_8.20.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@testing-library/user-event", + "version": "14.4.3_at_testing-library_dom_8.20.1", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "@testing-library/user-event" + ] + }, + "deps": { + "@testing-library/dom": "8.20.1" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.22.13" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.22.20" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@testing-library/dom": [ + "8.20.1" + ], + "@testing-library/user-event": [ + "14.4.3_at_testing-library_dom_8.20.1" + ], + "@types/aria-query": [ + "5.0.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "aria-query": [ + "5.1.3" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "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.2.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dom-accessibility-api": [ + "0.5.16" + ], + "es-get-iterator": [ + "1.1.3" + ], + "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.2.1" + ], + "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-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-arguments": [ + "1.1.1" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "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.3" + ], + "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.5.1" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "stop-iteration-iterator": [ + "1.0.0" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__querystringify__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "querystringify", + "version": "2.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "querystringify": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__strip-literal__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-literal", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "js-tokens": "8.0.3" + }, + "transitive_closure": { + "js-tokens": [ + "8.0.3" + ], + "strip-literal": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-utils__3.0.0__eslint_8.57.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.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.57.0", + "eslint-visitor-keys": "2.1.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "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-utils": [ + "3.0.0_eslint_8.57.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-arm64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-arm64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-arm64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__agent-base__6.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "agent-base", + "version": "6.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "url": "https://registry.npmjs.org/agent-base/-/agent-base-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": false + } + }, + "npm__at_babel_plugin-transform-class-static-block__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-class-static-block", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-class-static-block": "7.14.5_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-class-static-block": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-class-static-block": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-buffer__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/helper-buffer", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "url": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.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": false + } + }, + "npm__get-tsconfig__4.7.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-tsconfig", + "version": "4.7.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "resolve-pkg-maps": "1.0.0" + }, + "transitive_closure": { + "get-tsconfig": [ + "4.7.2" + ], + "resolve-pkg-maps": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-sunos-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-sunos-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==", + "url": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.18.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": false + } + }, + "npm__at_babel_helper-module-transforms__7.23.0__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-module-transforms", + "version": "7.23.0_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-module-imports": "7.22.15", + "@babel/helper-simple-access": "7.22.5", + "@babel/helper-split-export-declaration": "7.22.6", + "@babel/helper-validator-identifier": "7.22.20" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-svg-em-dimensions__8.0.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-svg-em-dimensions", + "version": "8.0.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-svg-em-dimensions": [ + "8.0.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-replace-supers__7.22.20__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-replace-supers", + "version": "7.22.20_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "url": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-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": false + } + }, + "npm__at_esbuild_linux-arm64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-arm64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==", + "url": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.8.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": false + } + }, + "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": false + } + }, + "npm__jest-leak-detector__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-leak-detector", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "url": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-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": false + } + }, + "npm__at_vitest_runner__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/runner", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vitest/utils": "1.3.1", + "p-limit": "5.0.0", + "pathe": "1.1.1" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/estree": [ + "1.0.2" + ], + "@vitest/runner": [ + "1.3.1" + ], + "@vitest/utils": [ + "1.3.1" + ], + "ansi-styles": [ + "5.2.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "estree-walker": [ + "3.0.3" + ], + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ], + "p-limit": [ + "5.0.0" + ], + "pathe": [ + "1.1.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__json-buffer__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json-buffer", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "url": "https://registry.npmjs.org/json-buffer/-/json-buffer-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": false + } + }, + "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": false + } + }, + "npm__at_babel_helper-replace-supers__7.22.20__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-replace-supers", + "version": "7.22.20_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "url": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-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": false + } + }, + "npm__colorette__2.0.20__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "colorette", + "version": "2.0.20", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "colorette": [ + "2.0.20" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": { + "sveltekit_ts": [ + "prettier" + ] + }, + "deps": {}, + "transitive_closure": { + "prettier": [ + "3.2.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "inherits": [ + "2.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jsdom__23.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jsdom", + "version": "23.0.1", + "dev": true, + "root_package": "", + "link_packages": { + "": [ + "jsdom" + ] + }, + "deps": { + "cssstyle": "3.0.0", + "data-urls": "5.0.0", + "decimal.js": "10.4.3", + "form-data": "4.0.0", + "html-encoding-sniffer": "4.0.0", + "http-proxy-agent": "7.0.0", + "https-proxy-agent": "7.0.2", + "is-potential-custom-element-name": "1.0.1", + "nwsapi": "2.2.7", + "parse5": "7.1.2", + "rrweb-cssom": "0.6.0", + "saxes": "6.0.0", + "symbol-tree": "3.2.4", + "tough-cookie": "4.1.3", + "w3c-xmlserializer": "5.0.0", + "webidl-conversions": "7.0.0", + "whatwg-encoding": "3.1.1", + "whatwg-mimetype": "4.0.0", + "whatwg-url": "14.0.0", + "ws": "8.14.2", + "xml-name-validator": "5.0.0" + }, + "transitive_closure": { + "agent-base": [ + "7.1.0" + ], + "asynckit": [ + "0.4.0" + ], + "combined-stream": [ + "1.0.8" + ], + "cssstyle": [ + "3.0.0" + ], + "data-urls": [ + "5.0.0" + ], + "debug": [ + "4.3.4" + ], + "decimal.js": [ + "10.4.3" + ], + "delayed-stream": [ + "1.0.0" + ], + "entities": [ + "4.5.0" + ], + "form-data": [ + "4.0.0" + ], + "html-encoding-sniffer": [ + "4.0.0" + ], + "http-proxy-agent": [ + "7.0.0" + ], + "https-proxy-agent": [ + "7.0.2" + ], + "iconv-lite": [ + "0.6.3" + ], + "is-potential-custom-element-name": [ + "1.0.1" + ], + "jsdom": [ + "23.0.1" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.1.2" + ], + "nwsapi": [ + "2.2.7" + ], + "parse5": [ + "7.1.2" + ], + "psl": [ + "1.9.0" + ], + "punycode": [ + "2.3.1" + ], + "querystringify": [ + "2.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "rrweb-cssom": [ + "0.6.0" + ], + "safer-buffer": [ + "2.1.2" + ], + "saxes": [ + "6.0.0" + ], + "symbol-tree": [ + "3.2.4" + ], + "tough-cookie": [ + "4.1.3" + ], + "tr46": [ + "5.0.0" + ], + "universalify": [ + "0.2.0" + ], + "url-parse": [ + "1.5.10" + ], + "w3c-xmlserializer": [ + "5.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-encoding": [ + "3.1.1" + ], + "whatwg-mimetype": [ + "4.0.0" + ], + "whatwg-url": [ + "14.0.0" + ], + "ws": [ + "8.14.2" + ], + "xml-name-validator": [ + "5.0.0" + ], + "xmlchars": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-simple-access__7.22.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-simple-access", + "version": "7.22.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "url": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-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": false + } + }, + "npm__define-lazy-prop__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "define-lazy-prop", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "url": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-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": false + } + }, + "npm__graceful-fs__4.2.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "graceful-fs", + "version": "4.2.11", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "graceful-fs": [ + "4.2.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-async-generators__7.8.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-async-generators", + "version": "7.8.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__http-deceiver__1.2.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-deceiver", + "version": "1.2.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "url": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-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": false + } + }, + "npm__onetime__5.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "onetime", + "version": "5.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "url": "https://registry.npmjs.org/onetime/-/onetime-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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__rimraf__2.7.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "rimraf", + "version": "2.7.1", + "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": [ + "2.7.1" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_parser__7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/parser", + "version": "7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "url": "https://registry.npmjs.org/@babel/parser/-/parser-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": false + } + }, + "npm__babel-preset-jest__29.6.3__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-preset-jest", + "version": "29.6.3_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "url": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-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": false + } + }, + "npm__at_typescript-eslint_type-utils__7.2.0__2014925157__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/type-utils", + "version": "7.2.0_2014925157", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/typescript-estree": "7.2.0_typescript_5.4.2", + "@typescript-eslint/utils": "7.2.0_2014925157", + "debug": "4.3.4", + "eslint": "8.57.0", + "ts-api-utils": "1.3.0_typescript_5.4.2", + "typescript": "5.4.2" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/scope-manager": [ + "7.2.0" + ], + "@typescript-eslint/type-utils": [ + "7.2.0_2014925157" + ], + "@typescript-eslint/types": [ + "7.2.0" + ], + "@typescript-eslint/typescript-estree": [ + "7.2.0_typescript_5.4.2" + ], + "@typescript-eslint/utils": [ + "7.2.0_2014925157" + ], + "@typescript-eslint/visitor-keys": [ + "7.2.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", + "2.0.1" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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", + "9.0.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "ts-api-utils": [ + "1.3.0_typescript_5.4.2" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.4.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_parser__7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/parser", + "version": "7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==", + "url": "https://registry.npmjs.org/@babel/parser/-/parser-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": false + } + }, + "npm__faye-websocket__0.11.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "faye-websocket", + "version": "0.11.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "websocket-driver": "0.7.4" + }, + "transitive_closure": { + "faye-websocket": [ + "0.11.4" + ], + "http-parser-js": [ + "0.5.8" + ], + "safe-buffer": [ + "5.2.1" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__acorn-walk__8.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn-walk", + "version": "8.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "url": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.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": false + } + }, + "npm__at_vue_compiler-core__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-core", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.5", + "@vue/shared": "3.3.4", + "estree-walker": "2.0.2", + "source-map-js": "1.0.2" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__acorn-walk__8.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "acorn-walk", + "version": "8.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", + "url": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.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": false + } + }, + "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": { + "next.js": [ + "react" + ], + "react": [ + "react" + ], + "react-webpack": [ + "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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "is-weakref": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vite__3.2.8__at_types_node_18.18.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite", + "version": "3.2.8_at_types_node_18.18.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "vite" + ], + "vue/libraries/simple": [ + "vite" + ] + }, + "integrity": "sha512-EtQU16PLIJpAZol2cTLttNP1mX6L0SyI0pgQB1VOoWeQnMSvtiwovV3D6NcjN8CZQWWyESD2v5NGnpz5RvgOZA==", + "url": "https://registry.npmjs.org/vite/-/vite-3.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": false + } + }, + "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": false + } + }, + "npm__at_types_html-minifier-terser__6.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/html-minifier-terser", + "version": "6.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/html-minifier-terser": [ + "6.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitejs_plugin-react__4.2.0__vite_3.2.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitejs/plugin-react", + "version": "4.2.0_vite_3.2.8", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "@vitejs/plugin-react" + ] + }, + "integrity": "sha512-+MHTH/e6H12kRp5HUkzOGqPMksezRMmW+TNzlh/QXfI8rRf6l2Z2yH/v12no1UvTwhZgEDMuQ7g7rrfMseU6FQ==", + "url": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-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": false + } + }, + "npm__esbuild-darwin-arm64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-darwin-arm64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==", + "url": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.18.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": false + } + }, + "npm__vitest__1.0.2__jsdom_23.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vitest", + "version": "1.0.2_jsdom_23.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "": [ + "vitest" + ] + }, + "integrity": "sha512-F3NVwwpXfRSDnJmyv+ALPwSRVt0zDkRRE18pwUHSUPXAlWQ47rY1dc99ziMW5bBHyqwK2ERjMisLNoef64qk9w==", + "url": "https://registry.npmjs.org/vitest/-/vitest-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/schemas": "29.6.3", + "@types/istanbul-lib-coverage": "2.0.4", + "@types/istanbul-reports": "3.0.2", + "@types/node": "18.19.18", + "@types/yargs": "17.0.26", + "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.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__lru-cache__5.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lru-cache", + "version": "5.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "yallist": "3.1.1" + }, + "transitive_closure": { + "lru-cache": [ + "5.1.1" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__terser__5.20.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "terser", + "version": "5.20.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==", + "url": "https://registry.npmjs.org/terser/-/terser-5.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": false + } + }, + "npm__at_types_istanbul-lib-report__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/istanbul-lib-report", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==", + "url": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-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": false + } + }, + "npm__at_babel_plugin-transform-property-literals__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-property-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-property-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__es-iterator-helpers__1.0.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es-iterator-helpers", + "version": "1.0.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "url": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.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": false + } + }, + "npm__at_types_http-proxy__1.17.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/http-proxy", + "version": "1.17.12", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==", + "url": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.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": false + } + }, + "npm__babel-plugin-jest-hoist__29.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-jest-hoist", + "version": "29.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "url": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_connect-history-api-fallback__1.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/connect-history-api-fallback", + "version": "1.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/express-serve-static-core": "4.17.37", + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/mime": [ + "1.3.3" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/send": [ + "0.17.2" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__cross-spawn__6.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cross-spawn", + "version": "6.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "url": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__csstype__2.6.21__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "csstype", + "version": "2.6.21", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "csstype": [ + "2.6.21" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jridgewell_source-map__0.3.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/source-map", + "version": "0.3.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "url": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.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": false + } + }, + "npm__http-proxy__1.18.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-proxy", + "version": "1.18.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eventemitter3": "4.0.7", + "follow-redirects": "1.15.3", + "requires-port": "1.0.0" + }, + "transitive_closure": { + "eventemitter3": [ + "4.0.7" + ], + "follow-redirects": [ + "1.15.3" + ], + "http-proxy": [ + "1.18.1" + ], + "requires-port": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-sfc__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-sfc", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "url": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-jest__25.7.0__-189536879__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-jest", + "version": "25.7.0_-189536879", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/eslint-plugin": "5.44.0_-718862811", + "@typescript-eslint/experimental-utils": "5.62.0_1986444992", + "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.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/eslint-plugin": [ + "5.44.0_-718862811" + ], + "@typescript-eslint/experimental-utils": [ + "5.62.0_1986444992" + ], + "@typescript-eslint/parser": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0", + "5.62.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/types": [ + "5.44.0", + "5.62.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3", + "5.62.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_1986444992", + "5.62.0_1986444992" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0", + "5.62.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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-jest": [ + "25.7.0_-189536879" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.57.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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-android-arm-eabi__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-android-arm-eabi", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__babel-plugin-istanbul__6.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-istanbul", + "version": "6.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "url": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__devalue__4.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "devalue", + "version": "4.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==", + "url": "https://registry.npmjs.org/devalue/-/devalue-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": false + } + }, + "npm__at_babel_plugin-transform-export-namespace-from__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-export-namespace-from", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-export-namespace-from": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-export-namespace-from": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-export-namespace-from": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__http-parser-js__0.5.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-parser-js", + "version": "0.5.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "url": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-proposal-private-property-in-object__7.21.11__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-private-property-in-object", + "version": "7.21.11_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.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": false + } + }, + "npm__at_vue_runtime-dom__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/runtime-dom", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "url": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.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": false + } + }, + "npm__regenerate__1.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "regenerate", + "version": "1.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "regenerate": [ + "1.4.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vite__3.2.8__at_types_node_18.18.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite", + "version": "3.2.8_at_types_node_18.18.3", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "vite" + ], + "vue/libraries/simple": [ + "vite" + ] + }, + "deps": { + "fsevents": "2.3.3", + "@types/node": "18.18.3", + "esbuild": "0.15.18", + "postcss": "8.4.32", + "resolve": "1.22.6", + "rollup": "2.79.1" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "@types/node": [ + "18.18.3" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ], + "nanoid": [ + "3.3.7" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "resolve": [ + "1.22.6" + ], + "rollup": [ + "2.79.1" + ], + "source-map-js": [ + "1.0.2" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "vite": [ + "3.2.8_at_types_node_18.18.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-ppc64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-ppc64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==", + "url": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.8.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": false + } + }, + "npm__atob__2.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "atob", + "version": "2.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "atob": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__detect-node__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "detect-node", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "detect-node": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-react__7.33.2__eslint_8.28.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-react", + "version": "7.33.2_eslint_8.28.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-includes": "3.1.7", + "array.prototype.flatmap": "1.3.2", + "array.prototype.tosorted": "1.1.2", + "doctrine": "2.1.0", + "es-iterator-helpers": "1.0.15", + "eslint": "8.28.0", + "estraverse": "5.3.0", + "jsx-ast-utils": "3.3.5", + "minimatch": "3.1.2", + "object.entries": "1.1.7", + "object.fromentries": "2.0.7", + "object.hasown": "1.1.3", + "object.values": "1.1.7", + "prop-types": "15.8.1", + "resolve": "2.0.0-next.4", + "semver": "6.3.1", + "string.prototype.matchall": "4.0.10" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "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-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "array.prototype.tosorted": [ + "1.1.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "asynciterator.prototype": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.22.2" + ], + "es-iterator-helpers": [ + "1.0.15" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-plugin-react": [ + "7.33.2_eslint_8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-glob": [ + "4.0.3" + ], + "is-map": [ + "2.0.2" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "iterator.prototype": [ + "1.1.2" + ], + "js-sdsl": [ + "4.4.2" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "jsx-ast-utils": [ + "3.3.5" + ], + "keyv": [ + "4.5.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.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.7" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.hasown": [ + "1.1.3" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "react-is": [ + "16.13.1" + ], + "reflect.getprototypeof": [ + "1.0.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "regexpp": [ + "3.2.0" + ], + "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-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.matchall": [ + "4.0.10" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-junit__16.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-junit", + "version": "16.0.0", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "jest-junit" + ], + "react": [ + "jest-junit" + ] + }, + "deps": { + "mkdirp": "1.0.4", + "strip-ansi": "6.0.1", + "uuid": "8.3.2", + "xml": "1.0.1" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "jest-junit": [ + "16.0.0" + ], + "mkdirp": [ + "1.0.4" + ], + "strip-ansi": [ + "6.0.1" + ], + "uuid": [ + "8.3.2" + ], + "xml": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-class-static-block__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-class-static-block", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__siginfo__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "siginfo", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "siginfo": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dom-serializer__1.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dom-serializer", + "version": "1.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "url": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-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": false + } + }, + "npm__tmpl__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tmpl", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "url": "https://registry.npmjs.org/tmpl/-/tmpl-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": false + } + }, + "npm__at_types_semver__7.5.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/semver", + "version": "7.5.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==", + "url": "https://registry.npmjs.org/@types/semver/-/semver-7.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": false + } + }, + "npm__ajv__8.12.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ajv", + "version": "8.12.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fast-deep-equal": "3.1.3", + "json-schema-traverse": "1.0.0", + "require-from-string": "2.0.2", + "uri-js": "4.4.1" + }, + "transitive_closure": { + "ajv": [ + "8.12.0" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "json-schema-traverse": [ + "1.0.0" + ], + "punycode": [ + "2.3.1" + ], + "require-from-string": [ + "2.0.2" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__axobject-query__3.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "axobject-query", + "version": "3.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "dequal": "2.0.3" + }, + "transitive_closure": { + "axobject-query": [ + "3.2.1" + ], + "dequal": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__std-env__3.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "std-env", + "version": "3.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "std-env": [ + "3.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-diff__24.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-diff", + "version": "24.9.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "chalk": "2.4.2", + "diff-sequences": "24.9.0", + "jest-get-type": "24.9.0", + "pretty-format": "24.9.0" + }, + "transitive_closure": { + "@jest/types": [ + "24.9.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "1.1.2" + ], + "@types/yargs": [ + "13.0.12" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-regex": [ + "4.1.1" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "diff-sequences": [ + "24.9.0" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "has-flag": [ + "3.0.0" + ], + "jest-diff": [ + "24.9.0" + ], + "jest-get-type": [ + "24.9.0" + ], + "pretty-format": [ + "24.9.0" + ], + "react-is": [ + "16.13.1" + ], + "supports-color": [ + "5.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__handle-thing__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "handle-thing", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "url": "https://registry.npmjs.org/handle-thing/-/handle-thing-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": false + } + }, + "npm__svg-tags__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "svg-tags", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "url": "https://registry.npmjs.org/svg-tags/-/svg-tags-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": false + } + }, + "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": false + } + }, + "npm__at_vue_reactivity-transform__3.2.37__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/reactivity-transform", + "version": "3.2.37", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.0", + "@vue/compiler-core": "3.2.37", + "@vue/shared": "3.2.37", + "estree-walker": "2.0.2", + "magic-string": "0.25.9" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.37" + ], + "@vue/reactivity-transform": [ + "3.2.37" + ], + "@vue/shared": [ + "3.2.37" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.25.9" + ], + "source-map": [ + "0.6.1" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__resolve-from__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "resolve-from", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "resolve-from": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-logical-assignment-operators__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-logical-assignment-operators", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-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": false + } + }, + "npm__at_babel_plugin-transform-classes__7.23.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-classes", + "version": "7.23.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-compilation-targets": "7.22.15", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-function-name": "7.23.0", + "@babel/helper-optimise-call-expression": "7.22.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-replace-supers": "7.22.20_at_babel_core_7.23.5", + "@babel/helper-split-export-declaration": "7.22.6", + "globals": "11.12.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-classes": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tsconfig-to-swcconfig__2.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tsconfig-to-swcconfig", + "version": "2.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "tsconfig-to-swcconfig" + ] + }, + "integrity": "sha512-vT1hUG06TC3XCRQoina91VGH5HKfxYgA4hN2Ly0uNxHKNeCds++7aBE2Je62FUTKvvdkTpLjmynF8bzgYcDymA==", + "url": "https://registry.npmjs.org/tsconfig-to-swcconfig/-/tsconfig-to-swcconfig-2.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": false + } + }, + "npm__esbuild-windows-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-windows-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==", + "url": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.18.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": false + } + }, + "npm__lower-case__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "lower-case", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "2.6.2" + }, + "transitive_closure": { + "lower-case": [ + "2.0.2" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__lilconfig__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lilconfig", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "url": "https://registry.npmjs.org/lilconfig/-/lilconfig-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": false + } + }, + "npm__at_vitejs_plugin-vue__3.2.0__vite_3.2.8__vue_3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitejs/plugin-vue", + "version": "3.2.0_vite_3.2.8__vue_3.2.45", + "dev": true, + "root_package": "", + "link_packages": { + "vue": [ + "@vitejs/plugin-vue" + ] + }, + "deps": { + "vite": "3.2.8_at_types_node_18.19.18", + "vue": "3.2.45" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "@types/node": [ + "18.19.18" + ], + "@vitejs/plugin-vue": [ + "3.2.0_vite_3.2.8__vue_3.2.45" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/compiler-sfc": [ + "3.2.45" + ], + "@vue/compiler-ssr": [ + "3.2.45" + ], + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/reactivity-transform": [ + "3.2.45" + ], + "@vue/runtime-core": [ + "3.2.45" + ], + "@vue/runtime-dom": [ + "3.2.45" + ], + "@vue/server-renderer": [ + "3.2.45_vue_3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "csstype": [ + "2.6.21" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "estree-walker": [ + "2.0.2" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ], + "magic-string": [ + "0.25.9" + ], + "nanoid": [ + "3.3.7" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "resolve": [ + "1.22.6" + ], + "rollup": [ + "2.79.1" + ], + "source-map": [ + "0.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "undici-types": [ + "5.26.5" + ], + "vite": [ + "3.2.8_at_types_node_18.19.18" + ], + "vue": [ + "3.2.45" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dns-packet__5.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dns-packet", + "version": "5.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@leichtgewicht/ip-codec": "2.0.4" + }, + "transitive_closure": { + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "dns-packet": [ + "5.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_bonjour__3.5.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/bonjour", + "version": "3.5.11", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/bonjour": [ + "3.5.11" + ], + "@types/node": [ + "18.19.18" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint__8.28.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint", + "version": "8.28.0", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "eslint" + ], + "react": [ + "eslint" + ] + }, + "deps": { + "@eslint/eslintrc": "1.4.1", + "@humanwhocodes/config-array": "0.11.11", + "@humanwhocodes/module-importer": "1.0.1", + "@nodelib/fs.walk": "1.2.8", + "ajv": "6.12.6", + "chalk": "4.1.2", + "cross-spawn": "7.0.3", + "debug": "4.3.4", + "doctrine": "3.0.0", + "escape-string-regexp": "4.0.0", + "eslint-scope": "7.2.2", + "eslint-utils": "3.0.0_eslint_8.28.0", + "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.22.0", + "grapheme-splitter": "1.0.4", + "ignore": "5.2.4", + "import-fresh": "3.3.0", + "imurmurhash": "0.1.4", + "is-glob": "4.0.3", + "is-path-inside": "3.0.3", + "js-sdsl": "4.4.2", + "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", + "regexpp": "3.2.0", + "strip-ansi": "6.0.1", + "strip-json-comments": "3.1.1", + "text-table": "0.2.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "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-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__typed-array-buffer__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "typed-array-buffer", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.2.1", + "is-typed-array": "1.1.12" + }, + "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.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "is-callable": [ + "1.2.7" + ], + "is-typed-array": [ + "1.1.12" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-stream__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-stream", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "url": "https://registry.npmjs.org/is-stream/-/is-stream-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-type": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__char-regex__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "char-regex", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "char-regex": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-top-level-await__7.14.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-top-level-await", + "version": "7.14.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.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": false + } + }, + "npm__at_swc_core-darwin-x64__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-darwin-x64", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KF/MXrnH1nakm1wbt4XV8FS7kvqD9TGmVxeJ0U4bbvxXMvzeYUurzg3AJUTXYmXDhH/VXOYJE5N5RkwZZPs5iA==", + "url": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.100.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": false + } + }, + "npm__at_swc_helpers__0.4.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/helpers", + "version": "0.4.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", + "url": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.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": false + } + }, + "npm__at_babel_plugin-syntax-top-level-await__7.14.5__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-top-level-await", + "version": "7.14.5_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.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": false + } + }, + "npm__esbuild-darwin-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-darwin-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==", + "url": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.18.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": false + } + }, + "npm__safe-array-concat__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "safe-array-concat", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.2.1", + "has-symbols": "1.0.3", + "isarray": "2.0.5" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "isarray": [ + "2.0.5" + ], + "safe-array-concat": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-odd__0.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-odd", + "version": "0.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ri7C2K7o5IrUU9UEI8losXJCCD/UtsaIrkR5sxIcFg4xQ9cRJXlWA5DQvTE0yDc0krvSNLsRGXN11UPS6KyfBw==", + "url": "https://registry.npmjs.org/is-odd/-/is-odd-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": false + } + }, + "npm__domexception__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "domexception", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "url": "https://registry.npmjs.org/domexception/-/domexception-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": false + } + }, + "npm__at_types_istanbul-reports__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/istanbul-reports", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==", + "url": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-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": false + } + }, + "npm__at_types_babel__template__7.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/babel__template", + "version": "7.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.5", + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__eslint-plugin-testing-library__5.11.1__1986444992": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-testing-library", + "version": "5.11.1_1986444992", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", + "url": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.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": false + } + }, + "npm__pidtree__0.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pidtree", + "version": "0.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pidtree": [ + "0.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__commander__2.20.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "commander", + "version": "2.20.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "url": "https://registry.npmjs.org/commander/-/commander-2.20.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_utils__7.2.0__2014925157": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "7.2.0_2014925157", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==", + "url": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-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": false + } + }, + "npm__svelte-eslint-parser__0.34.0-next.12__svelte_5.0.0-next.75__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "svelte-eslint-parser", + "version": "0.34.0-next.12_svelte_5.0.0-next.75", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint-scope": "7.2.2", + "eslint-visitor-keys": "3.4.3", + "espree": "9.6.1", + "postcss": "8.4.35", + "postcss-scss": "4.0.9_postcss_8.4.35", + "svelte": "5.0.0-next.75" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.10.0", + "8.11.3" + ], + "acorn-jsx": [ + "5.3.2_acorn_8.10.0" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "dequal": [ + "2.0.3" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-visitor-keys": [ + "3.4.3" + ], + "esm-env": [ + "1.0.0" + ], + "espree": [ + "9.6.1" + ], + "esrap": [ + "1.2.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "5.3.0" + ], + "is-reference": [ + "3.0.2" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "postcss-scss": [ + "4.0.9_postcss_8.4.35" + ], + "source-map-js": [ + "1.0.2" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-eslint-parser": [ + "0.34.0-next.12_svelte_5.0.0-next.75" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_android-arm__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/android-arm", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_istanbuljs_schema__0.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@istanbuljs/schema", + "version": "0.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "url": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.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": false + } + }, + "npm__babel-preset-current-node-syntax__1.0.1__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-preset-current-node-syntax", + "version": "1.0.1_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "url": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-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": false + } + }, + "npm__human-signals__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "human-signals", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "url": "https://registry.npmjs.org/human-signals/-/human-signals-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": false + } + }, + "npm__acorn__8.11.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn", + "version": "8.11.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "acorn": [ + "8.11.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_yargs-parser__21.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/yargs-parser", + "version": "21.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/yargs-parser": [ + "21.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-preset-current-node-syntax__1.0.1__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-preset-current-node-syntax", + "version": "1.0.1_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "url": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-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": false + } + }, + "npm__at_babel_plugin-syntax-logical-assignment-operators__7.10.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-logical-assignment-operators", + "version": "7.10.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-linux-arm64-musl__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-linux-arm64-musl", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-xenvqlXz+KxVKAB1YR723gnVNszpsCvKZkiFFaAYqDGJ502YuqU2fwLsaSm/ASRizNcBYeo9HPLTyc3r/9cdMQ==", + "url": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.5.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": false + } + }, + "npm__at_types_istanbul-lib-coverage__2.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/istanbul-lib-coverage", + "version": "2.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/istanbul-lib-coverage": [ + "2.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "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": false + } + }, + "npm__unicode-property-aliases-ecmascript__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "unicode-property-aliases-ecmascript", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "url": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-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": false + } + }, + "npm__eslint-utils__3.0.0__eslint_8.28.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.28.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint": "8.28.0", + "eslint-visitor-keys": "2.1.0" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "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-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__express__4.18.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "express", + "version": "4.18.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "url": "https://registry.npmjs.org/express/-/express-4.18.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": false + } + }, + "npm__at_rollup_pluginutils__5.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/pluginutils", + "version": "5.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", + "url": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-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": false + } + }, + "npm__at_webassemblyjs_helper-api-error__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/helper-api-error", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "url": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.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": false + } + }, + "npm__at_xtuc_long__4.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@xtuc/long", + "version": "4.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "url": "https://registry.npmjs.org/@xtuc/long/-/long-4.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": false + } + }, + "npm__at_vue_shared__3.2.37__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/shared", + "version": "3.2.37", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@vue/shared": [ + "3.2.37" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__make-dir__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "make-dir", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "semver": "7.5.4" + }, + "transitive_closure": { + "lru-cache": [ + "6.0.0" + ], + "make-dir": [ + "4.0.0" + ], + "semver": [ + "7.5.4" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__shallow-clone__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "shallow-clone", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "url": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-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": false + } + }, + "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": false + } + }, + "npm__at_types_pug__2.0.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/pug", + "version": "2.0.10", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/pug": [ + "2.0.10" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_devtools-api__6.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/devtools-api", + "version": "6.5.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@vue/devtools-api": [ + "6.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__kind-of__6.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "kind-of", + "version": "6.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "kind-of": [ + "6.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_preset-modules__0.1.6-no-external-plugins__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/preset-modules", + "version": "0.1.6-no-external-plugins_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "url": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "commit": "", + "patch_args": [], + "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__vitefu__0.2.5__vite_5.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vitefu", + "version": "0.2.5_vite_5.1.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "vite": "5.1.6" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "esbuild": [ + "0.19.8" + ], + "fsevents": [ + "2.3.3" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "vite": [ + "5.1.6" + ], + "vitefu": [ + "0.2.5_vite_5.1.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__asynckit__0.4.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "asynckit", + "version": "0.4.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "url": "https://registry.npmjs.org/asynckit/-/asynckit-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": false + } + }, + "npm__at_babel_helper-optimise-call-expression__7.22.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-optimise-call-expression", + "version": "7.22.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "url": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-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": false + } + }, + "npm__babel-plugin-polyfill-regenerator__0.5.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-plugin-polyfill-regenerator", + "version": "0.5.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", + "url": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.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": false + } + }, + "npm__at_babel_plugin-transform-react-pure-annotations__7.23.3__at_babel_core_7.23.5__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.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-react-pure-annotations": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_leichtgewicht_ip-codec__2.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@leichtgewicht/ip-codec", + "version": "2.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@leichtgewicht/ip-codec": [ + "2.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-windows-arm64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-windows-arm64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-windows-arm64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-number__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-number", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "url": "https://registry.npmjs.org/is-number/-/is-number-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": false + } + }, + "npm__at_babel_plugin-syntax-class-properties__7.12.13__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-class-properties", + "version": "7.12.13_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__es6-promise__3.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "es6-promise", + "version": "3.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", + "url": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.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": false + } + }, + "npm__whatwg-encoding__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "whatwg-encoding", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "url": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-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": false + } + }, + "npm__jest-get-type__24.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-get-type", + "version": "24.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", + "url": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.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": false + } + }, + "npm__at_babel_plugin-transform-classes__7.23.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-classes", + "version": "7.23.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-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": false + } + }, + "npm__follow-redirects__1.15.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "follow-redirects", + "version": "1.15.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "follow-redirects": [ + "1.15.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__universalify__0.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "universalify", + "version": "0.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "url": "https://registry.npmjs.org/universalify/-/universalify-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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-object-rest-spread__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-object-rest-spread", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/compat-data": "7.23.5", + "@babel/core": "7.23.5", + "@babel/helper-compilation-targets": "7.22.15", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-object-rest-spread": "7.8.3_at_babel_core_7.23.5", + "@babel/plugin-transform-parameters": "7.23.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-object-rest-spread": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-parameters": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jridgewell_trace-mapping__0.3.19__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/trace-mapping", + "version": "0.3.19", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/resolve-uri": "3.1.1", + "@jridgewell/sourcemap-codec": "1.4.15" + }, + "transitive_closure": { + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vue__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vue", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "vue" + ] + }, + "integrity": "sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==", + "url": "https://registry.npmjs.org/vue/-/vue-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "concat-map": [ + "0.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__http-proxy-middleware__2.0.6__at_types_express_4.17.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "http-proxy-middleware", + "version": "2.0.6_at_types_express_4.17.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/express": "4.17.18", + "@types/http-proxy": "1.17.12", + "http-proxy": "1.18.1", + "is-glob": "4.0.3", + "is-plain-obj": "3.0.0", + "micromatch": "4.0.5" + }, + "transitive_closure": { + "@types/body-parser": [ + "1.19.3" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "braces": [ + "3.0.2" + ], + "eventemitter3": [ + "4.0.7" + ], + "fill-range": [ + "7.0.1" + ], + "follow-redirects": [ + "1.15.3" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "picomatch": [ + "2.3.1" + ], + "requires-port": [ + "1.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dns-equal__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dns-equal", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "url": "https://registry.npmjs.org/dns-equal/-/dns-equal-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": false + } + }, + "npm__js-sdsl__4.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "js-sdsl", + "version": "4.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "js-sdsl": [ + "4.4.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_counter__0.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/counter", + "version": "0.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==", + "url": "https://registry.npmjs.org/@swc/counter/-/counter-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": false + } + }, + "npm__jest-worker__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-worker", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "url": "https://registry.npmjs.org/jest-worker/-/jest-worker-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": false + } + }, + "npm__at_jridgewell_gen-mapping__0.3.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/gen-mapping", + "version": "0.3.3", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/set-array": "1.1.2", + "@jridgewell/sourcemap-codec": "1.4.15", + "@jridgewell/trace-mapping": "0.3.19" + }, + "transitive_closure": { + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__node-forge__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "node-forge", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "node-forge": [ + "1.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-numbers__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/helper-numbers", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + }, + "transitive_closure": { + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.1", + "cosmiconfig": "7.1.0", + "resolve": "1.22.6" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@types/parse-json": [ + "4.0.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" + ], + "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.13.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.6" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__get-stream__8.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-stream", + "version": "8.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "url": "https://registry.npmjs.org/get-stream/-/get-stream-8.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": false + } + }, + "npm__at_nicolo-ribaudo_eslint-scope-5-internals__5.1.1-v1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@nicolo-ribaudo/eslint-scope-5-internals", + "version": "5.1.1-v1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "eslint-scope": "5.1.1" + }, + "transitive_closure": { + "@nicolo-ribaudo/eslint-scope-5-internals": [ + "5.1.1-v1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__globalthis__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "globalthis", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "url": "https://registry.npmjs.org/globalthis/-/globalthis-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": false + } + }, + "npm__js-tokens__8.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "js-tokens", + "version": "8.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==", + "url": "https://registry.npmjs.org/js-tokens/-/js-tokens-8.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": false + } + }, + "npm__at_babel_plugin-syntax-class-static-block__7.14.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-class-static-block", + "version": "7.14.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.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": false + } + }, + "npm__at_vue_compiler-dom__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-dom", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "url": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.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": false + } + }, + "npm__at_babel_plugin-transform-unicode-regex__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-unicode-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-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": false + } + }, + "npm__sander__0.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sander", + "version": "0.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "es6-promise": "3.3.1", + "graceful-fs": "4.2.11", + "mkdirp": "0.5.6", + "rimraf": "2.7.1" + }, + "transitive_closure": { + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "es6-promise": [ + "3.3.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "graceful-fs": [ + "4.2.11" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.8" + ], + "mkdirp": [ + "0.5.6" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "rimraf": [ + "2.7.1" + ], + "sander": [ + "0.5.1" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__walker__1.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "walker", + "version": "1.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "url": "https://registry.npmjs.org/walker/-/walker-1.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": false + } + }, + "npm__array.prototype.flat__1.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array.prototype.flat", + "version": "1.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "es-shim-unscopables": "1.0.0" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_highlight__7.22.20": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/highlight", + "version": "7.22.20", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "url": "https://registry.npmjs.org/@babel/highlight/-/highlight-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": false + } + }, + "npm__html-webpack-plugin__5.5.3__webpack_5.89.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "html-webpack-plugin", + "version": "5.5.3_webpack_5.89.0", + "dev": true, + "root_package": "", + "link_packages": { + "react-webpack": [ + "html-webpack-plugin" + ] + }, + "deps": { + "@types/html-minifier-terser": "6.1.0", + "html-minifier-terser": "6.1.0", + "lodash": "4.17.21", + "pretty-error": "4.0.0", + "tapable": "2.2.1", + "webpack": "5.89.0_-1501518582" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/html-minifier-terser": [ + "6.1.0" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "ansi-regex": [ + "5.0.1" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "boolbase": [ + "1.0.0" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "camel-case": [ + "4.1.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clean-css": [ + "5.3.2" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3", + "8.3.0" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "css-select": [ + "4.3.0" + ], + "css-what": [ + "6.1.0" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "dom-converter": [ + "0.2.0" + ], + "dom-serializer": [ + "1.4.1" + ], + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ], + "domutils": [ + "2.8.0" + ], + "dot-case": [ + "3.0.4" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "entities": [ + "2.2.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "he": [ + "1.2.0" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "html-minifier-terser": [ + "6.1.0" + ], + "html-webpack-plugin": [ + "5.5.3_webpack_5.89.0" + ], + "htmlparser2": [ + "6.1.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "lodash": [ + "4.17.21" + ], + "lower-case": [ + "2.0.2" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "no-case": [ + "3.0.4" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "nth-check": [ + "2.1.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "param-case": [ + "3.0.4" + ], + "parseurl": [ + "1.3.3" + ], + "pascal-case": [ + "3.1.2" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "pretty-error": [ + "4.0.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "relateurl": [ + "0.2.7" + ], + "renderkid": [ + "3.0.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "tslib": [ + "2.6.2" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utila": [ + "0.4.0" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sveltejs_vite-plugin-svelte-inspector__2.0.0__5236015": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@sveltejs/vite-plugin-svelte-inspector", + "version": "2.0.0_5236015", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==", + "url": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-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": false + } + }, + "npm__rrweb-cssom__0.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "rrweb-cssom", + "version": "0.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "rrweb-cssom": [ + "0.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sorcery__0.11.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sorcery", + "version": "0.11.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/sourcemap-codec": "1.4.15", + "buffer-crc32": "0.2.13", + "minimist": "1.2.8", + "sander": "0.5.1" + }, + "transitive_closure": { + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "buffer-crc32": [ + "0.2.13" + ], + "concat-map": [ + "0.0.1" + ], + "es6-promise": [ + "3.3.1" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "graceful-fs": [ + "4.2.11" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.8" + ], + "mkdirp": [ + "0.5.6" + ], + "once": [ + "1.4.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "rimraf": [ + "2.7.1" + ], + "sander": [ + "0.5.1" + ], + "sorcery": [ + "0.11.0" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__react-refresh__0.14.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "react-refresh", + "version": "0.14.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "react-refresh": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sockjs__0.3.24__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sockjs", + "version": "0.3.24", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "faye-websocket": "0.11.4", + "uuid": "8.3.2", + "websocket-driver": "0.7.4" + }, + "transitive_closure": { + "faye-websocket": [ + "0.11.4" + ], + "http-parser-js": [ + "0.5.8" + ], + "safe-buffer": [ + "5.2.1" + ], + "sockjs": [ + "0.3.24" + ], + "uuid": [ + "8.3.2" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__object-inspect__1.12.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object-inspect", + "version": "1.12.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "url": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.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": false + } + }, + "npm__jest-snapshot__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-snapshot", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "url": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-numeric-separator__7.10.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-numeric-separator", + "version": "7.10.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_polka_url__1.0.0-next.25__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@polka/url", + "version": "1.0.0-next.25", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@polka/url": [ + "1.0.0-next.25" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__readable-stream__3.6.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "readable-stream", + "version": "3.6.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "url": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-proposal-private-methods__7.18.6__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-private-methods", + "version": "7.18.6_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.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": false + } + }, + "npm__at_jest_reporters__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/reporters", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@bcoe/v8-coverage": "0.2.3", + "@jest/console": "29.7.0", + "@jest/test-result": "29.7.0", + "@jest/transform": "29.7.0", + "@jest/types": "29.6.3", + "@jridgewell/trace-mapping": "0.3.19", + "@types/node": "18.19.18", + "chalk": "4.1.2", + "collect-v8-coverage": "1.0.2", + "exit": "0.1.2", + "glob": "7.2.3", + "graceful-fs": "4.2.11", + "istanbul-lib-coverage": "3.2.0", + "istanbul-lib-instrument": "6.0.0", + "istanbul-lib-report": "3.0.1", + "istanbul-lib-source-maps": "4.0.1", + "istanbul-reports": "3.1.6", + "jest-message-util": "29.7.0", + "jest-util": "29.7.0", + "jest-worker": "29.7.0", + "slash": "3.0.0", + "string-length": "4.0.2", + "strip-ansi": "6.0.1", + "v8-to-istanbul": "9.1.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@bcoe/v8-coverage": [ + "0.2.3" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/reporters": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "char-regex": [ + "1.0.2" + ], + "ci-info": [ + "3.8.0" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "1.9.0", + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "exit": [ + "0.1.2" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "html-escaper": [ + "2.0.2" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1", + "6.0.0" + ], + "istanbul-lib-report": [ + "3.0.1" + ], + "istanbul-lib-source-maps": [ + "4.0.1" + ], + "istanbul-reports": [ + "3.1.6" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "make-dir": [ + "4.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "source-map": [ + "0.6.1" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "string-length": [ + "4.0.2" + ], + "strip-ansi": [ + "6.0.1" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "v8-to-istanbul": [ + "9.1.0" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-linux-arm64-gnu__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-linux-arm64-gnu", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-5BfDS/VoRDR5QUGG9oedOCEZGmV2zxUVFYLUJVPMSMeIgqkjxWQBiG2BUHZI6/LGk9yvHmjx7BTvtBCLtRg6IQ==", + "url": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.5.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": false + } + }, + "npm__at_next_swc-win32-x64-msvc__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-win32-x64-msvc", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-t5gRblrwwiNZP6cT7NkxlgxrFgHWtv9ei5vUraCLgBqzvIsa7X+PnarZUeQCXqz6Jg9JSGGT9j8lvzD97UqeJQ==", + "url": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.5.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": false + } + }, + "npm__at_typescript-eslint_typescript-estree__5.62.0__typescript_4.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/typescript-estree", + "version": "5.62.0_typescript_4.9.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "url": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.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": false + } + }, + "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": false + } + }, + "npm__w3c-xmlserializer__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "w3c-xmlserializer", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "url": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-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": false + } + }, + "npm__make-dir__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "make-dir", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "url": "https://registry.npmjs.org/make-dir/-/make-dir-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": false + } + }, + "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": false + } + }, + "npm__at_babel_parser__7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/parser", + "version": "7.23.0", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0" + ], + "@babel/types": [ + "7.23.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss-scss__4.0.9__postcss_8.4.35__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss-scss", + "version": "4.0.9_postcss_8.4.35", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "postcss": "8.4.35" + }, + "transitive_closure": { + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "postcss-scss": [ + "4.0.9_postcss_8.4.35" + ], + "source-map-js": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-wasm-section__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/helper-wasm-section", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + }, + "transitive_closure": { + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__why-is-node-running__2.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "why-is-node-running", + "version": "2.2.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "siginfo": "2.0.0", + "stackback": "0.0.2" + }, + "transitive_closure": { + "siginfo": [ + "2.0.0" + ], + "stackback": [ + "0.0.2" + ], + "why-is-node-running": [ + "2.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_svgr_core__8.1.0__typescript_4.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/core", + "version": "8.1.0_typescript_4.9.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@svgr/babel-preset": "8.1.0_at_babel_core_7.23.5", + "camelcase": "6.3.0", + "cosmiconfig": "8.3.6_typescript_4.9.3", + "snake-case": "3.0.4" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-add-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-empty-expression": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-replace-jsx-attribute-value": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-dynamic-title": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-em-dimensions": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-react-native-svg": [ + "8.1.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-svg-component": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-preset": [ + "8.1.0_at_babel_core_7.23.5" + ], + "@svgr/core": [ + "8.1.0_typescript_4.9.3" + ], + "ansi-styles": [ + "3.2.1" + ], + "argparse": [ + "2.0.1" + ], + "browserslist": [ + "4.22.2" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "cosmiconfig": [ + "8.3.6_typescript_4.9.3" + ], + "debug": [ + "4.3.4" + ], + "dot-case": [ + "3.0.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "error-ex": [ + "1.3.2" + ], + "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" + ], + "import-fresh": [ + "3.3.0" + ], + "is-arrayish": [ + "0.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "jsesc": [ + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "lines-and-columns": [ + "1.2.4" + ], + "lower-case": [ + "2.0.2" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "no-case": [ + "3.0.4" + ], + "node-releases": [ + "2.0.14" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "path-type": [ + "4.0.0" + ], + "picocolors": [ + "1.0.0" + ], + "resolve-from": [ + "4.0.0" + ], + "semver": [ + "6.3.1" + ], + "snake-case": [ + "3.0.4" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "tslib": [ + "2.6.2" + ], + "typescript": [ + "4.9.3" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__browserslist__4.22.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "browserslist", + "version": "4.22.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "caniuse-lite": "1.0.30001566", + "electron-to-chromium": "1.4.608", + "node-releases": "2.0.14", + "update-browserslist-db": "1.0.13_browserslist_4.22.2" + }, + "transitive_closure": { + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__load-json-file__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "load-json-file", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "url": "https://registry.npmjs.org/load-json-file/-/load-json-file-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__raw-body__2.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "raw-body", + "version": "2.5.1", + "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.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint__8.55.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint", + "version": "8.55.0", + "dev": true, + "root_package": "", + "link_packages": { + "": [ + "eslint" + ] + }, + "deps": { + "@eslint-community/eslint-utils": "4.4.0_eslint_8.55.0", + "@eslint-community/regexpp": "4.10.0", + "@eslint/eslintrc": "2.1.4", + "@eslint/js": "8.55.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", + "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.22.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.55.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@eslint/eslintrc": [ + "2.1.4" + ], + "@eslint/js": [ + "8.55.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" + ], + "deep-is": [ + "0.1.4" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.55.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__co__4.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "co", + "version": "4.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "url": "https://registry.npmjs.org/co/-/co-4.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": false + } + }, + "npm__cookie__0.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cookie", + "version": "0.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cookie": [ + "0.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vitefu__0.2.5__vite_5.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vitefu", + "version": "0.2.5_vite_5.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", + "url": "https://registry.npmjs.org/vitefu/-/vitefu-0.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": false + } + }, + "npm__camelcase__5.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "camelcase", + "version": "5.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "url": "https://registry.npmjs.org/camelcase/-/camelcase-5.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": false + } + }, + "npm__at_types_stack-utils__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/stack-utils", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "url": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-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": false + } + }, + "npm__at_swc_core-linux-x64-musl__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-linux-x64-musl", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-linux-x64-musl": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sisteransi__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sisteransi", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "sisteransi": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__get-package-type__0.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-package-type", + "version": "0.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "url": "https://registry.npmjs.org/get-package-type/-/get-package-type-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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-property-literals__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-property-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-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": false + } + }, + "npm__exit__0.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "exit", + "version": "0.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "exit": [ + "0.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_testing-library_jest-dom__4.2.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@testing-library/jest-dom", + "version": "4.2.4", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@testing-library/jest-dom" + ], + "react": [ + "@testing-library/jest-dom" + ] + }, + "integrity": "sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg==", + "url": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-4.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": false + } + }, + "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": false + } + }, + "npm__svg-parser__2.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "svg-parser", + "version": "2.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "svg-parser": [ + "2.0.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_shared__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/shared", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@vue/shared": [ + "3.2.45" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__joycon__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "joycon", + "version": "3.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "joycon": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-freebsd-x64__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-freebsd-x64", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-freebsd-x64": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_json-schema__7.0.13": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/json-schema", + "version": "7.0.13", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==", + "url": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.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": false + } + }, + "npm__client-only__0.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "client-only", + "version": "0.0.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "client-only": [ + "0.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-arm__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-arm", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-arm": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__serialize-javascript__6.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "serialize-javascript", + "version": "6.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "url": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-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": false + } + }, + "npm__at_esbuild_linux-s390x__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-s390x", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==", + "url": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.8.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": false + } + }, + "npm__deep-equal__2.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "deep-equal", + "version": "2.2.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-buffer-byte-length": "1.0.0", + "call-bind": "1.0.2", + "es-get-iterator": "1.1.3", + "get-intrinsic": "1.2.1", + "is-arguments": "1.1.1", + "is-array-buffer": "3.0.2", + "is-date-object": "1.0.5", + "is-regex": "1.1.4", + "is-shared-array-buffer": "1.0.2", + "isarray": "2.0.5", + "object-is": "1.1.5", + "object-keys": "1.1.1", + "object.assign": "4.1.4", + "regexp.prototype.flags": "1.5.1", + "side-channel": "1.0.4", + "which-boxed-primitive": "1.0.2", + "which-collection": "1.0.1", + "which-typed-array": "1.1.11" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "deep-equal": [ + "2.2.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-get-iterator": [ + "1.1.3" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-arguments": [ + "1.1.1" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "stop-iteration-iterator": [ + "1.0.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__mri__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mri", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "mri": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-environment-jsdom__29.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-environment-jsdom", + "version": "29.3.1", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "jest-environment-jsdom" + ] + }, + "deps": { + "@jest/environment": "29.7.0", + "@jest/fake-timers": "29.7.0", + "@jest/types": "29.6.3", + "@types/jsdom": "20.0.1", + "@types/node": "18.19.18", + "jest-mock": "29.7.0", + "jest-util": "29.7.0", + "jsdom": "20.0.3" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@tootallnate/once": [ + "2.0.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/jsdom": [ + "20.0.1" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/tough-cookie": [ + "4.0.3" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "abab": [ + "2.0.6" + ], + "acorn": [ + "8.10.0" + ], + "acorn-globals": [ + "7.0.1" + ], + "acorn-walk": [ + "8.3.1" + ], + "agent-base": [ + "6.0.2" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "asynckit": [ + "0.4.0" + ], + "braces": [ + "3.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "combined-stream": [ + "1.0.8" + ], + "cssom": [ + "0.3.8", + "0.5.0" + ], + "cssstyle": [ + "2.3.0" + ], + "data-urls": [ + "3.0.2" + ], + "debug": [ + "4.3.4" + ], + "decimal.js": [ + "10.4.3" + ], + "delayed-stream": [ + "1.0.0" + ], + "domexception": [ + "4.0.0" + ], + "entities": [ + "4.5.0" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "escodegen": [ + "2.1.0" + ], + "esprima": [ + "4.0.1" + ], + "estraverse": [ + "5.3.0" + ], + "esutils": [ + "2.0.3" + ], + "fill-range": [ + "7.0.1" + ], + "form-data": [ + "4.0.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "html-encoding-sniffer": [ + "3.0.0" + ], + "http-proxy-agent": [ + "5.0.0" + ], + "https-proxy-agent": [ + "5.0.1" + ], + "iconv-lite": [ + "0.6.3" + ], + "is-number": [ + "7.0.0" + ], + "is-potential-custom-element-name": [ + "1.0.1" + ], + "jest-environment-jsdom": [ + "29.3.1" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsdom": [ + "20.0.3" + ], + "micromatch": [ + "4.0.5" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "ms": [ + "2.1.2" + ], + "nwsapi": [ + "2.2.7" + ], + "parse5": [ + "7.1.2" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "psl": [ + "1.9.0" + ], + "punycode": [ + "2.3.1" + ], + "querystringify": [ + "2.2.0" + ], + "react-is": [ + "18.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "safer-buffer": [ + "2.1.2" + ], + "saxes": [ + "6.0.0" + ], + "slash": [ + "3.0.0" + ], + "source-map": [ + "0.6.1" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "symbol-tree": [ + "3.2.4" + ], + "to-regex-range": [ + "5.0.1" + ], + "tough-cookie": [ + "4.1.3" + ], + "tr46": [ + "3.0.0" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ], + "universalify": [ + "0.2.0" + ], + "url-parse": [ + "1.5.10" + ], + "w3c-xmlserializer": [ + "4.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-encoding": [ + "2.0.0" + ], + "whatwg-mimetype": [ + "3.0.0" + ], + "whatwg-url": [ + "11.0.0" + ], + "ws": [ + "8.14.2" + ], + "xml-name-validator": [ + "4.0.0" + ], + "xmlchars": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string.prototype.padend__3.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.padend", + "version": "3.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==", + "url": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.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": false + } + }, + "npm__eslint-plugin-react-hooks__4.6.0__eslint_8.28.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-react-hooks", + "version": "4.6.0_eslint_8.28.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "url": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.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": false + } + }, + "npm__memfs__3.5.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "memfs", + "version": "3.5.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "fs-monkey": "1.0.5" + }, + "transitive_closure": { + "fs-monkey": [ + "1.0.5" + ], + "memfs": [ + "3.5.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false, + "npmrc": "@@//:.npmrc", + "use_home_npmrc": false, + "patches": {}, + "patch_args": {}, + "custom_postinstalls": {}, + "package_visibility": {}, + "prod": false, + "public_hoist_packages": { + "@next/eslint-plugin-next": [ + "next.js" + ], + "eslint-config-react-app": [ + "react" + ], + "eslint@8.28.0": [ + "react" + ] + }, + "dev": false, + "no_optional": false, + "lifecycle_hooks": { + "*": [ + "preinstall", + "install", + "postinstall" + ] + }, + "lifecycle_hooks_envs": {}, + "lifecycle_hooks_execution_requirements": { + "*": [ + "no-sandbox" + ] + }, + "lifecycle_hooks_use_default_shell_env": { + "*": "false" + }, + "replace_packages": {}, + "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": false, + "data": [], + "preupdate": [], + "quiet": true, + "node_toolchain_prefix": "nodejs", + "yq_toolchain_prefix": "yq", + "npm_package_target_name": "{dirname}", + "use_starlark_yaml_parser": false, + "bzlmod": true + } + }, + "npm__mimic-fn__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mimic-fn", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "url": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-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": false + } + }, + "npm__estree-walker__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "estree-walker", + "version": "2.0.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "estree-walker": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_connect__3.4.36": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/connect", + "version": "3.4.36", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==", + "url": "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz", + "commit": "", + "patch_args": [], + "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-darwin-arm64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-darwin-arm64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-darwin-arm64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__which__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "which", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "url": "https://registry.npmjs.org/which/-/which-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": false + } + }, + "npm__at_babel_plugin-transform-react-jsx-self__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-react-jsx-self", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-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": false + } + }, + "npm__is-core-module__2.13.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-core-module", + "version": "2.13.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "url": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "resolve-from": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-remap-async-to-generator__7.22.20__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-remap-async-to-generator", + "version": "7.22.20_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "url": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__glob-to-regexp__0.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "glob-to-regexp", + "version": "0.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "url": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-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": false + } + }, + "npm__find-up__4.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "find-up", + "version": "4.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "locate-path": "5.0.0", + "path-exists": "4.0.0" + }, + "transitive_closure": { + "find-up": [ + "4.1.0" + ], + "locate-path": [ + "5.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__acorn-import-assertions__1.9.0__acorn_8.10.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn-import-assertions", + "version": "1.9.0_acorn_8.10.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "acorn": "8.10.0" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__type-fest__0.21.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "type-fest", + "version": "0.21.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "type-fest": [ + "0.21.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__which-typed-array__1.1.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "which-typed-array", + "version": "1.1.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "url": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-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": false + } + }, + "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": false + } + }, + "npm__domutils__2.8.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "domutils", + "version": "2.8.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "url": "https://registry.npmjs.org/domutils/-/domutils-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": false + } + }, + "npm__jest-diff__24.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-diff", + "version": "24.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", + "url": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.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": false + } + }, + "npm__at_babel_runtime__7.23.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/runtime", + "version": "7.23.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "regenerator-runtime": "0.14.0" + }, + "transitive_closure": { + "@babel/runtime": [ + "7.23.1" + ], + "regenerator-runtime": [ + "0.14.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.5" + }, + "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.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__jest-regex-util__29.6.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-regex-util", + "version": "29.6.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "url": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-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": false + } + }, + "npm__bonjour-service__1.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "bonjour-service", + "version": "1.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-flatten": "2.1.2", + "dns-equal": "1.0.0", + "fast-deep-equal": "3.1.3", + "multicast-dns": "7.2.5" + }, + "transitive_closure": { + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "array-flatten": [ + "2.1.2" + ], + "bonjour-service": [ + "1.1.1" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "thunky": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__chai__4.3.10__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "chai", + "version": "4.3.10", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "assertion-error": "1.1.0", + "check-error": "1.0.3", + "deep-eql": "4.1.3", + "get-func-name": "2.0.2", + "loupe": "2.3.7", + "pathval": "1.1.1", + "type-detect": "4.0.8" + }, + "transitive_closure": { + "assertion-error": [ + "1.1.0" + ], + "chai": [ + "4.3.10" + ], + "check-error": [ + "1.0.3" + ], + "deep-eql": [ + "4.1.3" + ], + "get-func-name": [ + "2.0.2" + ], + "loupe": [ + "2.3.7" + ], + "pathval": [ + "1.1.1" + ], + "type-detect": [ + "4.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__body-parser__1.20.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "body-parser", + "version": "1.20.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "url": "https://registry.npmjs.org/body-parser/-/body-parser-1.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": false + } + }, + "npm__npm-run-all__4.1.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "npm-run-all", + "version": "4.1.5", + "dev": true, + "root_package": "", + "link_packages": { + "vue": [ + "npm-run-all" + ] + }, + "deps": { + "ansi-styles": "3.2.1", + "chalk": "2.4.2", + "cross-spawn": "6.0.5", + "memorystream": "0.3.1", + "minimatch": "3.1.2", + "pidtree": "0.3.1", + "read-pkg": "3.0.0", + "shell-quote": "1.8.1", + "string.prototype.padend": "3.1.5" + }, + "transitive_closure": { + "ansi-styles": [ + "3.2.1" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "call-bind": [ + "1.0.2" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "concat-map": [ + "0.0.1" + ], + "cross-spawn": [ + "6.0.5" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "error-ex": [ + "1.3.2" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "3.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "hosted-git-info": [ + "2.8.9" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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.13.0" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "json-parse-better-errors": [ + "1.0.2" + ], + "load-json-file": [ + "4.0.0" + ], + "memorystream": [ + "0.3.1" + ], + "minimatch": [ + "3.1.2" + ], + "nice-try": [ + "1.0.5" + ], + "normalize-package-data": [ + "2.5.0" + ], + "npm-run-all": [ + "4.1.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "parse-json": [ + "4.0.0" + ], + "path-key": [ + "2.0.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-type": [ + "3.0.0" + ], + "pidtree": [ + "0.3.1" + ], + "pify": [ + "3.0.0" + ], + "read-pkg": [ + "3.0.0" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "resolve": [ + "1.22.6" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "5.7.2" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "1.2.0" + ], + "shebang-regex": [ + "1.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "spdx-correct": [ + "3.2.0" + ], + "spdx-exceptions": [ + "2.3.0" + ], + "spdx-expression-parse": [ + "3.0.1" + ], + "spdx-license-ids": [ + "3.0.15" + ], + "string.prototype.padend": [ + "3.1.5" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-bom": [ + "3.0.0" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "validate-npm-package-license": [ + "3.0.4" + ], + "which": [ + "1.3.1" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__unicode-property-aliases-ecmascript__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "unicode-property-aliases-ecmascript", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-optional-chaining__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-optional-chaining", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_jsdom__20.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/jsdom", + "version": "20.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18", + "@types/tough-cookie": "4.0.3", + "parse5": "7.1.2" + }, + "transitive_closure": { + "@types/jsdom": [ + "20.0.1" + ], + "@types/node": [ + "18.19.18" + ], + "@types/tough-cookie": [ + "4.0.3" + ], + "entities": [ + "4.5.0" + ], + "parse5": [ + "7.1.2" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cjs-module-lexer__1.2.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "cjs-module-lexer", + "version": "1.2.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "cjs-module-lexer": [ + "1.2.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vite-plugin-svgr__4.2.0__typescript_4.9.3__vite_3.2.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite-plugin-svgr", + "version": "4.2.0_typescript_4.9.3__vite_3.2.8", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "vite-plugin-svgr" + ] + }, + "integrity": "sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==", + "url": "https://registry.npmjs.org/vite-plugin-svgr/-/vite-plugin-svgr-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": false + } + }, + "npm__pathval__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pathval", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "url": "https://registry.npmjs.org/pathval/-/pathval-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": false + } + }, + "npm__pidtree__0.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pidtree", + "version": "0.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "url": "https://registry.npmjs.org/pidtree/-/pidtree-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": false + } + }, + "npm__at_next_swc-linux-arm64-gnu__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-linux-arm64-gnu", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-linux-arm64-gnu": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_parser__5.44.0__509062556": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/parser", + "version": "5.44.0_509062556", + "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": false + } + }, + "npm__eslint-module-utils__2.8.0__-993259024": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-module-utils", + "version": "2.8.0_-993259024", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "url": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-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": false + } + }, + "npm__xml-name-validator__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "xml-name-validator", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "xml-name-validator": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__read-pkg__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "read-pkg", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "url": "https://registry.npmjs.org/read-pkg/-/read-pkg-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__esbuild-android-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-android-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-android-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-linux-s390x__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-s390x", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==", + "url": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.18.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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__type-fest__0.21.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "type-fest", + "version": "0.21.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "url": "https://registry.npmjs.org/type-fest/-/type-fest-0.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": false + } + }, + "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": false + } + }, + "npm__urix__0.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "urix", + "version": "0.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "urix": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-linux-arm-gnueabihf__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-linux-arm-gnueabihf", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EfI3hzYAy5vFNDqpXsNxXcgRDcFHUWSx5nnRSCKwXuQlI5J9dD84g2Usw81n3FLBNsGCegKGwwTVsSKK9cooSQ==", + "url": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.6.1.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": false + } + }, + "npm__at_babel_plugin-proposal-class-properties__7.18.6__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-class-properties", + "version": "7.18.6_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-class-properties": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-object-rest-spread__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-object-rest-spread", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitest_snapshot__1.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitest/snapshot", + "version": "1.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "magic-string": "0.30.5", + "pathe": "1.1.1", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@vitest/snapshot": [ + "1.3.1" + ], + "ansi-styles": [ + "5.2.0" + ], + "magic-string": [ + "0.30.5" + ], + "pathe": [ + "1.1.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__acorn-walk__8.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "acorn-walk", + "version": "8.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "acorn-walk": [ + "8.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-decorators__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-decorators", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-decorators": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__css-what__6.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "css-what", + "version": "6.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "css-what": [ + "6.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__enhanced-resolve__5.15.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "enhanced-resolve", + "version": "5.15.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "graceful-fs": "4.2.11", + "tapable": "2.2.1" + }, + "transitive_closure": { + "enhanced-resolve": [ + "5.15.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "tapable": [ + "2.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.8.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.11" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.3.1" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__test-exclude__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "test-exclude", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "url": "https://registry.npmjs.org/test-exclude/-/test-exclude-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": false + } + }, + "npm__at_vitest_spy__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/spy", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YlnHmDntp+zNV3QoTVFI5EVHV0AXpiThd7+xnDEbWnD6fw0TH/J4/+3GFPClLimR39h6nA5m0W4Bjm5Edg4A/A==", + "url": "https://registry.npmjs.org/@vitest/spy/-/spy-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": false + } + }, + "npm__strip-final-newline__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-final-newline", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "strip-final-newline": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__vitest__1.3.1__jsdom_23.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vitest", + "version": "1.3.1_jsdom_23.0.1", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "vitest" + ] + }, + "deps": { + "@vitest/expect": "1.3.1", + "@vitest/runner": "1.3.1", + "@vitest/snapshot": "1.3.1", + "@vitest/spy": "1.3.1", + "@vitest/utils": "1.3.1", + "acorn-walk": "8.3.2", + "chai": "4.3.10", + "debug": "4.3.4", + "execa": "8.0.1", + "jsdom": "23.0.1", + "local-pkg": "0.5.0", + "magic-string": "0.30.5", + "pathe": "1.1.1", + "picocolors": "1.0.0", + "std-env": "3.6.0", + "strip-literal": "2.0.0", + "tinybench": "2.5.1", + "tinypool": "0.8.2", + "vite": "5.1.6", + "vite-node": "1.3.1", + "why-is-node-running": "2.2.2" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/estree": [ + "1.0.2" + ], + "@vitest/expect": [ + "1.3.1" + ], + "@vitest/runner": [ + "1.3.1" + ], + "@vitest/snapshot": [ + "1.3.1" + ], + "@vitest/spy": [ + "1.3.1" + ], + "@vitest/utils": [ + "1.3.1" + ], + "acorn": [ + "8.10.0" + ], + "acorn-walk": [ + "8.3.2" + ], + "agent-base": [ + "7.1.0" + ], + "ansi-styles": [ + "5.2.0" + ], + "assertion-error": [ + "1.1.0" + ], + "asynckit": [ + "0.4.0" + ], + "cac": [ + "6.7.14" + ], + "chai": [ + "4.3.10" + ], + "check-error": [ + "1.0.3" + ], + "combined-stream": [ + "1.0.8" + ], + "cross-spawn": [ + "7.0.3" + ], + "cssstyle": [ + "3.0.0" + ], + "data-urls": [ + "5.0.0" + ], + "debug": [ + "4.3.4" + ], + "decimal.js": [ + "10.4.3" + ], + "deep-eql": [ + "4.1.3" + ], + "delayed-stream": [ + "1.0.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "entities": [ + "4.5.0" + ], + "esbuild": [ + "0.19.8" + ], + "estree-walker": [ + "3.0.3" + ], + "execa": [ + "8.0.1" + ], + "form-data": [ + "4.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "get-func-name": [ + "2.0.2" + ], + "get-stream": [ + "8.0.1" + ], + "html-encoding-sniffer": [ + "4.0.0" + ], + "http-proxy-agent": [ + "7.0.0" + ], + "https-proxy-agent": [ + "7.0.2" + ], + "human-signals": [ + "5.0.0" + ], + "iconv-lite": [ + "0.6.3" + ], + "is-potential-custom-element-name": [ + "1.0.1" + ], + "is-stream": [ + "3.0.0" + ], + "isexe": [ + "2.0.0" + ], + "js-tokens": [ + "8.0.3" + ], + "jsdom": [ + "23.0.1" + ], + "jsonc-parser": [ + "3.2.0" + ], + "local-pkg": [ + "0.5.0" + ], + "loupe": [ + "2.3.7" + ], + "magic-string": [ + "0.30.5" + ], + "merge-stream": [ + "2.0.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "4.0.0" + ], + "mlly": [ + "1.4.2" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "npm-run-path": [ + "5.1.0" + ], + "nwsapi": [ + "2.2.7" + ], + "onetime": [ + "6.0.0" + ], + "p-limit": [ + "5.0.0" + ], + "parse5": [ + "7.1.2" + ], + "path-key": [ + "3.1.1", + "4.0.0" + ], + "pathe": [ + "1.1.1" + ], + "pathval": [ + "1.1.1" + ], + "picocolors": [ + "1.0.0" + ], + "pkg-types": [ + "1.0.3" + ], + "postcss": [ + "8.4.35" + ], + "pretty-format": [ + "29.7.0" + ], + "psl": [ + "1.9.0" + ], + "punycode": [ + "2.3.1" + ], + "querystringify": [ + "2.2.0" + ], + "react-is": [ + "18.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "rollup": [ + "4.6.1" + ], + "rrweb-cssom": [ + "0.6.0" + ], + "safer-buffer": [ + "2.1.2" + ], + "saxes": [ + "6.0.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "siginfo": [ + "2.0.0" + ], + "signal-exit": [ + "4.1.0" + ], + "source-map-js": [ + "1.0.2" + ], + "stackback": [ + "0.0.2" + ], + "std-env": [ + "3.6.0" + ], + "strip-final-newline": [ + "3.0.0" + ], + "strip-literal": [ + "2.0.0" + ], + "symbol-tree": [ + "3.2.4" + ], + "tinybench": [ + "2.5.1" + ], + "tinypool": [ + "0.8.2" + ], + "tinyspy": [ + "2.2.0" + ], + "tough-cookie": [ + "4.1.3" + ], + "tr46": [ + "5.0.0" + ], + "type-detect": [ + "4.0.8" + ], + "ufo": [ + "1.3.2" + ], + "universalify": [ + "0.2.0" + ], + "url-parse": [ + "1.5.10" + ], + "vite": [ + "5.1.6" + ], + "vite-node": [ + "1.3.1" + ], + "vitest": [ + "1.3.1_jsdom_23.0.1" + ], + "w3c-xmlserializer": [ + "5.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-encoding": [ + "3.1.1" + ], + "whatwg-mimetype": [ + "4.0.0" + ], + "whatwg-url": [ + "14.0.0" + ], + "which": [ + "2.0.2" + ], + "why-is-node-running": [ + "2.2.2" + ], + "ws": [ + "8.14.2" + ], + "xml-name-validator": [ + "5.0.0" + ], + "xmlchars": [ + "2.2.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdy__4.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "spdy", + "version": "4.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "url": "https://registry.npmjs.org/spdy/-/spdy-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": false + } + }, + "npm__at_babel_helper-create-class-features-plugin__7.22.15__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-create-class-features-plugin", + "version": "7.22.15_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-function-name": "7.23.0", + "@babel/helper-member-expression-to-functions": "7.23.0", + "@babel/helper-optimise-call-expression": "7.22.5", + "@babel/helper-replace-supers": "7.22.20_at_babel_core_7.23.5", + "@babel/helper-skip-transparent-expression-wrappers": "7.22.5", + "@babel/helper-split-export-declaration": "7.22.6", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_node__18.18.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/node", + "version": "18.18.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue/libraries/simple": [ + "@types/node" + ] + }, + "integrity": "sha512-0OVfGupTl3NBFr8+iXpfZ8NR7jfFO+P1Q+IO/q0wbo02wYkP5gy36phojeYWpLQ6WAMjl+VfmqUk2YbUfp0irA==", + "url": "https://registry.npmjs.org/@types/node/-/node-18.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": false + } + }, + "npm__at_types_estree__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/estree", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/estree": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__webpack-dev-server__4.15.1__-360275163": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "webpack-dev-server", + "version": "4.15.1_-360275163", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react-webpack": [ + "webpack-dev-server" + ] + }, + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "url": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.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": false + } + }, + "npm__at_babel_plugin-transform-literals__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__get-intrinsic__1.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-intrinsic", + "version": "1.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "function-bind": "1.1.1", + "has": "1.0.3", + "has-proto": "1.0.1", + "has-symbols": "1.0.3" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__param-case__3.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "param-case", + "version": "3.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "dot-case": "3.0.4", + "tslib": "2.6.2" + }, + "transitive_closure": { + "dot-case": [ + "3.0.4" + ], + "lower-case": [ + "2.0.2" + ], + "no-case": [ + "3.0.4" + ], + "param-case": [ + "3.0.4" + ], + "tslib": [ + "2.6.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_env__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/env", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-F3KLtiDrUslAZhTYTh8Zk5ZaavbYwLUn3NYPBnOjAXU8hWm0QVGVzKIOuURQ098ofRU4e9oglf3Sj9pFx5nI5w==", + "url": "https://registry.npmjs.org/@next/env/-/env-13.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": false + } + }, + "npm__at_rollup_rollup-win32-x64-msvc__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-win32-x64-msvc", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__lodash.debounce__4.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "lodash.debounce", + "version": "4.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "url": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-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": false + } + }, + "npm__node-forge__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "node-forge", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "url": "https://registry.npmjs.org/node-forge/-/node-forge-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": false + } + }, + "npm__compressible__2.0.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "compressible", + "version": "2.0.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "mime-db": "1.52.0" + }, + "transitive_closure": { + "compressible": [ + "2.0.18" + ], + "mime-db": [ + "1.52.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-sfc__3.2.37__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-sfc", + "version": "3.2.37", + "dev": true, + "root_package": "", + "link_packages": { + "vue/libraries/simple": [ + "@vue/compiler-sfc" + ] + }, + "deps": { + "@babel/parser": "7.23.0", + "@vue/compiler-core": "3.2.37", + "@vue/compiler-dom": "3.2.37", + "@vue/compiler-ssr": "3.2.37", + "@vue/reactivity-transform": "3.2.37", + "@vue/shared": "3.2.37", + "estree-walker": "2.0.2", + "magic-string": "0.25.9", + "postcss": "8.4.31", + "source-map": "0.6.1" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.37" + ], + "@vue/compiler-dom": [ + "3.2.37" + ], + "@vue/compiler-sfc": [ + "3.2.37" + ], + "@vue/compiler-ssr": [ + "3.2.37" + ], + "@vue/reactivity-transform": [ + "3.2.37" + ], + "@vue/shared": [ + "3.2.37" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.25.9" + ], + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map": [ + "0.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__glob__7.1.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "glob", + "version": "7.1.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "url": "https://registry.npmjs.org/glob/-/glob-7.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": false + } + }, + "npm__get-stream__6.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-stream", + "version": "6.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "url": "https://registry.npmjs.org/get-stream/-/get-stream-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": false + } + }, + "npm__xml-name-validator__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "xml-name-validator", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==", + "url": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-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": false + } + }, + "npm__at_babel_plugin-transform-json-strings__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-json-strings", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-jsx__7.23.3__at_babel_core_7.23.5": { + "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.23.5", + "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": false + } + }, + "npm__vue-tsc__1.0.9__typescript_4.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vue-tsc", + "version": "1.0.9_typescript_4.9.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "vue-tsc" + ] + }, + "integrity": "sha512-vRmHD1K6DmBymNhoHjQy/aYKTRQNLGOu2/ESasChG9Vy113K6CdP0NlhR0bzgFJfv2eFB9Ez/9L5kIciUajBxQ==", + "url": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.0.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-wasm-bytecode__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/helper-wasm-bytecode", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "url": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.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": false + } + }, + "npm__asynciterator.prototype__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "asynciterator.prototype", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "has-symbols": "1.0.3" + }, + "transitive_closure": { + "asynciterator.prototype": [ + "1.0.0" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_code-frame__7.22.13__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/code-frame", + "version": "7.22.13", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/highlight": "7.22.20", + "chalk": "2.4.2" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.22.13" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.22.20" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_serve-index__1.9.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/serve-index", + "version": "1.9.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-asaEIoc6J+DbBKXtO7p2shWUpKacZOoMBEGBgPG91P8xhO53ohzHWGCs4ScZo5pQMf5ukQzVT9fhX1WzpHihig==", + "url": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.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": false + } + }, + "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.5" + }, + "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.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/types": [ + "7.23.5" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_yargs__17.0.26__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/yargs", + "version": "17.0.26", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/yargs-parser": "21.0.1" + }, + "transitive_closure": { + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__hpack.js__2.1.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "hpack.js", + "version": "2.1.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "url": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.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": false + } + }, + "npm__pkg-types__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pkg-types", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", + "url": "https://registry.npmjs.org/pkg-types/-/pkg-types-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": false + } + }, + "npm__has-proto__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "has-proto", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "has-proto": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tapable__2.2.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tapable", + "version": "2.2.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tapable": [ + "2.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/linux-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==", + "url": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.8.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": false + } + }, + "npm__at_types_http-proxy__1.17.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/http-proxy", + "version": "1.17.12", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/http-proxy": [ + "1.17.12" + ], + "@types/node": [ + "18.19.18" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_reactivity-transform__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/reactivity-transform", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.5", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "2.0.2", + "magic-string": "0.30.4" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.30.4" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_reactivity-transform__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/reactivity-transform", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.5", + "@vue/compiler-core": "3.2.45", + "@vue/shared": "3.2.45", + "estree-walker": "2.0.2", + "magic-string": "0.25.9" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/reactivity-transform": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.25.9" + ], + "source-map": [ + "0.6.1" + ], + "sourcemap-codec": [ + "1.4.8" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__caniuse-lite__1.0.30001542__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "caniuse-lite", + "version": "1.0.30001542", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "caniuse-lite": [ + "1.0.30001542" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__get-stream__8.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-stream", + "version": "8.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "get-stream": [ + "8.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_svgr_babel-plugin-remove-jsx-attribute__8.0.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-remove-jsx-attribute", + "version": "8.0.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-remove-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__memfs__3.5.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "memfs", + "version": "3.5.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "url": "https://registry.npmjs.org/memfs/-/memfs-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": false + } + }, + "npm__domexception__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "domexception", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "webidl-conversions": "7.0.0" + }, + "transitive_closure": { + "domexception": [ + "4.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__swc-loader__0.2.3__1251614587": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "swc-loader", + "version": "0.2.3_1251614587", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react-webpack": [ + "swc-loader" + ] + }, + "integrity": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==", + "url": "https://registry.npmjs.org/swc-loader/-/swc-loader-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__web-vitals__2.1.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "web-vitals", + "version": "2.1.4", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "web-vitals" + ] + }, + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==", + "url": "https://registry.npmjs.org/web-vitals/-/web-vitals-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": false + } + }, + "npm__strip-literal__1.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-literal", + "version": "1.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", + "url": "https://registry.npmjs.org/strip-literal/-/strip-literal-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__relateurl__0.2.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "relateurl", + "version": "0.2.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "url": "https://registry.npmjs.org/relateurl/-/relateurl-0.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": false + } + }, + "npm__ansi-escapes__4.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-escapes", + "version": "4.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "url": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-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": false + } + }, + "npm__eslint-plugin-jest__25.7.0__-189536879": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-jest", + "version": "25.7.0_-189536879", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "url": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.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": false + } + }, + "npm__at_vue_reactivity__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/reactivity", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==", + "url": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__at_babel_plugin-transform-object-super__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-object-super", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-replace-supers": "7.22.20_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-object-super": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__styled-jsx__5.1.0__986221465": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "styled-jsx", + "version": "5.1.0_986221465", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==", + "url": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-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": false + } + }, + "npm__at_esbuild_android-arm64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/android-arm64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/android-arm64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-private-property-in-object__7.21.11__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-private-property-in-object", + "version": "7.21.11_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-private-property-in-object": "7.14.5_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-private-property-in-object": [ + "7.21.11_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-private-property-in-object": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-private-methods__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-private-methods", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-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": false + } + }, + "npm__vitest__1.0.2__jsdom_23.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vitest", + "version": "1.0.2_jsdom_23.0.1", + "dev": true, + "root_package": "", + "link_packages": { + "": [ + "vitest" + ] + }, + "deps": { + "@vitest/expect": "1.0.2", + "@vitest/runner": "1.0.2", + "@vitest/snapshot": "1.0.2", + "@vitest/spy": "1.0.2", + "@vitest/utils": "1.0.2", + "acorn-walk": "8.3.1", + "cac": "6.7.14", + "chai": "4.3.10", + "debug": "4.3.4", + "execa": "8.0.1", + "jsdom": "23.0.1", + "local-pkg": "0.5.0", + "magic-string": "0.30.5", + "pathe": "1.1.1", + "picocolors": "1.0.0", + "std-env": "3.6.0", + "strip-literal": "1.3.0", + "tinybench": "2.5.1", + "tinypool": "0.8.1", + "vite": "5.0.6", + "vite-node": "1.0.2", + "why-is-node-running": "2.2.2" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@vitest/expect": [ + "1.0.2" + ], + "@vitest/runner": [ + "1.0.2" + ], + "@vitest/snapshot": [ + "1.0.2" + ], + "@vitest/spy": [ + "1.0.2" + ], + "@vitest/utils": [ + "1.0.2" + ], + "acorn": [ + "8.10.0" + ], + "acorn-walk": [ + "8.3.1" + ], + "agent-base": [ + "7.1.0" + ], + "ansi-styles": [ + "5.2.0" + ], + "assertion-error": [ + "1.1.0" + ], + "asynckit": [ + "0.4.0" + ], + "cac": [ + "6.7.14" + ], + "chai": [ + "4.3.10" + ], + "check-error": [ + "1.0.3" + ], + "combined-stream": [ + "1.0.8" + ], + "cross-spawn": [ + "7.0.3" + ], + "cssstyle": [ + "3.0.0" + ], + "data-urls": [ + "5.0.0" + ], + "debug": [ + "4.3.4" + ], + "decimal.js": [ + "10.4.3" + ], + "deep-eql": [ + "4.1.3" + ], + "delayed-stream": [ + "1.0.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "entities": [ + "4.5.0" + ], + "esbuild": [ + "0.19.8" + ], + "execa": [ + "8.0.1" + ], + "form-data": [ + "4.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "get-func-name": [ + "2.0.2" + ], + "get-stream": [ + "8.0.1" + ], + "html-encoding-sniffer": [ + "4.0.0" + ], + "http-proxy-agent": [ + "7.0.0" + ], + "https-proxy-agent": [ + "7.0.2" + ], + "human-signals": [ + "5.0.0" + ], + "iconv-lite": [ + "0.6.3" + ], + "is-potential-custom-element-name": [ + "1.0.1" + ], + "is-stream": [ + "3.0.0" + ], + "isexe": [ + "2.0.0" + ], + "jsdom": [ + "23.0.1" + ], + "jsonc-parser": [ + "3.2.0" + ], + "local-pkg": [ + "0.5.0" + ], + "loupe": [ + "2.3.7" + ], + "magic-string": [ + "0.30.5" + ], + "merge-stream": [ + "2.0.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "4.0.0" + ], + "mlly": [ + "1.4.2" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "npm-run-path": [ + "5.1.0" + ], + "nwsapi": [ + "2.2.7" + ], + "onetime": [ + "6.0.0" + ], + "p-limit": [ + "5.0.0" + ], + "parse5": [ + "7.1.2" + ], + "path-key": [ + "3.1.1", + "4.0.0" + ], + "pathe": [ + "1.1.1" + ], + "pathval": [ + "1.1.1" + ], + "picocolors": [ + "1.0.0" + ], + "pkg-types": [ + "1.0.3" + ], + "postcss": [ + "8.4.32", + "8.4.35" + ], + "pretty-format": [ + "29.7.0" + ], + "psl": [ + "1.9.0" + ], + "punycode": [ + "2.3.1" + ], + "querystringify": [ + "2.2.0" + ], + "react-is": [ + "18.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "rollup": [ + "4.6.1" + ], + "rrweb-cssom": [ + "0.6.0" + ], + "safer-buffer": [ + "2.1.2" + ], + "saxes": [ + "6.0.0" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "siginfo": [ + "2.0.0" + ], + "signal-exit": [ + "4.1.0" + ], + "source-map-js": [ + "1.0.2" + ], + "stackback": [ + "0.0.2" + ], + "std-env": [ + "3.6.0" + ], + "strip-final-newline": [ + "3.0.0" + ], + "strip-literal": [ + "1.3.0" + ], + "symbol-tree": [ + "3.2.4" + ], + "tinybench": [ + "2.5.1" + ], + "tinypool": [ + "0.8.1" + ], + "tinyspy": [ + "2.2.0" + ], + "tough-cookie": [ + "4.1.3" + ], + "tr46": [ + "5.0.0" + ], + "type-detect": [ + "4.0.8" + ], + "ufo": [ + "1.3.2" + ], + "universalify": [ + "0.2.0" + ], + "url-parse": [ + "1.5.10" + ], + "vite": [ + "5.0.6", + "5.1.6" + ], + "vite-node": [ + "1.0.2" + ], + "vitest": [ + "1.0.2_jsdom_23.0.1" + ], + "w3c-xmlserializer": [ + "5.0.0" + ], + "webidl-conversions": [ + "7.0.0" + ], + "whatwg-encoding": [ + "3.1.1" + ], + "whatwg-mimetype": [ + "4.0.0" + ], + "whatwg-url": [ + "14.0.0" + ], + "which": [ + "2.0.2" + ], + "why-is-node-running": [ + "2.2.2" + ], + "ws": [ + "8.14.2" + ], + "xml-name-validator": [ + "5.0.0" + ], + "xmlchars": [ + "2.2.0" + ], + "yocto-queue": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-json-strings__7.8.3__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-json-strings", + "version": "7.8.3_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_wasm-gen__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/wasm-gen", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + }, + "transitive_closure": { + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_tootallnate_once__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@tootallnate/once", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "url": "https://registry.npmjs.org/@tootallnate/once/-/once-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__unicode-canonical-property-names-ecmascript__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "unicode-canonical-property-names-ecmascript", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "url": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-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": false + } + }, + "npm__at_babel_plugin-transform-flow-strip-types__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-flow-strip-types", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-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": false + } + }, + "npm__locate-path__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "locate-path", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-locate": "4.1.0" + }, + "transitive_closure": { + "locate-path": [ + "5.0.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__uuid__8.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "uuid", + "version": "8.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "url": "https://registry.npmjs.org/uuid/-/uuid-8.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": false + } + }, + "npm__at_babel_plugin-transform-runtime__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-runtime", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ITwqpb6V4btwUG0YJR82o2QvmWrLgDnx/p2A3CTPYGaRgULkDiC0DRA2C4jlRB9uXGUEfaSS/IGHfVW+ohzYDw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-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": false + } + }, + "npm__at_vue_shared__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/shared", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==", + "url": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__chai__4.3.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "chai", + "version": "4.3.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==", + "url": "https://registry.npmjs.org/chai/-/chai-4.3.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": false + } + }, + "npm__at_babel_plugin-transform-react-jsx-development__7.22.5__at_babel_core_7.23.5": { + "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.23.5", + "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": false + } + }, + "npm__typescript__5.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "typescript", + "version": "5.4.2", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "typescript" + ] + }, + "deps": {}, + "transitive_closure": { + "typescript": [ + "5.4.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_babel__core__7.20.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/babel__core", + "version": "7.20.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==", + "url": "https://registry.npmjs.org/@types/babel__core/-/babel__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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_babel__core__7.20.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/babel__core", + "version": "7.20.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "url": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.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": false + } + }, + "npm__at_bazel_ibazel__0.16.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@bazel/ibazel", + "version": "0.16.2", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "@bazel/ibazel" + ], + "react": [ + "@bazel/ibazel" + ], + "vue": [ + "@bazel/ibazel" + ] + }, + "deps": {}, + "transitive_closure": { + "@bazel/ibazel": [ + "0.16.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-bugfix-v8-spread-parameters-in-optional-chaining__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "7.22.5", + "@babel/plugin-transform-optional-chaining": "7.23.4_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-chaining": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__multicast-dns__7.2.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "multicast-dns", + "version": "7.2.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "url": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.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": false + } + }, + "npm__at_babel_helper-define-polyfill-provider__0.4.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-define-polyfill-provider", + "version": "0.4.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "url": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__whatwg-url__14.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "whatwg-url", + "version": "14.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", + "url": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.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": false + } + }, + "npm__joycon__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "joycon", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", + "url": "https://registry.npmjs.org/joycon/-/joycon-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": false + } + }, + "npm__ajv-formats__2.1.1__ajv_8.12.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ajv-formats", + "version": "2.1.1_ajv_8.12.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ajv": "8.12.0" + }, + "transitive_closure": { + "ajv": [ + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "json-schema-traverse": [ + "1.0.0" + ], + "punycode": [ + "2.3.1" + ], + "require-from-string": [ + "2.0.2" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-darwin-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-darwin-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-darwin-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__locate-character__3.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "locate-character", + "version": "3.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "locate-character": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_reactivity__3.3.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/reactivity", + "version": "3.3.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "url": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.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": false + } + }, + "npm__https-proxy-agent__5.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "https-proxy-agent", + "version": "5.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "agent-base": "6.0.2", + "debug": "4.3.4" + }, + "transitive_closure": { + "agent-base": [ + "6.0.2" + ], + "debug": [ + "4.3.4" + ], + "https-proxy-agent": [ + "5.0.1" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-win32-ia32-msvc__4.6.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@rollup/rollup-win32-ia32-msvc", + "version": "4.6.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YEeOjxRyEjqcWphH9dyLbzgkF8wZSKAKUkldRY6dgNR5oKs2LZazqGB41cWJ4Iqqcy9/zqYgmzBkRoVz3Q9MLw==", + "url": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.6.1.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": false + } + }, + "npm__eslint-plugin-react-hooks__4.6.0__eslint_8.57.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-react-hooks", + "version": "4.6.0_eslint_8.57.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "url": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.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": false + } + }, + "npm__at_jest_source-map__29.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/source-map", + "version": "29.6.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jridgewell/trace-mapping": "0.3.19", + "callsites": "3.1.0", + "graceful-fs": "4.2.11" + }, + "transitive_closure": { + "@jest/source-map": [ + "29.6.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "callsites": [ + "3.1.0" + ], + "graceful-fs": [ + "4.2.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__yallist__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yallist", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "url": "https://registry.npmjs.org/yallist/-/yallist-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": false + } + }, + "npm__css-what__6.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "css-what", + "version": "6.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "url": "https://registry.npmjs.org/css-what/-/css-what-6.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": false + } + }, + "npm__at_babel_helper-skip-transparent-expression-wrappers__7.22.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-skip-transparent-expression-wrappers", + "version": "7.22.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "url": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-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": false + } + }, + "npm__at_babel_helper-skip-transparent-expression-wrappers__7.22.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-skip-transparent-expression-wrappers", + "version": "7.22.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-skip-transparent-expression-wrappers": [ + "7.22.5" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__npm-run-all__4.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "npm-run-all", + "version": "4.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "npm-run-all" + ] + }, + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "url": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.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": false + } + }, + "npm__tsconfig-to-swcconfig__2.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tsconfig-to-swcconfig", + "version": "2.7.0", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "tsconfig-to-swcconfig" + ] + }, + "deps": { + "@fastify/deepmerge": "1.3.0", + "get-tsconfig": "4.7.2" + }, + "transitive_closure": { + "@fastify/deepmerge": [ + "1.3.0" + ], + "get-tsconfig": [ + "4.7.2" + ], + "resolve-pkg-maps": [ + "1.0.0" + ], + "tsconfig-to-swcconfig": [ + "2.7.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__update-browserslist-db__1.0.13__browserslist_4.22.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "update-browserslist-db", + "version": "1.0.13_browserslist_4.22.2", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "browserslist": "4.22.2", + "escalade": "3.1.1", + "picocolors": "1.0.0" + }, + "transitive_closure": { + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_humanwhocodes_config-array__0.11.11__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@humanwhocodes/config-array", + "version": "0.11.11", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@humanwhocodes/object-schema": "1.2.1", + "debug": "4.3.4", + "minimatch": "3.1.2" + }, + "transitive_closure": { + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "concat-map": [ + "0.0.1" + ], + "debug": [ + "4.3.4" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__isobject__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "isobject", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "url": "https://registry.npmjs.org/isobject/-/isobject-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__abab__2.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "abab", + "version": "2.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "abab": [ + "2.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__rollup__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "rollup", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@rollup/rollup-android-arm-eabi": "4.6.1", + "@rollup/rollup-android-arm64": "4.6.1", + "@rollup/rollup-darwin-arm64": "4.6.1", + "@rollup/rollup-darwin-x64": "4.6.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.6.1", + "@rollup/rollup-linux-arm64-gnu": "4.6.1", + "@rollup/rollup-linux-arm64-musl": "4.6.1", + "@rollup/rollup-linux-x64-gnu": "4.6.1", + "@rollup/rollup-linux-x64-musl": "4.6.1", + "@rollup/rollup-win32-arm64-msvc": "4.6.1", + "@rollup/rollup-win32-ia32-msvc": "4.6.1", + "@rollup/rollup-win32-x64-msvc": "4.6.1", + "fsevents": "2.3.3" + }, + "transitive_closure": { + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "fsevents": [ + "2.3.3" + ], + "rollup": [ + "4.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-shorthand-properties__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-shorthand-properties", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-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": false + } + }, + "npm__thunky__1.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "thunky", + "version": "1.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "thunky": [ + "1.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss__8.4.35": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss", + "version": "8.4.35", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "url": "https://registry.npmjs.org/postcss/-/postcss-8.4.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__postcss__8.4.32": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss", + "version": "8.4.32", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", + "url": "https://registry.npmjs.org/postcss/-/postcss-8.4.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": false + } + }, + "npm__at_next_swc-win32-ia32-msvc__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-win32-ia32-msvc", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Q1XQSLEhFuFhkKFdJIGt7cYQ4T3u6P5wrtUNreg5M+7P+fjSiC8+X+Vjcw+oebaacsdl0pWZlK+oACGafush1w==", + "url": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.5.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": false + } + }, + "npm__postcss__8.4.31": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss", + "version": "8.4.31", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "url": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "commit": "", + "patch_args": [], + "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__webpack-merge__5.10.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "webpack-merge", + "version": "5.10.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "clone-deep": "4.0.1", + "flat": "5.0.2", + "wildcard": "2.0.1" + }, + "transitive_closure": { + "clone-deep": [ + "4.0.1" + ], + "flat": [ + "5.0.2" + ], + "is-plain-object": [ + "2.0.4" + ], + "isobject": [ + "3.0.1" + ], + "kind-of": [ + "6.0.3" + ], + "shallow-clone": [ + "3.0.1" + ], + "webpack-merge": [ + "5.10.0" + ], + "wildcard": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jridgewell_resolve-uri__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/resolve-uri", + "version": "3.1.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@jridgewell/resolve-uri": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_xtuc_long__4.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@xtuc/long", + "version": "4.2.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__language-subtag-registry__0.3.22": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "language-subtag-registry", + "version": "0.3.22", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "url": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "commit": "", + "patch_args": [], + "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__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": false + } + }, + "npm__at_babel_plugin-transform-for-of__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-for-of", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-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": false + } + }, + "npm__at_fontsource_fira-mono__5.0.12__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@fontsource/fira-mono", + "version": "5.0.12", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@fontsource/fira-mono" + ] + }, + "deps": {}, + "transitive_closure": { + "@fontsource/fira-mono": [ + "5.0.12" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-generator-fn__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-generator-fn", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-generator-fn": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_cookie__0.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/cookie", + "version": "0.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/cookie": [ + "0.6.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__w3c-xmlserializer__5.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "w3c-xmlserializer", + "version": "5.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "xml-name-validator": "5.0.0" + }, + "transitive_closure": { + "w3c-xmlserializer": [ + "5.0.0" + ], + "xml-name-validator": [ + "5.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-computed-properties__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-computed-properties", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-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": false + } + }, + "npm__at_jridgewell_resolve-uri__3.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jridgewell/resolve-uri", + "version": "3.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "url": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-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": false + } + }, + "npm__at_typescript-eslint_eslint-plugin__5.44.0__-718862811": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/eslint-plugin", + "version": "5.44.0_-718862811", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react": [ + "@typescript-eslint/eslint-plugin" + ] + }, + "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": false + } + }, + "npm__caniuse-lite__1.0.30001566__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "caniuse-lite", + "version": "1.0.30001566", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "caniuse-lite": [ + "1.0.30001566" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__find-up__4.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "find-up", + "version": "4.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "url": "https://registry.npmjs.org/find-up/-/find-up-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": false + } + }, + "npm__get-func-name__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "get-func-name", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "get-func-name": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__why-is-node-running__2.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "why-is-node-running", + "version": "2.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==", + "url": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__p-locate__4.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "p-locate", + "version": "4.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "url": "https://registry.npmjs.org/p-locate/-/p-locate-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": false + } + }, + "npm__estree-walker__3.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "estree-walker", + "version": "3.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/estree": "1.0.2" + }, + "transitive_closure": { + "@types/estree": [ + "1.0.2" + ], + "estree-walker": [ + "3.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-proposal-optional-chaining__7.21.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-optional-chaining", + "version": "7.21.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "7.22.5", + "@babel/plugin-syntax-optional-chaining": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-optional-chaining": [ + "7.21.0_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webidl-conversions__7.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "webidl-conversions", + "version": "7.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "url": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-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": false + } + }, + "npm__at_svgr_babel-plugin-transform-react-native-svg__8.1.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@svgr/babel-plugin-transform-react-native-svg", + "version": "8.1.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", + "url": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-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": false + } + }, + "npm__whatwg-encoding__3.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "whatwg-encoding", + "version": "3.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "iconv-lite": "0.6.3" + }, + "transitive_closure": { + "iconv-lite": [ + "0.6.3" + ], + "safer-buffer": [ + "2.1.2" + ], + "whatwg-encoding": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_estree__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/estree", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/estree": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_eslint_eslintrc__1.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@eslint/eslintrc", + "version": "1.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ajv": "6.12.6", + "debug": "4.3.4", + "espree": "9.6.1", + "globals": "13.22.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": [ + "1.4.1" + ], + "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" + ], + "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.22.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.3.1" + ], + "resolve-from": [ + "4.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "type-fest": [ + "0.20.2" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tinybench__2.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tinybench", + "version": "2.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==", + "url": "https://registry.npmjs.org/tinybench/-/tinybench-2.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": false + } + }, + "npm__at_next_swc-win32-x64-msvc__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-win32-x64-msvc", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-win32-x64-msvc": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__clone-deep__4.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "clone-deep", + "version": "4.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "url": "https://registry.npmjs.org/clone-deep/-/clone-deep-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": false + } + }, + "npm__snake-case__3.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "snake-case", + "version": "3.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "url": "https://registry.npmjs.org/snake-case/-/snake-case-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": false + } + }, + "npm__decimal.js__10.4.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "decimal.js", + "version": "10.4.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "decimal.js": [ + "10.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_types__24.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/types", + "version": "24.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "url": "https://registry.npmjs.org/@jest/types/-/types-24.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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helpers__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helpers", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.5", + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@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.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "debug": [ + "4.3.4" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "ms": [ + "2.1.2" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escape-string-regexp": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_webassemblyjs_utf8__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/utf8", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "url": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.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": false + } + }, + "npm__https-proxy-agent__7.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "https-proxy-agent", + "version": "7.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "agent-base": "7.1.0", + "debug": "4.3.4" + }, + "transitive_closure": { + "agent-base": [ + "7.1.0" + ], + "debug": [ + "4.3.4" + ], + "https-proxy-agent": [ + "7.0.2" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_fastify_deepmerge__1.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@fastify/deepmerge", + "version": "1.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@fastify/deepmerge": [ + "1.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__eslint__8.55.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint", + "version": "8.55.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "": [ + "eslint" + ] + }, + "integrity": "sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==", + "url": "https://registry.npmjs.org/eslint/-/eslint-8.55.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": false + } + }, + "npm__at_babel_plugin-proposal-class-properties__7.18.6__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-class-properties", + "version": "7.18.6_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.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": false + } + }, + "npm__at_vue_compiler-ssr__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-ssr", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-dom": "3.2.45", + "@vue/shared": "3.2.45" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/compiler-ssr": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map": [ + "0.6.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__cliui__8.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cliui", + "version": "8.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "url": "https://registry.npmjs.org/cliui/-/cliui-8.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": false + } + }, + "npm__at_babel_plugin-syntax-typescript__7.22.5__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-typescript", + "version": "7.22.5_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-modules-umd__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-modules-umd", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-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": false + } + }, + "npm__at_next_swc-darwin-arm64__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-darwin-arm64", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-darwin-arm64": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__hosted-git-info__2.8.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "hosted-git-info", + "version": "2.8.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "hosted-git-info": [ + "2.8.9" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__schema-utils__3.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "schema-utils", + "version": "3.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "url": "https://registry.npmjs.org/schema-utils/-/schema-utils-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": false + } + }, + "npm__at_babel_plugin-transform-unicode-regex__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-unicode-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-regexp-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-unicode-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_server-renderer__3.2.45__vue_3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/server-renderer", + "version": "3.2.45_vue_3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==", + "url": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__ajv-keywords__5.1.0__ajv_8.12.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ajv-keywords", + "version": "5.1.0_ajv_8.12.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "url": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-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": false + } + }, + "npm__vue-template-compiler__2.7.14__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vue-template-compiler", + "version": "2.7.14", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "de-indent": "1.0.2", + "he": "1.2.0" + }, + "transitive_closure": { + "de-indent": [ + "1.0.2" + ], + "he": [ + "1.2.0" + ], + "vue-template-compiler": [ + "2.7.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-typescript__7.23.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-typescript", + "version": "7.23.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-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": false + } + }, + "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": false + } + }, + "npm__at_fontsource_fira-mono__5.0.12": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@fontsource/fira-mono", + "version": "5.0.12", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@fontsource/fira-mono" + ] + }, + "integrity": "sha512-1uFRjqCcxVv4F31PjyLm8o4oNlT5ywwh6OwcDGkZbafOeFZHXekvholS9IlfZkRsZvVhSbFRHT/5iDib4KTtpg==", + "url": "https://registry.npmjs.org/@fontsource/fira-mono/-/fira-mono-5.0.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": false + } + }, + "npm__at_swc_core-win32-ia32-msvc__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-win32-ia32-msvc", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0f6nicKSLlDKlyPRl2JEmkpBV4aeDfRQg6n8mPqgL7bliZIcDahG0ej+HxgNjZfS3e0yjDxsNRa6sAqWU2Z60A==", + "url": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.100.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": false + } + }, + "npm__at_types_pug__2.0.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/pug", + "version": "2.0.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==", + "url": "https://registry.npmjs.org/@types/pug/-/pug-2.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-parameters__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-parameters", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-parameters": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-android-arm64__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-android-arm64", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-android-arm64": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-svelte__2.36.0-next.10__-1307611191": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-svelte", + "version": "2.36.0-next.10_-1307611191", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "eslint-plugin-svelte" + ] + }, + "integrity": "sha512-Dj4sxIJjcbTCqw/ATPmLOie9TmYHhjm6T86GL2KWzXGv79wxKkhSeirWB5wTqEf+RS+56Gvi9xWUljrdHu4V+g==", + "url": "https://registry.npmjs.org/eslint-plugin-svelte/-/eslint-plugin-svelte-2.36.0-next.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-linux-x64-gnu__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-linux-x64-gnu", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__local-pkg__0.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "local-pkg", + "version": "0.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "mlly": "1.4.2", + "pkg-types": "1.0.3" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "jsonc-parser": [ + "3.2.0" + ], + "local-pkg": [ + "0.5.0" + ], + "mlly": [ + "1.4.2" + ], + "pathe": [ + "1.1.1" + ], + "pkg-types": [ + "1.0.3" + ], + "ufo": [ + "1.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_regjsgen__0.8.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/regjsgen", + "version": "0.8.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "url": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.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": false + } + }, + "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": false + } + }, + "npm__cosmiconfig__8.3.6__typescript_4.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cosmiconfig", + "version": "8.3.6_typescript_4.9.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "url": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_parser__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/parser", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_vitest_utils__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/utils", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GPQkGHAnFAP/+seSbB9pCsj339yRrMgILoI5H2sPevTLCYgBq0VRjF8QSllmnQyvf0EontF6KUIt2t5s2SmqoQ==", + "url": "https://registry.npmjs.org/@vitest/utils/-/utils-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__nth-check__2.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "nth-check", + "version": "2.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "url": "https://registry.npmjs.org/nth-check/-/nth-check-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": false + } + }, + "npm__at_discoveryjs_json-ext__0.5.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@discoveryjs/json-ext", + "version": "0.5.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-dotall-regex__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-dotall-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-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": false + } + }, + "npm__at_volar_source-map__1.0.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@volar/source-map", + "version": "1.0.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "muggle-string": "0.1.0" + }, + "transitive_closure": { + "@volar/source-map": [ + "1.0.9" + ], + "muggle-string": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_esbuild_linux-arm__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-arm", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-arm": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-environment-jsdom__29.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-environment-jsdom", + "version": "29.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "jest-environment-jsdom" + ] + }, + "integrity": "sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==", + "url": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.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": false + } + }, + "npm__internal-slot__1.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "internal-slot", + "version": "1.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "url": "https://registry.npmjs.org/internal-slot/-/internal-slot-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": false + } + }, + "npm__at_webassemblyjs_helper-numbers__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/helper-numbers", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "url": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.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": false + } + }, + "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.3.1" + }, + "transitive_closure": { + "punycode": [ + "2.3.1" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__delayed-stream__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "delayed-stream", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "delayed-stream": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esm-env__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esm-env", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==", + "url": "https://registry.npmjs.org/esm-env/-/esm-env-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": false + } + }, + "npm__is-stream__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-stream", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-stream": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__npm-run-path__4.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "npm-run-path", + "version": "4.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "path-key": "3.1.1" + }, + "transitive_closure": { + "npm-run-path": [ + "4.0.1" + ], + "path-key": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__parse5__7.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "parse5", + "version": "7.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "url": "https://registry.npmjs.org/parse5/-/parse5-7.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": false + } + }, + "npm__html-escaper__2.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "html-escaper", + "version": "2.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "html-escaper": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__wildcard__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "wildcard", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "url": "https://registry.npmjs.org/wildcard/-/wildcard-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": false + } + }, + "npm__at_sveltejs_kit__2.5.3__5236015__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sveltejs/kit", + "version": "2.5.3_5236015", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@sveltejs/kit" + ] + }, + "deps": { + "@sveltejs/vite-plugin-svelte": "3.0.2_-1934338050", + "@types/cookie": "0.6.0", + "cookie": "0.6.0", + "devalue": "4.3.2", + "esm-env": "1.0.0", + "import-meta-resolve": "4.0.0", + "kleur": "4.1.5", + "magic-string": "0.30.5", + "mrmime": "2.0.0", + "sade": "1.8.1", + "set-cookie-parser": "2.6.0", + "sirv": "2.0.4", + "svelte": "5.0.0-next.75", + "tiny-glob": "0.2.9", + "vite": "5.1.6" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@polka/url": [ + "1.0.0-next.25" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "@sveltejs/kit": [ + "2.5.3_5236015" + ], + "@sveltejs/vite-plugin-svelte": [ + "3.0.2_-1934338050" + ], + "@sveltejs/vite-plugin-svelte-inspector": [ + "2.0.0_5236015" + ], + "@types/cookie": [ + "0.6.0" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "cookie": [ + "0.6.0" + ], + "debug": [ + "4.3.4" + ], + "deepmerge": [ + "4.3.1" + ], + "dequal": [ + "2.0.3" + ], + "devalue": [ + "4.3.2" + ], + "esbuild": [ + "0.19.8" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "fsevents": [ + "2.3.3" + ], + "globalyzer": [ + "0.1.0" + ], + "globrex": [ + "0.1.2" + ], + "import-meta-resolve": [ + "4.0.0" + ], + "is-reference": [ + "3.0.2" + ], + "kleur": [ + "4.1.5" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "mri": [ + "1.2.0" + ], + "mrmime": [ + "2.0.0" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "sade": [ + "1.8.1" + ], + "set-cookie-parser": [ + "2.6.0" + ], + "sirv": [ + "2.0.4" + ], + "source-map-js": [ + "1.0.2" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-hmr": [ + "0.15.3_svelte_5.0.0-next.75" + ], + "tiny-glob": [ + "0.2.9" + ], + "totalist": [ + "3.0.1" + ], + "vite": [ + "5.1.6" + ], + "vitefu": [ + "0.2.5_vite_5.1.6" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-decorators__7.23.5__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-decorators", + "version": "7.23.5_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-class-features-plugin": "7.23.5_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-replace-supers": "7.22.20_at_babel_core_7.23.5", + "@babel/helper-split-export-declaration": "7.22.6", + "@babel/plugin-syntax-decorators": "7.23.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-decorators": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-decorators": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_win32-arm64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/win32-arm64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/win32-arm64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__htmlparser2__6.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "htmlparser2", + "version": "6.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "url": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.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": false + } + }, + "npm__hosted-git-info__2.8.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "hosted-git-info", + "version": "2.8.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "url": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.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": false + } + }, + "npm__json-buffer__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "json-buffer", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "json-buffer": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "util-deprecate": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-docker": [ + "2.2.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__signal-exit__4.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "signal-exit", + "version": "4.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "url": "https://registry.npmjs.org/signal-exit/-/signal-exit-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": false + } + }, + "npm__at_swc_core-win32-ia32-msvc__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-win32-ia32-msvc", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__default-gateway__6.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "default-gateway", + "version": "6.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "execa": "5.1.1" + }, + "transitive_closure": { + "cross-spawn": [ + "7.0.3" + ], + "default-gateway": [ + "6.0.3" + ], + "execa": [ + "5.1.1" + ], + "get-stream": [ + "6.0.1" + ], + "human-signals": [ + "2.1.0" + ], + "is-stream": [ + "2.0.1" + ], + "isexe": [ + "2.0.0" + ], + "merge-stream": [ + "2.0.0" + ], + "mimic-fn": [ + "2.1.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "onetime": [ + "5.1.2" + ], + "path-key": [ + "3.1.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "signal-exit": [ + "3.0.7" + ], + "strip-final-newline": [ + "2.0.0" + ], + "which": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__chrome-trace-event__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "chrome-trace-event", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "url": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-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": false + } + }, + "npm__playwright__1.42.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "playwright", + "version": "1.42.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-PgwB03s2DZBcNRoW+1w9E+VkLBxweib6KTXM0M3tkiT4jVxKSi6PmVJ591J+0u10LUrgxB7dLRbiJqO5s2QPMg==", + "url": "https://registry.npmjs.org/playwright/-/playwright-1.42.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": false + } + }, + "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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "callsites": [ + "3.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-import__2.28.1__-730496819__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-import", + "version": "2.28.1_-730496819", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/parser": "5.44.0_1986444992", + "array-includes": "3.1.7", + "array.prototype.findlastindex": "1.2.3", + "array.prototype.flat": "1.3.2", + "array.prototype.flatmap": "1.3.2", + "debug": "3.2.7", + "doctrine": "2.1.0", + "eslint": "8.57.0", + "eslint-import-resolver-node": "0.3.9", + "eslint-module-utils": "2.8.0_-1048923313", + "has": "1.0.3", + "is-core-module": "2.13.0", + "is-glob": "4.0.3", + "minimatch": "3.1.2", + "object.fromentries": "2.0.7", + "object.groupby": "1.0.1", + "object.values": "1.1.7", + "semver": "6.3.1", + "tsconfig-paths": "3.14.2" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json5": [ + "0.0.29" + ], + "@typescript-eslint/parser": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.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-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.findlastindex": [ + "1.2.3" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "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": [ + "3.2.7", + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-module-utils": [ + "2.8.0_-1048923313" + ], + "eslint-plugin-import": [ + "2.28.1_-730496819" + ], + "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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "globby": [ + "11.1.0" + ], + "gopd": [ + "1.0.1" + ], + "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-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "keyv": [ + "4.5.3" + ], + "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.8" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.groupby": [ + "1.0.1" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.2" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "typescript": [ + "4.9.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__is-number__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-number", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Wu1VHeILBK8KAWJUAiSZQX94GmOE45Rg6/538fKwiloUu21KncEkYGPqob2oSZ5mUT73vLGrHQjKw3KMPwfDzg==", + "url": "https://registry.npmjs.org/is-number/-/is-number-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": false + } + }, + "npm__nanoid__3.3.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "nanoid", + "version": "3.3.7", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "nanoid": [ + "3.3.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__source-map-url__0.4.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map-url", + "version": "0.4.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "source-map-url": [ + "0.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_types__7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/types", + "version": "7.23.0", + "dev": true, + "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.0" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_tsconfig__0.1.3__at_types_node_18.19.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/tsconfig", + "version": "0.1.3_at_types_node_18.19.18", + "root_package": "", + "link_workspace": "", + "link_packages": { + "vue": [ + "@vue/tsconfig" + ] + }, + "integrity": "sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==", + "url": "https://registry.npmjs.org/@vue/tsconfig/-/tsconfig-0.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": false + } + }, + "npm__at_babel_helper-member-expression-to-functions__7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-member-expression-to-functions", + "version": "7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5" + }, + "transitive_closure": { + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__enhanced-resolve__5.15.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "enhanced-resolve", + "version": "5.15.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "url": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jest_console__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/console", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "chalk": "4.1.2", + "jest-message-util": "29.7.0", + "jest-util": "29.7.0", + "slash": "3.0.0" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.8.0" + ], + "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.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__chrome-trace-event__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "chrome-trace-event", + "version": "1.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "chrome-trace-event": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-lib-coverage__3.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "istanbul-lib-coverage", + "version": "3.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "url": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__memorystream__0.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "memorystream", + "version": "0.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "memorystream": [ + "0.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__html-escaper__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "html-escaper", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "url": "https://registry.npmjs.org/html-escaper/-/html-escaper-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": false + } + }, + "npm__is-async-function__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-async-function", + "version": "2.0.0", + "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-async-function": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_win32-ia32__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/win32-ia32", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==", + "url": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.8.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": false + } + }, + "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": false + } + }, + "npm__object.hasown__1.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.hasown", + "version": "1.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "url": "https://registry.npmjs.org/object.hasown/-/object.hasown-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": false + } + }, + "npm__spdy-transport__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "spdy-transport", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "url": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-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": false + } + }, + "npm__at_babel_plugin-transform-for-of__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-for-of", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-for-of": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__globals__13.22.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "globals", + "version": "13.22.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "url": "https://registry.npmjs.org/globals/-/globals-13.22.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": false + } + }, + "npm__at_vue_babel-plugin-jsx__1.1.5__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/babel-plugin-jsx", + "version": "1.1.5_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-module-imports": "7.22.15", + "@babel/plugin-syntax-jsx": "7.22.5_at_babel_core_7.23.0", + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.0", + "@babel/types": "7.23.5", + "@vue/babel-helper-vue-transform-on": "1.1.5", + "camelcase": "6.3.0", + "html-tags": "3.3.1", + "svg-tags": "1.0.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@vue/babel-helper-vue-transform-on": [ + "1.1.5" + ], + "@vue/babel-plugin-jsx": [ + "1.1.5_at_babel_core_7.23.0" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "camelcase": [ + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "html-tags": [ + "3.3.1" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "svg-tags": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__esbuild__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==", + "url": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.18.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": false + } + }, + "npm__at_vue_server-renderer__3.3.4__vue_3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/server-renderer", + "version": "3.3.4_vue_3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4", + "vue": "3.3.4" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-sfc": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/runtime-core": [ + "3.3.4" + ], + "@vue/runtime-dom": [ + "3.3.4" + ], + "@vue/server-renderer": [ + "3.3.4_vue_3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "csstype": [ + "3.1.2" + ], + "estree-walker": [ + "2.0.2" + ], + "magic-string": [ + "0.30.4" + ], + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vue": [ + "3.3.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-parameters__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-parameters", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-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": false + } + }, + "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": false + } + }, + "npm__is-async-function__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-async-function", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "url": "https://registry.npmjs.org/is-async-function/-/is-async-function-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": false + } + }, + "npm__wbuf__1.7.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "wbuf", + "version": "1.7.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "minimalistic-assert": "1.0.1" + }, + "transitive_closure": { + "minimalistic-assert": [ + "1.0.1" + ], + "wbuf": [ + "1.7.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_volar_vue-typescript__1.0.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@volar/vue-typescript", + "version": "1.0.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZLe4y9YNbviACa7uAMCilzxA76gbbSlKfjspXBzk6fCobd8QCIig+VyDYcjANIlm2HhgSCX8jYTzhCKlegh4mw==", + "url": "https://registry.npmjs.org/@volar/vue-typescript/-/vue-typescript-1.0.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": false + } + }, + "npm__at_typescript-eslint_utils__7.2.0__2014925157__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "7.2.0_2014925157", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@eslint-community/eslint-utils": "4.4.0_eslint_8.57.0", + "@types/json-schema": "7.0.13", + "@types/semver": "7.5.3", + "@typescript-eslint/scope-manager": "7.2.0", + "@typescript-eslint/types": "7.2.0", + "@typescript-eslint/typescript-estree": "7.2.0_typescript_5.4.2", + "eslint": "8.57.0", + "semver": "7.5.4" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/scope-manager": [ + "7.2.0" + ], + "@typescript-eslint/types": [ + "7.2.0" + ], + "@typescript-eslint/typescript-estree": [ + "7.2.0_typescript_5.4.2" + ], + "@typescript-eslint/utils": [ + "7.2.0_2014925157" + ], + "@typescript-eslint/visitor-keys": [ + "7.2.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", + "2.0.1" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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", + "9.0.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "ts-api-utils": [ + "1.3.0_typescript_5.4.2" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "5.4.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_runtime__7.23.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/runtime", + "version": "7.23.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "url": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.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": false + } + }, + "npm__at_typescript-eslint_scope-manager__5.62.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/scope-manager", + "version": "5.62.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "url": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-logical-assignment-operators__7.10.4__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-logical-assignment-operators", + "version": "7.10.4_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-bugfix-safari-id-destructuring-collision-in-function-expression__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "url": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-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": false + } + }, + "npm__whatwg-mimetype__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "whatwg-mimetype", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "whatwg-mimetype": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tsconfig-paths__3.14.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tsconfig-paths", + "version": "3.14.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/json5": "0.0.29", + "json5": "1.0.2", + "minimist": "1.2.8", + "strip-bom": "3.0.0" + }, + "transitive_closure": { + "@types/json5": [ + "0.0.29" + ], + "json5": [ + "1.0.2" + ], + "minimist": [ + "1.2.8" + ], + "strip-bom": [ + "3.0.0" + ], + "tsconfig-paths": [ + "3.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__spdx-license-ids__3.0.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "spdx-license-ids", + "version": "3.0.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", + "url": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.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": false + } + }, + "npm__http-proxy-middleware__2.0.6__at_types_express_4.17.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-proxy-middleware", + "version": "2.0.6_at_types_express_4.17.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "url": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-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": false + } + }, + "npm__at_vue_runtime-dom__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/runtime-dom", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==", + "url": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__at_esbuild_openbsd-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/openbsd-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==", + "url": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.8.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": false + } + }, + "npm__babel-plugin-polyfill-corejs3__0.8.6__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-polyfill-corejs3", + "version": "0.8.6_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-define-polyfill-provider": "0.4.3_at_babel_core_7.23.5", + "core-js-compat": "3.34.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-plugin-polyfill-corejs3": [ + "0.8.6_at_babel_core_7.23.5" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "core-js-compat": [ + "3.34.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_devtools-api__6.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/devtools-api", + "version": "6.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==", + "url": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.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": false + } + }, + "npm__at_babel_plugin-transform-optional-catch-binding__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-optional-catch-binding", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__array.prototype.flatmap__1.3.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "array.prototype.flatmap", + "version": "1.3.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "url": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-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": false + } + }, + "npm__at_types_ws__8.5.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/ws", + "version": "8.5.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg==", + "url": "https://registry.npmjs.org/@types/ws/-/ws-8.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": false + } + }, + "npm__diff-sequences__24.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "diff-sequences", + "version": "24.9.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "diff-sequences": [ + "24.9.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__devalue__4.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "devalue", + "version": "4.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "devalue": [ + "4.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-ssr__3.2.37__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-ssr", + "version": "3.2.37", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-dom": "3.2.37", + "@vue/shared": "3.2.37" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.37" + ], + "@vue/compiler-dom": [ + "3.2.37" + ], + "@vue/compiler-ssr": [ + "3.2.37" + ], + "@vue/shared": [ + "3.2.37" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map": [ + "0.6.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webpack__5.89.0__-1501518582": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "webpack", + "version": "5.89.0_-1501518582", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react-webpack": [ + "webpack" + ] + }, + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", + "url": "https://registry.npmjs.org/webpack/-/webpack-5.89.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": false + } + }, + "npm__diff-sequences__24.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "diff-sequences", + "version": "24.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", + "url": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.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": false + } + }, + "npm__iconv-lite__0.6.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "iconv-lite", + "version": "0.6.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "safer-buffer": "2.1.2" + }, + "transitive_closure": { + "iconv-lite": [ + "0.6.3" + ], + "safer-buffer": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-unicode-sets-regex__7.18.6__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-unicode-sets-regex", + "version": "7.18.6_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.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": false + } + }, + "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": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "is-buffer": [ + "1.1.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-regenerator__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-regenerator", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-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": false + } + }, + "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": false + } + }, + "npm__at_vue_reactivity__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/reactivity", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/shared": "3.2.45" + }, + "transitive_closure": { + "@vue/reactivity": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "escape-html": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-resolve-dependencies__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jest-resolve-dependencies", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "url": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__emittery__0.13.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "emittery", + "version": "0.13.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "emittery": [ + "0.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_rushstack_eslint-patch__1.5.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rushstack/eslint-patch", + "version": "1.5.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rushstack/eslint-patch": [ + "1.5.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__agent-base__6.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "agent-base", + "version": "6.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "4.3.4" + }, + "transitive_closure": { + "agent-base": [ + "6.0.2" + ], + "debug": [ + "4.3.4" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__test-exclude__6.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "test-exclude", + "version": "6.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@istanbuljs/schema": "0.1.3", + "glob": "7.2.3", + "minimatch": "3.1.2" + }, + "transitive_closure": { + "@istanbuljs/schema": [ + "0.1.3" + ], + "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" + ], + "test-exclude": [ + "6.0.0" + ], + "wrappy": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__sprintf-js__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sprintf-js", + "version": "1.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "sprintf-js": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_regjsgen__0.8.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/regjsgen", + "version": "0.8.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@babel/regjsgen": [ + "0.8.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-logical-assignment-operators__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-logical-assignment-operators", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "7.10.4_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-logical-assignment-operators": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__magic-string__0.25.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "magic-string", + "version": "0.25.9", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "sourcemap-codec": "1.4.8" + }, + "transitive_closure": { + "magic-string": [ + "0.25.9" + ], + "sourcemap-codec": [ + "1.4.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__nwsapi__2.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "nwsapi", + "version": "2.2.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "nwsapi": [ + "2.2.7" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__w3c-xmlserializer__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "w3c-xmlserializer", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==", + "url": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-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": false + } + }, + "npm__at_jest_transform__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/transform", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@jest/types": "29.6.3", + "@jridgewell/trace-mapping": "0.3.19", + "babel-plugin-istanbul": "6.1.1", + "chalk": "4.1.2", + "convert-source-map": "2.0.0", + "fast-json-stable-stringify": "2.1.0", + "graceful-fs": "4.2.11", + "jest-haste-map": "29.7.0", + "jest-regex-util": "29.6.3", + "jest-util": "29.7.0", + "micromatch": "4.0.5", + "pirates": "4.0.6", + "slash": "3.0.0", + "write-file-atomic": "4.0.2" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "esprima": [ + "4.0.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_node__18.19.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/node", + "version": "18.19.18", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@types/node" + ], + "vue": [ + "@types/node" + ] + }, + "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==", + "url": "https://registry.npmjs.org/@types/node/-/node-18.19.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": false + } + }, + "npm__at_types_serve-index__1.9.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/serve-index", + "version": "1.9.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/express": "4.17.18" + }, + "transitive_closure": { + "@types/body-parser": [ + "1.19.3" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__local-pkg__0.5.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "local-pkg", + "version": "0.5.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", + "url": "https://registry.npmjs.org/local-pkg/-/local-pkg-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": false + } + }, + "npm__at_esbuild_darwin-x64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/darwin-x64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==", + "url": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.8.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": false + } + }, + "npm__jest-each__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-each", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/types": "29.6.3", + "chalk": "4.1.2", + "jest-get-type": "29.6.3", + "jest-util": "29.7.0", + "pretty-format": "29.7.0" + }, + "transitive_closure": { + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "4.3.0", + "5.2.0" + ], + "chalk": [ + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "2.0.1" + ], + "color-name": [ + "1.1.4" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "4.0.0" + ], + "jest-each": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-util": [ + "29.7.0" + ], + "picomatch": [ + "2.3.1" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "supports-color": [ + "7.2.0" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-linux-arm64-gnu__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-linux-arm64-gnu", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-p8hikNnAEJrw5vHCtKiFT4hdlQxk1V7vqPmvUDgL/qe2menQDK/i12tbz7/3BEQ4UqUPnvwpmVn2d19RdEMNxw==", + "url": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.100.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": false + } + }, + "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": false + } + }, + "npm__psl__1.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "psl", + "version": "1.9.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "psl": [ + "1.9.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_visitor-keys__7.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/visitor-keys", + "version": "7.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", + "url": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__babel-preset-current-node-syntax__1.0.1__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-preset-current-node-syntax", + "version": "1.0.1_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/plugin-syntax-async-generators": "7.8.4_at_babel_core_7.23.0", + "@babel/plugin-syntax-bigint": "7.8.3_at_babel_core_7.23.0", + "@babel/plugin-syntax-class-properties": "7.12.13_at_babel_core_7.23.0", + "@babel/plugin-syntax-import-meta": "7.10.4_at_babel_core_7.23.0", + "@babel/plugin-syntax-json-strings": "7.8.3_at_babel_core_7.23.0", + "@babel/plugin-syntax-logical-assignment-operators": "7.10.4_at_babel_core_7.23.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "7.8.3_at_babel_core_7.23.0", + "@babel/plugin-syntax-numeric-separator": "7.10.4_at_babel_core_7.23.0", + "@babel/plugin-syntax-object-rest-spread": "7.8.3_at_babel_core_7.23.0", + "@babel/plugin-syntax-optional-catch-binding": "7.8.3_at_babel_core_7.23.0", + "@babel/plugin-syntax-optional-chaining": "7.8.3_at_babel_core_7.23.0", + "@babel/plugin-syntax-top-level-await": "7.14.5_at_babel_core_7.23.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.0" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_linux-ppc64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-ppc64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-ppc64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tsconfig-to-swcconfig__2.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tsconfig-to-swcconfig", + "version": "2.4.0", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "tsconfig-to-swcconfig" + ] + }, + "deps": { + "@fastify/deepmerge": "1.3.0", + "joycon": "3.1.1", + "jsonc-parser": "3.2.0" + }, + "transitive_closure": { + "@fastify/deepmerge": [ + "1.3.0" + ], + "joycon": [ + "3.1.1" + ], + "jsonc-parser": [ + "3.2.0" + ], + "tsconfig-to-swcconfig": [ + "2.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-typeof-symbol__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-typeof-symbol", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-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": false + } + }, + "npm__at_jest_expect__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/expect", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "url": "https://registry.npmjs.org/@jest/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": false + } + }, + "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": false + } + }, + "npm__js-tokens__8.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "js-tokens", + "version": "8.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "js-tokens": [ + "8.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-compilation-targets__7.22.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-compilation-targets", + "version": "7.22.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "url": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-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": false + } + }, + "npm__esbuild-linux-32__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-32", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==", + "url": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.18.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": false + } + }, + "npm__at_types_bonjour__3.5.11": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/bonjour", + "version": "3.5.11", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==", + "url": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.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": false + } + }, + "npm__sirv__2.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "sirv", + "version": "2.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@polka/url": "1.0.0-next.25", + "mrmime": "2.0.0", + "totalist": "3.0.1" + }, + "transitive_closure": { + "@polka/url": [ + "1.0.0-next.25" + ], + "mrmime": [ + "2.0.0" + ], + "sirv": [ + "2.0.4" + ], + "totalist": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-win32-arm64-msvc__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-win32-arm64-msvc", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_aria-query__5.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/aria-query", + "version": "5.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/aria-query": [ + "5.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string_decoder__1.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string_decoder", + "version": "1.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "url": "https://registry.npmjs.org/string_decoder/-/string_decoder-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": false + } + }, + "npm__at_vitest_expect__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/expect", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mAIo/8uddSWkjQMLFcjqZP3WmkwvvN0OtlyZIu33jFnwme3vZds8m8EDMxtj+Uzni2DwtPfHNjJcTM8zTV1f4A==", + "url": "https://registry.npmjs.org/@vitest/expect/-/expect-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": false + } + }, + "npm__known-css-properties__0.29.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "known-css-properties", + "version": "0.29.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==", + "url": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.29.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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "picomatch": [ + "2.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_tough-cookie__4.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/tough-cookie", + "version": "4.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@types/tough-cookie": [ + "4.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_istanbul-lib-coverage__2.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/istanbul-lib-coverage", + "version": "2.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "url": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-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": false + } + }, + "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.2.2" + }, + "transitive_closure": { + "aria-query": [ + "5.1.3" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "deep-equal": [ + "2.2.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-get-iterator": [ + "1.1.3" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-arguments": [ + "1.1.1" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-is": [ + "1.1.5" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "stop-iteration-iterator": [ + "1.0.0" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-nullish-coalescing-operator__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-nullish-coalescing-operator", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__loader-runner__4.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "loader-runner", + "version": "4.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "url": "https://registry.npmjs.org/loader-runner/-/loader-runner-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": false + } + }, + "npm__esbuild-android-arm64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-android-arm64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==", + "url": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.18.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": false + } + }, + "npm__at_typescript-eslint_types__5.62.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/types", + "version": "5.62.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@typescript-eslint/types": [ + "5.62.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_esbuild_linux-loong64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/linux-loong64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/linux-loong64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__fast-glob__3.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "fast-glob", + "version": "3.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "url": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.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": false + } + }, + "npm__at_jest_types__24.9.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/types", + "version": "24.9.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/istanbul-lib-coverage": "2.0.4", + "@types/istanbul-reports": "1.1.2", + "@types/yargs": "13.0.12" + }, + "transitive_closure": { + "@jest/types": [ + "24.9.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "1.1.2" + ], + "@types/yargs": [ + "13.0.12" + ], + "@types/yargs-parser": [ + "21.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-jest__29.7.0__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "babel-jest", + "version": "29.7.0_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "url": "https://registry.npmjs.org/babel-jest/-/babel-jest-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": false + } + }, + "npm__at_esbuild_darwin-arm64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/darwin-arm64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/darwin-arm64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__launch-editor__2.6.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "launch-editor", + "version": "2.6.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "url": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.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": false + } + }, + "npm__yargs__17.7.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "yargs", + "version": "17.7.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "cliui": "8.0.1", + "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": "21.1.1" + }, + "transitive_closure": { + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "4.3.0" + ], + "cliui": [ + "8.0.1" + ], + "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": [ + "17.7.2" + ], + "yargs-parser": [ + "21.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__iterator.prototype__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "iterator.prototype", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "url": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-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": false + } + }, + "npm__jsdom__23.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "jsdom", + "version": "23.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "": [ + "jsdom" + ] + }, + "integrity": "sha512-2i27vgvlUsGEBO9+/kJQRbtqtm+191b5zAZrU/UezVmnC2dlDAFLgDYJvAEi94T4kjsRKkezEtLQTgsNEsW2lQ==", + "url": "https://registry.npmjs.org/jsdom/-/jsdom-23.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": false + } + }, + "npm__eslint-config-react-app__7.0.1__-1232442389__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-config-react-app", + "version": "7.0.1_-1232442389", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "eslint-config-react-app" + ] + }, + "deps": { + "@babel/core": "7.23.5", + "@babel/eslint-parser": "7.23.3_-37998846", + "@rushstack/eslint-patch": "1.5.1", + "@typescript-eslint/eslint-plugin": "5.44.0_-718862811", + "@typescript-eslint/parser": "5.44.0_1986444992", + "babel-preset-react-app": "10.0.1", + "confusing-browser-globals": "1.0.11", + "eslint": "8.57.0", + "eslint-plugin-flowtype": "8.0.3_-1935217645", + "eslint-plugin-import": "2.28.1_-730496819", + "eslint-plugin-jest": "25.7.0_-189536879", + "eslint-plugin-jsx-a11y": "6.7.1_eslint_8.57.0", + "eslint-plugin-react": "7.33.2_eslint_8.57.0", + "eslint-plugin-react-hooks": "4.6.0_eslint_8.57.0", + "eslint-plugin-testing-library": "5.11.1_1986444992", + "typescript": "4.9.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/eslint-parser": [ + "7.23.3_-37998846" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-builder-binary-assignment-operator-visitor": [ + "7.22.15" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5", + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-remap-async-to-generator": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helper-wrap-function": [ + "7.22.20" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-class-properties": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-decorators": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-nullish-coalescing-operator": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-numeric-separator": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-optional-chaining": [ + "7.21.0_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-private-methods": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-proposal-private-property-in-object": [ + "7.21.0-placeholder-for-preset-env.2_at_babel_core_7.23.5", + "7.21.11_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-static-block": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-decorators": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-dynamic-import": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-export-namespace-from": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-flow": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-assertions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-attributes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-private-property-in-object": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-unicode-sets-regex": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-arrow-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-async-generator-functions": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-async-to-generator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-block-scoped-functions": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-block-scoping": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-class-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-class-static-block": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-classes": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-computed-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-destructuring": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-dotall-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-duplicate-keys": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-dynamic-import": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-exponentiation-operator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-export-namespace-from": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-flow-strip-types": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-for-of": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-function-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-json-strings": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-logical-assignment-operators": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-member-expression-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-amd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-commonjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-systemjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-modules-umd": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-named-capturing-groups-regex": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-new-target": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-nullish-coalescing-operator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-numeric-separator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-object-rest-spread": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-object-super": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-catch-binding": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-optional-chaining": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-parameters": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-private-methods": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-private-property-in-object": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-property-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-display-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx-development": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-pure-annotations": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-regenerator": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-reserved-words": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-runtime": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-shorthand-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-spread": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-sticky-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-template-literals": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-typeof-symbol": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-typescript": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-escapes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-property-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-unicode-sets-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/preset-env": [ + "7.23.5_at_babel_core_7.23.5" + ], + "@babel/preset-modules": [ + "0.1.6-no-external-plugins_at_babel_core_7.23.5" + ], + "@babel/preset-react": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/preset-typescript": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@nicolo-ribaudo/eslint-scope-5-internals": [ + "5.1.1-v1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@rushstack/eslint-patch": [ + "1.5.1" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/json5": [ + "0.0.29" + ], + "@types/parse-json": [ + "4.0.2" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/eslint-plugin": [ + "5.44.0_-718862811" + ], + "@typescript-eslint/experimental-utils": [ + "5.62.0_1986444992" + ], + "@typescript-eslint/parser": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0", + "5.62.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/types": [ + "5.44.0", + "5.62.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3", + "5.62.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_1986444992", + "5.62.0_1986444992" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.0", + "5.62.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": [ + "3.2.1", + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "aria-query": [ + "5.3.0" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.findlastindex": [ + "1.2.3" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "array.prototype.tosorted": [ + "1.1.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "ast-types-flow": [ + "0.0.7" + ], + "asynciterator.prototype": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "axe-core": [ + "4.8.2" + ], + "axobject-query": [ + "3.2.1" + ], + "babel-plugin-macros": [ + "3.1.0" + ], + "babel-plugin-polyfill-corejs2": [ + "0.4.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-corejs3": [ + "0.8.6_at_babel_core_7.23.5" + ], + "babel-plugin-polyfill-regenerator": [ + "0.5.3_at_babel_core_7.23.5" + ], + "babel-plugin-transform-react-remove-prop-types": [ + "0.4.24" + ], + "babel-preset-react-app": [ + "10.0.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "confusing-browser-globals": [ + "1.0.11" + ], + "convert-source-map": [ + "2.0.0" + ], + "core-js-compat": [ + "3.34.0" + ], + "cosmiconfig": [ + "7.1.0" + ], + "cross-spawn": [ + "7.0.3" + ], + "damerau-levenshtein": [ + "1.0.8" + ], + "debug": [ + "3.2.7", + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dequal": [ + "2.0.3" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "emoji-regex": [ + "9.2.2" + ], + "error-ex": [ + "1.3.2" + ], + "es-abstract": [ + "1.22.2" + ], + "es-iterator-helpers": [ + "1.0.15" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-config-react-app": [ + "7.0.1_-1232442389" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-module-utils": [ + "2.8.0_-1048923313" + ], + "eslint-plugin-flowtype": [ + "8.0.3_-1935217645" + ], + "eslint-plugin-import": [ + "2.28.1_-730496819" + ], + "eslint-plugin-jest": [ + "25.7.0_-189536879" + ], + "eslint-plugin-jsx-a11y": [ + "6.7.1_eslint_8.57.0" + ], + "eslint-plugin-react": [ + "7.33.2_eslint_8.57.0" + ], + "eslint-plugin-react-hooks": [ + "4.6.0_eslint_8.57.0" + ], + "eslint-plugin-testing-library": [ + "5.11.1_1986444992" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.57.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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "11.12.0", + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "globby": [ + "11.1.0" + ], + "gopd": [ + "1.0.1" + ], + "graphemer": [ + "1.4.0" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-glob": [ + "4.0.3" + ], + "is-map": [ + "2.0.2" + ], + "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-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "iterator.prototype": [ + "1.1.2" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json-buffer": [ + "3.0.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2", + "2.2.3" + ], + "jsx-ast-utils": [ + "3.3.5" + ], + "keyv": [ + "4.5.3" + ], + "language-subtag-registry": [ + "0.3.22" + ], + "language-tags": [ + "1.0.5" + ], + "levn": [ + "0.4.1" + ], + "lines-and-columns": [ + "1.2.4" + ], + "locate-path": [ + "6.0.0" + ], + "lodash": [ + "4.17.21" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lodash.merge": [ + "4.6.2" + ], + "loose-envify": [ + "1.4.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.8" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "natural-compare-lite": [ + "1.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "object-assign": [ + "4.1.1" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.7" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.groupby": [ + "1.0.1" + ], + "object.hasown": [ + "1.1.3" + ], + "object.values": [ + "1.1.7" + ], + "once": [ + "1.4.0" + ], + "optionator": [ + "0.9.3" + ], + "p-limit": [ + "3.1.0" + ], + "p-locate": [ + "5.0.0" + ], + "parent-module": [ + "1.0.1" + ], + "parse-json": [ + "5.2.0" + ], + "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" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "prelude-ls": [ + "1.2.1" + ], + "prop-types": [ + "15.8.1" + ], + "punycode": [ + "2.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "react-is": [ + "16.13.1" + ], + "reflect.getprototypeof": [ + "1.0.4" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regenerator-transform": [ + "0.15.2" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "regexpp": [ + "3.2.0" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "resolve": [ + "1.22.6", + "2.0.0-next.4" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "string-natural-compare": [ + "3.0.1" + ], + "string.prototype.matchall": [ + "4.0.10" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.2" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "typescript": [ + "4.9.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ], + "yaml": [ + "1.10.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jsonc-parser__3.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jsonc-parser", + "version": "3.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "jsonc-parser": [ + "3.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-class-properties__7.12.13__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-class-properties", + "version": "7.12.13_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "react-is": [ + "16.13.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ipaddr.js__2.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ipaddr.js", + "version": "2.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ipaddr.js": [ + "2.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__strip-bom__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-bom", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "strip-bom": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__define-properties__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "define-properties", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "url": "https://registry.npmjs.org/define-properties/-/define-properties-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": false + } + }, + "npm__rechoir__0.8.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "rechoir", + "version": "0.8.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "resolve": "1.22.6" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "has": [ + "1.0.3" + ], + "is-core-module": [ + "2.13.0" + ], + "path-parse": [ + "1.0.7" + ], + "rechoir": [ + "0.8.0" + ], + "resolve": [ + "1.22.6" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_istanbuljs_load-nyc-config__1.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@istanbuljs/load-nyc-config", + "version": "1.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "url": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-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": false + } + }, + "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": false + } + }, + "npm__at_svgr_babel-preset__8.1.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-preset", + "version": "8.1.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@svgr/babel-plugin-add-jsx-attribute": "8.0.0_at_babel_core_7.23.5", + "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0_at_babel_core_7.23.5", + "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0_at_babel_core_7.23.5", + "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0_at_babel_core_7.23.5", + "@svgr/babel-plugin-svg-dynamic-title": "8.0.0_at_babel_core_7.23.5", + "@svgr/babel-plugin-svg-em-dimensions": "8.0.0_at_babel_core_7.23.5", + "@svgr/babel-plugin-transform-react-native-svg": "8.1.0_at_babel_core_7.23.5", + "@svgr/babel-plugin-transform-svg-component": "8.0.0_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-add-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-attribute": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-remove-jsx-empty-expression": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-replace-jsx-attribute-value": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-dynamic-title": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-svg-em-dimensions": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-react-native-svg": [ + "8.1.0_at_babel_core_7.23.5" + ], + "@svgr/babel-plugin-transform-svg-component": [ + "8.0.0_at_babel_core_7.23.5" + ], + "@svgr/babel-preset": [ + "8.1.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-watcher__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-watcher", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/test-result": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "ansi-escapes": "4.3.2", + "chalk": "4.1.2", + "emittery": "0.13.1", + "jest-util": "29.7.0", + "string-length": "4.0.2" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-escapes": [ + "4.3.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "braces": [ + "3.0.2" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "char-regex": [ + "1.0.2" + ], + "ci-info": [ + "3.8.0" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "emittery": [ + "0.13.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "fill-range": [ + "7.0.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-watcher": [ + "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" + ], + "string-length": [ + "4.0.2" + ], + "strip-ansi": [ + "6.0.1" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-fest": [ + "0.21.3" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_connect-history-api-fallback__1.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/connect-history-api-fallback", + "version": "1.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw==", + "url": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss__8.4.14": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss", + "version": "8.4.14", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "url": "https://registry.npmjs.org/postcss/-/postcss-8.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": false + } + }, + "npm__prettier-plugin-svelte__3.2.2__-1777040783__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "prettier-plugin-svelte", + "version": "3.2.2_-1777040783", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "prettier-plugin-svelte" + ] + }, + "deps": { + "prettier": "3.2.5", + "svelte": "5.0.0-next.75" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "dequal": [ + "2.0.3" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "is-reference": [ + "3.0.2" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "prettier": [ + "3.2.5" + ], + "prettier-plugin-svelte": [ + "3.2.2_-1777040783" + ], + "svelte": [ + "5.0.0-next.75" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__webpack-dev-server__4.15.1__-360275163__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "webpack-dev-server", + "version": "4.15.1_-360275163", + "dev": true, + "root_package": "", + "link_packages": { + "react-webpack": [ + "webpack-dev-server" + ] + }, + "deps": { + "@types/bonjour": "3.5.11", + "@types/connect-history-api-fallback": "1.5.1", + "@types/express": "4.17.18", + "@types/serve-index": "1.9.2", + "@types/serve-static": "1.15.3", + "@types/sockjs": "0.3.34", + "@types/ws": "8.5.6", + "ansi-html-community": "0.0.8", + "bonjour-service": "1.1.1", + "chokidar": "3.5.3", + "colorette": "2.0.20", + "compression": "1.7.4", + "connect-history-api-fallback": "2.0.0", + "default-gateway": "6.0.3", + "express": "4.18.2", + "graceful-fs": "4.2.11", + "html-entities": "2.4.0", + "http-proxy-middleware": "2.0.6_at_types_express_4.17.18", + "ipaddr.js": "2.1.0", + "launch-editor": "2.6.0", + "open": "8.4.2", + "p-retry": "4.6.2", + "rimraf": "3.0.2", + "schema-utils": "4.2.0", + "selfsigned": "2.1.1", + "serve-index": "1.9.1", + "sockjs": "0.3.24", + "spdy": "4.0.2", + "webpack": "5.89.0_-1501518582", + "webpack-cli": "5.1.4_34022717", + "webpack-dev-middleware": "5.3.3_webpack_5.89.0", + "ws": "8.14.2" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_wasm-parser__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/wasm-parser", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "url": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.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": false + } + }, + "npm__strip-final-newline__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-final-newline", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "url": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-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": false + } + }, + "npm__tsutils__3.21.0__typescript_4.9.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tsutils", + "version": "3.21.0_typescript_4.9.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "tslib": "1.14.1", + "typescript": "4.9.3" + }, + "transitive_closure": { + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "typescript": [ + "4.9.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-dom__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-dom", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__flatted__3.2.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "flatted", + "version": "3.2.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "url": "https://registry.npmjs.org/flatted/-/flatted-3.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": false + } + }, + "npm__ajv-keywords__5.1.0__ajv_8.12.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ajv-keywords", + "version": "5.1.0_ajv_8.12.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ajv": "8.12.0", + "fast-deep-equal": "3.1.3" + }, + "transitive_closure": { + "ajv": [ + "8.12.0" + ], + "ajv-keywords": [ + "5.1.0_ajv_8.12.0" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "json-schema-traverse": [ + "1.0.0" + ], + "punycode": [ + "2.3.1" + ], + "require-from-string": [ + "2.0.2" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__boolbase__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "boolbase", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "url": "https://registry.npmjs.org/boolbase/-/boolbase-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": false + } + }, + "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": false + } + }, + "npm__damerau-levenshtein__1.0.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "damerau-levenshtein", + "version": "1.0.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "damerau-levenshtein": [ + "1.0.8" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pure-rand__6.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pure-rand", + "version": "6.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "url": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.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": false + } + }, + "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": false + } + }, + "npm__websocket-extensions__0.1.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "websocket-extensions", + "version": "0.1.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "websocket-extensions": [ + "0.1.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__vite__3.2.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite", + "version": "3.2.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EtQU16PLIJpAZol2cTLttNP1mX6L0SyI0pgQB1VOoWeQnMSvtiwovV3D6NcjN8CZQWWyESD2v5NGnpz5RvgOZA==", + "url": "https://registry.npmjs.org/vite/-/vite-3.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": false + } + }, + "npm__dns-equal__1.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dns-equal", + "version": "1.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "dns-equal": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-import-attributes__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-import-attributes", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-import-attributes": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__glob__7.1.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "glob", + "version": "7.1.7", + "dev": true, + "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.1.7" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__http-proxy-agent__5.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "http-proxy-agent", + "version": "5.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "url": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-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": false + } + }, + "npm__detect-newline__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "detect-newline", + "version": "3.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "detect-newline": [ + "3.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_xtuc_ieee754__1.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@xtuc/ieee754", + "version": "1.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@xtuc/ieee754": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ts-api-utils__1.3.0__typescript_5.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ts-api-utils", + "version": "1.3.0_typescript_5.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "typescript": "5.4.2" + }, + "transitive_closure": { + "ts-api-utils": [ + "1.3.0_typescript_5.4.2" + ], + "typescript": [ + "5.4.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-ssr__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-ssr", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__muggle-string__0.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "muggle-string", + "version": "0.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "muggle-string": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webpack-cli_configtest__2.1.1__-360275163__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webpack-cli/configtest", + "version": "2.1.1_-360275163", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "webpack": "5.89.0_-1501518582", + "webpack-cli": "5.1.4_34022717" + }, + "transitive_closure": { + "@discoveryjs/json-ext": [ + "0.5.7" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/source-map": [ + "0.3.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@leichtgewicht/ip-codec": [ + "2.0.4" + ], + "@swc/core": [ + "1.3.100" + ], + "@swc/core-darwin-arm64": [ + "1.3.100" + ], + "@swc/core-darwin-x64": [ + "1.3.100" + ], + "@swc/core-linux-arm64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ], + "@swc/core-linux-x64-gnu": [ + "1.3.100" + ], + "@swc/core-linux-x64-musl": [ + "1.3.100" + ], + "@swc/core-win32-arm64-msvc": [ + "1.3.100" + ], + "@swc/core-win32-ia32-msvc": [ + "1.3.100" + ], + "@swc/core-win32-x64-msvc": [ + "1.3.100" + ], + "@swc/counter": [ + "0.1.2" + ], + "@swc/types": [ + "0.1.5" + ], + "@types/body-parser": [ + "1.19.3" + ], + "@types/bonjour": [ + "3.5.11" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/connect-history-api-fallback": [ + "1.5.1" + ], + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/express": [ + "4.17.18" + ], + "@types/express-serve-static-core": [ + "4.17.37" + ], + "@types/http-errors": [ + "2.0.2" + ], + "@types/http-proxy": [ + "1.17.12" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/mime": [ + "1.3.3", + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/qs": [ + "6.9.8" + ], + "@types/range-parser": [ + "1.2.5" + ], + "@types/retry": [ + "0.12.0" + ], + "@types/send": [ + "0.17.2" + ], + "@types/serve-index": [ + "1.9.2" + ], + "@types/serve-static": [ + "1.15.3" + ], + "@types/sockjs": [ + "0.3.34" + ], + "@types/ws": [ + "8.5.6" + ], + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-section": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-edit": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@webpack-cli/configtest": [ + "2.1.1_-360275163" + ], + "@webpack-cli/info": [ + "2.0.2_-360275163" + ], + "@webpack-cli/serve": [ + "2.0.5_-1521883062" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ], + "accepts": [ + "1.3.8" + ], + "acorn": [ + "8.10.0" + ], + "acorn-import-assertions": [ + "1.9.0_acorn_8.10.0" + ], + "ajv": [ + "6.12.6", + "8.12.0" + ], + "ajv-formats": [ + "2.1.1_ajv_8.12.0" + ], + "ajv-keywords": [ + "3.5.2_ajv_6.12.6", + "5.1.0_ajv_8.12.0" + ], + "ansi-html-community": [ + "0.0.8" + ], + "anymatch": [ + "3.1.3" + ], + "array-flatten": [ + "1.1.1", + "2.1.2" + ], + "balanced-match": [ + "1.0.2" + ], + "batch": [ + "0.6.1" + ], + "binary-extensions": [ + "2.2.0" + ], + "body-parser": [ + "1.20.1" + ], + "bonjour-service": [ + "1.1.1" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.1" + ], + "buffer-from": [ + "1.1.2" + ], + "bytes": [ + "3.0.0", + "3.1.2" + ], + "call-bind": [ + "1.0.2" + ], + "caniuse-lite": [ + "1.0.30001542" + ], + "chokidar": [ + "3.5.3" + ], + "chrome-trace-event": [ + "1.0.3" + ], + "clone-deep": [ + "4.0.1" + ], + "colorette": [ + "2.0.20" + ], + "commander": [ + "10.0.1", + "2.20.3" + ], + "compressible": [ + "2.0.18" + ], + "compression": [ + "1.7.4" + ], + "concat-map": [ + "0.0.1" + ], + "connect-history-api-fallback": [ + "2.0.0" + ], + "content-disposition": [ + "0.5.4" + ], + "content-type": [ + "1.0.5" + ], + "cookie": [ + "0.5.0" + ], + "cookie-signature": [ + "1.0.6" + ], + "core-util-is": [ + "1.0.3" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "2.6.9", + "4.3.4" + ], + "default-gateway": [ + "6.0.3" + ], + "define-lazy-prop": [ + "2.0.0" + ], + "depd": [ + "1.1.2", + "2.0.0" + ], + "destroy": [ + "1.2.0" + ], + "detect-node": [ + "2.1.0" + ], + "dns-equal": [ + "1.0.0" + ], + "dns-packet": [ + "5.6.1" + ], + "ee-first": [ + "1.1.1" + ], + "electron-to-chromium": [ + "1.4.539" + ], + "encodeurl": [ + "1.0.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "envinfo": [ + "7.11.0" + ], + "es-module-lexer": [ + "1.3.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-html": [ + "1.0.3" + ], + "eslint-scope": [ + "5.1.1" + ], + "esrecurse": [ + "4.3.0" + ], + "estraverse": [ + "4.3.0", + "5.3.0" + ], + "etag": [ + "1.8.1" + ], + "eventemitter3": [ + "4.0.7" + ], + "events": [ + "3.3.0" + ], + "execa": [ + "5.1.1" + ], + "express": [ + "4.18.2" + ], + "fast-deep-equal": [ + "3.1.3" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fastest-levenshtein": [ + "1.0.16" + ], + "faye-websocket": [ + "0.11.4" + ], + "fill-range": [ + "7.0.1" + ], + "finalhandler": [ + "1.2.0" + ], + "find-up": [ + "4.1.0" + ], + "flat": [ + "5.0.2" + ], + "follow-redirects": [ + "1.15.3" + ], + "forwarded": [ + "0.2.0" + ], + "fresh": [ + "0.5.2" + ], + "fs-monkey": [ + "1.0.5" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2" + ], + "glob-to-regexp": [ + "0.4.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "handle-thing": [ + "2.0.1" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "4.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "hpack.js": [ + "2.1.6" + ], + "html-entities": [ + "2.4.0" + ], + "http-deceiver": [ + "1.2.7" + ], + "http-errors": [ + "1.6.3", + "2.0.0" + ], + "http-parser-js": [ + "0.5.8" + ], + "http-proxy": [ + "1.18.1" + ], + "http-proxy-middleware": [ + "2.0.6_at_types_express_4.17.18" + ], + "human-signals": [ + "2.1.0" + ], + "iconv-lite": [ + "0.4.24" + ], + "import-local": [ + "3.1.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.3", + "2.0.4" + ], + "interpret": [ + "3.1.1" + ], + "ipaddr.js": [ + "1.9.1", + "2.1.0" + ], + "is-binary-path": [ + "2.1.0" + ], + "is-core-module": [ + "2.13.0" + ], + "is-docker": [ + "2.2.1" + ], + "is-extglob": [ + "2.1.1" + ], + "is-glob": [ + "4.0.3" + ], + "is-number": [ + "7.0.0" + ], + "is-plain-obj": [ + "3.0.0" + ], + "is-plain-object": [ + "2.0.4" + ], + "is-stream": [ + "2.0.1" + ], + "is-wsl": [ + "2.2.0" + ], + "isarray": [ + "1.0.0" + ], + "isexe": [ + "2.0.0" + ], + "isobject": [ + "3.0.1" + ], + "jest-worker": [ + "27.5.1" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json-schema-traverse": [ + "0.4.1", + "1.0.0" + ], + "kind-of": [ + "6.0.3" + ], + "launch-editor": [ + "2.6.0" + ], + "loader-runner": [ + "4.3.0" + ], + "locate-path": [ + "5.0.0" + ], + "media-typer": [ + "0.3.0" + ], + "memfs": [ + "3.5.3" + ], + "merge-descriptors": [ + "1.0.1" + ], + "merge-stream": [ + "2.0.0" + ], + "methods": [ + "1.1.2" + ], + "micromatch": [ + "4.0.5" + ], + "mime": [ + "1.6.0" + ], + "mime-db": [ + "1.52.0" + ], + "mime-types": [ + "2.1.35" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimalistic-assert": [ + "1.0.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.0.0", + "2.1.2", + "2.1.3" + ], + "multicast-dns": [ + "7.2.5" + ], + "negotiator": [ + "0.6.3" + ], + "neo-async": [ + "2.6.2" + ], + "node-forge": [ + "1.3.1" + ], + "node-releases": [ + "2.0.13" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "object-inspect": [ + "1.12.3" + ], + "obuf": [ + "1.1.2" + ], + "on-finished": [ + "2.4.1" + ], + "on-headers": [ + "1.0.2" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "open": [ + "8.4.2" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-retry": [ + "4.6.2" + ], + "p-try": [ + "2.2.0" + ], + "parseurl": [ + "1.3.3" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "path-to-regexp": [ + "0.1.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pkg-dir": [ + "4.2.0" + ], + "process-nextick-args": [ + "2.0.1" + ], + "proxy-addr": [ + "2.0.7" + ], + "punycode": [ + "2.3.1" + ], + "qs": [ + "6.11.0" + ], + "randombytes": [ + "2.1.0" + ], + "range-parser": [ + "1.2.1" + ], + "raw-body": [ + "2.5.1" + ], + "readable-stream": [ + "2.3.8", + "3.6.2" + ], + "readdirp": [ + "3.6.0" + ], + "rechoir": [ + "0.8.0" + ], + "require-from-string": [ + "2.0.2" + ], + "requires-port": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-cwd": [ + "3.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "retry": [ + "0.13.1" + ], + "rimraf": [ + "3.0.2" + ], + "safe-buffer": [ + "5.1.2", + "5.2.1" + ], + "safer-buffer": [ + "2.1.2" + ], + "schema-utils": [ + "3.3.0", + "4.2.0" + ], + "select-hose": [ + "2.0.0" + ], + "selfsigned": [ + "2.1.1" + ], + "send": [ + "0.18.0" + ], + "serialize-javascript": [ + "6.0.1" + ], + "serve-index": [ + "1.9.1" + ], + "serve-static": [ + "1.15.0" + ], + "setprototypeof": [ + "1.1.0", + "1.2.0" + ], + "shallow-clone": [ + "3.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "shell-quote": [ + "1.8.1" + ], + "side-channel": [ + "1.0.4" + ], + "signal-exit": [ + "3.0.7" + ], + "sockjs": [ + "0.3.24" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.21" + ], + "spdy": [ + "4.0.2" + ], + "spdy-transport": [ + "3.0.0" + ], + "statuses": [ + "1.5.0", + "2.0.1" + ], + "string_decoder": [ + "1.1.1", + "1.3.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "supports-color": [ + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "terser": [ + "5.20.0" + ], + "terser-webpack-plugin": [ + "5.3.9_1251614587" + ], + "thunky": [ + "1.1.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "toidentifier": [ + "1.0.1" + ], + "type-is": [ + "1.6.18" + ], + "undici-types": [ + "5.26.5" + ], + "unpipe": [ + "1.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.1" + ], + "uri-js": [ + "4.4.1" + ], + "util-deprecate": [ + "1.0.2" + ], + "utils-merge": [ + "1.0.1" + ], + "uuid": [ + "8.3.2" + ], + "vary": [ + "1.1.2" + ], + "watchpack": [ + "2.4.0" + ], + "wbuf": [ + "1.7.3" + ], + "webpack": [ + "5.89.0_-1501518582" + ], + "webpack-cli": [ + "5.1.4_34022717" + ], + "webpack-dev-middleware": [ + "5.3.3_webpack_5.89.0" + ], + "webpack-dev-server": [ + "4.15.1_-360275163" + ], + "webpack-merge": [ + "5.10.0" + ], + "webpack-sources": [ + "3.2.3" + ], + "websocket-driver": [ + "0.7.4" + ], + "websocket-extensions": [ + "0.1.4" + ], + "which": [ + "2.0.2" + ], + "wildcard": [ + "2.0.1" + ], + "wrappy": [ + "1.0.2" + ], + "ws": [ + "8.14.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__spdx-exceptions__2.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "spdx-exceptions", + "version": "2.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "spdx-exceptions": [ + "2.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_ieee754__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/ieee754", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@xtuc/ieee754": "1.2.0" + }, + "transitive_closure": { + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@xtuc/ieee754": [ + "1.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-lib-instrument__5.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "istanbul-lib-instrument", + "version": "5.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "url": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-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": false + } + }, + "npm__at_next_swc-freebsd-x64__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-freebsd-x64", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0NJg8HZr4yG8ynmMGFXQf+Mahvq4ZgBmUwSlLXXymgxEQgH17erH/LoR69uITtW+KTsALgk9axEt5AAabM4ucg==", + "url": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.5.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tmpl__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tmpl", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "tmpl": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__utila__0.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "utila", + "version": "0.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "utila": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__yargs__17.7.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "yargs", + "version": "17.7.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "url": "https://registry.npmjs.org/yargs/-/yargs-17.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": false + } + }, + "npm__at_next_swc-linux-arm-gnueabihf__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-linux-arm-gnueabihf", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Cye+h3oDT3NDWjACMlRaolL8fokpKie34FlPj9nfoW7bYKmoMBY1d4IO/GgBF+5xEl7HkH0Ny/qex63vQ0pN+A==", + "url": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.5.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": false + } + }, + "npm__npm-run-path__4.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "npm-run-path", + "version": "4.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "url": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__at_humanwhocodes_object-schema__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@humanwhocodes/object-schema", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "url": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-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": false + } + }, + "npm__jsesc__0.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jsesc", + "version": "0.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "jsesc": [ + "0.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__set-function-name__2.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "set-function-name", + "version": "2.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "url": "https://registry.npmjs.org/set-function-name/-/set-function-name-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": false + } + }, + "npm__at_vue_reactivity__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/reactivity", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/shared": "3.3.4" + }, + "transitive_closure": { + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_send__0.17.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/send", + "version": "0.17.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/mime": "1.3.3", + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/mime": [ + "1.3.3" + ], + "@types/node": [ + "18.19.18" + ], + "@types/send": [ + "0.17.2" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__istanbul-lib-instrument__6.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "istanbul-lib-instrument", + "version": "6.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "url": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-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": false + } + }, + "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": false + } + }, + "npm__json-schema-traverse__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "json-schema-traverse", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "url": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-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": false + } + }, + "npm__ansi-html-community__0.0.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ansi-html-community", + "version": "0.0.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "url": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.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": false + } + }, + "npm__at_types_serve-static__1.15.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/serve-static", + "version": "1.15.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==", + "url": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.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": false + } + }, + "npm__html-encoding-sniffer__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "html-encoding-sniffer", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "url": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-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": false + } + }, + "npm__at_babel_helper-define-polyfill-provider__0.4.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-define-polyfill-provider", + "version": "0.4.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-compilation-targets": "7.22.15", + "@babel/helper-plugin-utils": "7.22.5", + "debug": "4.3.4", + "lodash.debounce": "4.0.8", + "resolve": "1.22.6" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-define-polyfill-provider": [ + "0.4.3_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lodash.debounce": [ + "4.0.8" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "resolve": [ + "1.22.6" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-computed-properties__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-computed-properties", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/template": "7.22.15" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-computed-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_eslint_eslintrc__1.4.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@eslint/eslintrc", + "version": "1.4.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "url": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-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": false + } + }, + "npm__tinyspy__2.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tinyspy", + "version": "2.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==", + "url": "https://registry.npmjs.org/tinyspy/-/tinyspy-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": false + } + }, + "npm__at_babel_plugin-transform-nullish-coalescing-operator__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-nullish-coalescing-operator", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "7.8.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-nullish-coalescing-operator": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__readable-stream__3.6.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "readable-stream", + "version": "3.6.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "inherits": "2.0.4", + "string_decoder": "1.3.0", + "util-deprecate": "1.0.2" + }, + "transitive_closure": { + "inherits": [ + "2.0.4" + ], + "readable-stream": [ + "3.6.2" + ], + "safe-buffer": [ + "5.2.1" + ], + "string_decoder": [ + "1.3.0" + ], + "util-deprecate": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core-linux-arm64-musl__1.3.100__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@swc/core-linux-arm64-musl", + "version": "1.3.100", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@swc/core-linux-arm64-musl": [ + "1.3.100" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_typescript-eslint_utils__5.44.0__1986444992": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@typescript-eslint/utils", + "version": "5.44.0_1986444992", + "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": false + } + }, + "npm__esbuild-linux-arm64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-arm64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-arm64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ts-api-utils__1.3.0__typescript_5.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ts-api-utils", + "version": "1.3.0_typescript_5.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "url": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-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": false + } + }, + "npm__w3c-xmlserializer__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "w3c-xmlserializer", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "xml-name-validator": "4.0.0" + }, + "transitive_closure": { + "w3c-xmlserializer": [ + "4.0.0" + ], + "xml-name-validator": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-typeof-symbol__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-typeof-symbol", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-typeof-symbol": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-win32-arm64-msvc__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-win32-arm64-msvc", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-win32-arm64-msvc": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__axe-core__4.8.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "axe-core", + "version": "4.8.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "url": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.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": false + } + }, + "npm__eslint-config-next__13.0.5__-1300088051__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-config-next", + "version": "13.0.5_-1300088051", + "dev": true, + "root_package": "", + "link_packages": { + "next.js": [ + "eslint-config-next" + ] + }, + "deps": { + "@next/eslint-plugin-next": "13.0.5", + "@rushstack/eslint-patch": "1.5.1", + "@typescript-eslint/parser": "5.44.0_509062556", + "eslint": "8.28.0", + "eslint-import-resolver-node": "0.3.9", + "eslint-import-resolver-typescript": "3.6.1_237066510", + "eslint-plugin-import": "2.28.1_eslint_8.28.0", + "eslint-plugin-jsx-a11y": "6.7.1_eslint_8.28.0", + "eslint-plugin-react": "7.33.2_eslint_8.28.0", + "eslint-plugin-react-hooks": "4.6.0_eslint_8.28.0", + "next": "13.0.5_-1955910335", + "typescript": "4.9.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@next/env": [ + "13.0.5" + ], + "@next/eslint-plugin-next": [ + "13.0.5" + ], + "@next/swc-android-arm-eabi": [ + "13.0.5" + ], + "@next/swc-android-arm64": [ + "13.0.5" + ], + "@next/swc-darwin-arm64": [ + "13.0.5" + ], + "@next/swc-darwin-x64": [ + "13.0.5" + ], + "@next/swc-freebsd-x64": [ + "13.0.5" + ], + "@next/swc-linux-arm-gnueabihf": [ + "13.0.5" + ], + "@next/swc-linux-arm64-gnu": [ + "13.0.5" + ], + "@next/swc-linux-arm64-musl": [ + "13.0.5" + ], + "@next/swc-linux-x64-gnu": [ + "13.0.5" + ], + "@next/swc-linux-x64-musl": [ + "13.0.5" + ], + "@next/swc-win32-arm64-msvc": [ + "13.0.5" + ], + "@next/swc-win32-ia32-msvc": [ + "13.0.5" + ], + "@next/swc-win32-x64-msvc": [ + "13.0.5" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "@rushstack/eslint-patch": [ + "1.5.1" + ], + "@swc/helpers": [ + "0.4.14" + ], + "@types/json5": [ + "0.0.29" + ], + "@typescript-eslint/parser": [ + "5.44.0_509062556" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.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": [ + "3.2.1", + "4.3.0" + ], + "argparse": [ + "2.0.1" + ], + "aria-query": [ + "5.3.0" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.findlastindex": [ + "1.2.3" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "array.prototype.tosorted": [ + "1.1.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "ast-types-flow": [ + "0.0.7" + ], + "asynciterator.prototype": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "axe-core": [ + "4.8.2" + ], + "axobject-query": [ + "3.2.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "call-bind": [ + "1.0.2" + ], + "callsites": [ + "3.1.0" + ], + "caniuse-lite": [ + "1.0.30001542", + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "client-only": [ + "0.0.1" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "cross-spawn": [ + "7.0.3" + ], + "damerau-levenshtein": [ + "1.0.8" + ], + "debug": [ + "3.2.7", + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dequal": [ + "2.0.3" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "emoji-regex": [ + "9.2.2" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "es-abstract": [ + "1.22.2" + ], + "es-iterator-helpers": [ + "1.0.15" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-config-next": [ + "13.0.5_-1300088051" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-import-resolver-typescript": [ + "3.6.1_237066510" + ], + "eslint-module-utils": [ + "2.8.0_-993259024", + "2.8.0_2031701610" + ], + "eslint-plugin-import": [ + "2.28.1_eslint_8.28.0" + ], + "eslint-plugin-jsx-a11y": [ + "6.7.1_eslint_8.28.0" + ], + "eslint-plugin-react": [ + "7.33.2_eslint_8.28.0" + ], + "eslint-plugin-react-hooks": [ + "4.6.0_eslint_8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "get-tsconfig": [ + "4.7.2" + ], + "glob": [ + "7.1.7", + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "11.12.0", + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "globby": [ + "11.1.0" + ], + "gopd": [ + "1.0.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-glob": [ + "4.0.3" + ], + "is-map": [ + "2.0.2" + ], + "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-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "iterator.prototype": [ + "1.1.2" + ], + "js-sdsl": [ + "4.4.2" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "jsesc": [ + "2.5.2" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2", + "2.2.3" + ], + "jsx-ast-utils": [ + "3.3.5" + ], + "keyv": [ + "4.5.3" + ], + "language-subtag-registry": [ + "0.3.22" + ], + "language-tags": [ + "1.0.5" + ], + "levn": [ + "0.4.1" + ], + "locate-path": [ + "6.0.0" + ], + "lodash.merge": [ + "4.6.2" + ], + "loose-envify": [ + "1.4.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "merge2": [ + "1.4.1" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "minimist": [ + "1.2.8" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "nanoid": [ + "3.3.6" + ], + "natural-compare": [ + "1.4.0" + ], + "next": [ + "13.0.5_-1955910335" + ], + "node-releases": [ + "2.0.14" + ], + "object-assign": [ + "4.1.1" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.7" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.groupby": [ + "1.0.1" + ], + "object.hasown": [ + "1.1.3" + ], + "object.values": [ + "1.1.7" + ], + "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" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "postcss": [ + "8.4.14" + ], + "prelude-ls": [ + "1.2.1" + ], + "prop-types": [ + "15.8.1" + ], + "punycode": [ + "2.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "react": [ + "18.2.0" + ], + "react-dom": [ + "18.2.0_react_18.2.0" + ], + "react-is": [ + "16.13.1" + ], + "reflect.getprototypeof": [ + "1.0.4" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.6", + "2.0.0-next.4" + ], + "resolve-from": [ + "4.0.0" + ], + "resolve-pkg-maps": [ + "1.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "scheduler": [ + "0.23.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "source-map-js": [ + "1.0.2" + ], + "string.prototype.matchall": [ + "4.0.10" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "styled-jsx": [ + "5.1.0_986221465" + ], + "supports-color": [ + "5.5.0", + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "text-table": [ + "0.2.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.2" + ], + "tslib": [ + "1.14.1", + "2.6.2" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "typescript": [ + "4.9.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-class-properties__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-class-properties", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-class-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-class-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "7.22.5" + ], + "@babel/helper-skip-transparent-expression-wrappers": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-class-properties": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dedent__1.5.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "dedent", + "version": "1.5.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "url": "https://registry.npmjs.org/dedent/-/dedent-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": false + } + }, + "npm__mimic-fn__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "mimic-fn", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "url": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-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": false + } + }, + "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": false + } + }, + "npm__esbuild-android-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-android-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==", + "url": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.18.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eventemitter3__4.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eventemitter3", + "version": "4.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "url": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.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": false + } + }, + "npm__at_babel_plugin-transform-async-generator-functions__7.23.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-async-generator-functions", + "version": "7.23.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-remap-async-to-generator": "7.22.20_at_babel_core_7.23.5", + "@babel/plugin-syntax-async-generators": "7.8.4_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-remap-async-to-generator": [ + "7.22.20_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helper-wrap-function": [ + "7.22.20" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-async-generator-functions": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-member-expression-literals__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-member-expression-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-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": false + } + }, + "npm__at_vitejs_plugin-react__4.2.0__vite_3.2.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vitejs/plugin-react", + "version": "4.2.0_vite_3.2.8", + "dev": true, + "root_package": "", + "link_packages": { + "react": [ + "@vitejs/plugin-react" + ] + }, + "deps": { + "@babel/core": "7.23.5", + "@babel/plugin-transform-react-jsx-self": "7.23.3_at_babel_core_7.23.5", + "@babel/plugin-transform-react-jsx-source": "7.23.3_at_babel_core_7.23.5", + "@types/babel__core": "7.20.5", + "react-refresh": "0.14.0", + "vite": "3.2.8" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-transform-react-jsx-self": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx-source": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.0", + "7.23.5" + ], + "@esbuild/android-arm": [ + "0.15.18" + ], + "@esbuild/linux-loong64": [ + "0.15.18" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@types/babel__core": [ + "7.20.5" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "@vitejs/plugin-react": [ + "4.2.0_vite_3.2.8" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "esbuild": [ + "0.15.18" + ], + "esbuild-android-64": [ + "0.15.18" + ], + "esbuild-android-arm64": [ + "0.15.18" + ], + "esbuild-darwin-64": [ + "0.15.18" + ], + "esbuild-darwin-arm64": [ + "0.15.18" + ], + "esbuild-freebsd-64": [ + "0.15.18" + ], + "esbuild-freebsd-arm64": [ + "0.15.18" + ], + "esbuild-linux-32": [ + "0.15.18" + ], + "esbuild-linux-64": [ + "0.15.18" + ], + "esbuild-linux-arm": [ + "0.15.18" + ], + "esbuild-linux-arm64": [ + "0.15.18" + ], + "esbuild-linux-mips64le": [ + "0.15.18" + ], + "esbuild-linux-ppc64le": [ + "0.15.18" + ], + "esbuild-linux-riscv64": [ + "0.15.18" + ], + "esbuild-linux-s390x": [ + "0.15.18" + ], + "esbuild-netbsd-64": [ + "0.15.18" + ], + "esbuild-openbsd-64": [ + "0.15.18" + ], + "esbuild-sunos-64": [ + "0.15.18" + ], + "esbuild-windows-32": [ + "0.15.18" + ], + "esbuild-windows-64": [ + "0.15.18" + ], + "esbuild-windows-arm64": [ + "0.15.18" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "globals": [ + "11.12.0" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0" + ], + "is-core-module": [ + "2.13.0" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "node-releases": [ + "2.0.14" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "react-refresh": [ + "0.14.0" + ], + "resolve": [ + "1.22.6" + ], + "rollup": [ + "2.79.1" + ], + "semver": [ + "6.3.1" + ], + "source-map-js": [ + "1.0.2" + ], + "supports-color": [ + "5.5.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "vite": [ + "3.2.8" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-numeric-separator__7.18.6__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-proposal-numeric-separator", + "version": "7.18.6_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/plugin-syntax-numeric-separator": "7.10.4_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-proposal-numeric-separator": [ + "7.18.6_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.5" + }, + "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.5" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.10.0" + ], + "@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" + ], + "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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-typescript__7.22.15__at_babel_core_7.23.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-typescript", + "version": "7.22.15_at_babel_core_7.23.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-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": false + } + }, + "npm__zimmerframe__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "zimmerframe", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==", + "url": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-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": false + } + }, + "npm__vite-node__1.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "vite-node", + "version": "1.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-h7BbMJf46fLvFW/9Ygo3snkIBEHFh6fHpB4lge98H5quYrDhPFeI3S0LREz328uqPWSnii2yeJXktQ+Pmqk5BQ==", + "url": "https://registry.npmjs.org/vite-node/-/vite-node-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "process-nextick-args": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_jest__29.2.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/jest", + "version": "29.2.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "@types/jest" + ], + "react": [ + "@types/jest" + ] + }, + "integrity": "sha512-6XwoEbmatfyoCjWRX7z0fKMmgYKe9+/HrviJ5k0X/tjJWHGAezZOfYaxqQKuzG/TvQyr+ktjm4jgbk0s4/oF2w==", + "url": "https://registry.npmjs.org/@types/jest/-/jest-29.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": false + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_esbuild_freebsd-arm64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/freebsd-arm64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/freebsd-arm64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__electron-to-chromium__1.4.608__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "electron-to-chromium", + "version": "1.4.608", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "electron-to-chromium": [ + "1.4.608" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_openbsd-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/openbsd-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/openbsd-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_leb128__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/leb128", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "url": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.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": false + } + }, + "npm__eslint-plugin-jsx-a11y__6.7.1__eslint_8.28.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-plugin-jsx-a11y", + "version": "6.7.1_eslint_8.28.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "url": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.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": false + } + }, + "npm__mlly__1.4.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "mlly", + "version": "1.4.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "acorn": "8.10.0", + "pathe": "1.1.1", + "pkg-types": "1.0.3", + "ufo": "1.3.2" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "jsonc-parser": [ + "3.2.0" + ], + "mlly": [ + "1.4.2" + ], + "pathe": [ + "1.1.1" + ], + "pkg-types": [ + "1.0.3" + ], + "ufo": [ + "1.3.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_neoconfetti_svelte__2.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@neoconfetti/svelte", + "version": "2.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "sveltekit_ts": [ + "@neoconfetti/svelte" + ] + }, + "integrity": "sha512-2Ts0Rxaf6clW2qG+AKhTwpl01AAyZEAe03XeuQ7Vp+qYIaM3ycuI94j546fmEkUxwACwGI3Zl2cZ/pncTuNcJg==", + "url": "https://registry.npmjs.org/@neoconfetti/svelte/-/svelte-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": false + } + }, + "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": false + } + }, + "npm__at_vue_compiler-ssr__3.2.37": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-ssr", + "version": "3.2.37", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw==", + "url": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.37.tgz", + "commit": "", + "patch_args": [], + "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__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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_polka_url__1.0.0-next.25": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@polka/url", + "version": "1.0.0-next.25", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==", + "url": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz", + "commit": "", + "patch_args": [], + "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__entities__4.5.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "entities", + "version": "4.5.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "entities": [ + "4.5.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss-safe-parser__6.0.0__postcss_8.4.35": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "postcss-safe-parser", + "version": "6.0.0_postcss_8.4.35", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", + "url": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__istanbul-lib-source-maps__4.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "istanbul-lib-source-maps", + "version": "4.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "debug": "4.3.4", + "istanbul-lib-coverage": "3.2.0", + "source-map": "0.6.1" + }, + "transitive_closure": { + "debug": [ + "4.3.4" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-source-maps": [ + "4.0.1" + ], + "ms": [ + "2.1.2" + ], + "source-map": [ + "0.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__resolve.exports__2.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve.exports", + "version": "2.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "url": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-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": false + } + }, + "npm__playwright-core__1.42.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "playwright-core", + "version": "1.42.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "playwright-core": [ + "1.42.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-create-regexp-features-plugin__7.22.15__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-create-regexp-features-plugin", + "version": "7.22.15_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "url": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-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": false + } + }, + "npm__at_swc_core-win32-x64-msvc__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core-win32-x64-msvc", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-b7J0rPoMkRTa3XyUGt8PwCaIBuYWsL2DqbirrQKRESzgCvif5iNpqaM6kjIjI/5y5q1Ycv564CB51YDpiS8EtQ==", + "url": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.100.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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-android-arm-eabi__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-android-arm-eabi", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-android-arm-eabi": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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.5", + "@babel/types": "7.23.5" + }, + "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.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/types": [ + "7.23.5" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__cssesc__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "cssesc", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "url": "https://registry.npmjs.org/cssesc/-/cssesc-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": false + } + }, + "npm__url-parse__1.5.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "url-parse", + "version": "1.5.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "url": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.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": false + } + }, + "npm__eslint-utils__3.0.0__eslint_8.28.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "eslint-utils", + "version": "3.0.0_eslint_8.28.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": false + } + }, + "npm__flat-cache__3.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "flat-cache", + "version": "3.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "url": "https://registry.npmjs.org/flat-cache/-/flat-cache-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": false + } + }, + "npm__at_babel_helper-create-regexp-features-plugin__7.22.15__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-create-regexp-features-plugin", + "version": "7.22.15_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "regexpu-core": "5.3.2", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-win32-ia32-msvc__13.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@next/swc-win32-ia32-msvc", + "version": "13.0.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@next/swc-win32-ia32-msvc": [ + "13.0.5" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ajv-formats__2.1.1__ajv_8.12.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "ajv-formats", + "version": "2.1.1_ajv_8.12.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "url": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-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": false + } + }, + "npm__xmlchars__2.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "xmlchars", + "version": "2.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "xmlchars": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_svgr_babel-plugin-svg-dynamic-title__8.0.0__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@svgr/babel-plugin-svg-dynamic-title", + "version": "8.0.0_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@svgr/babel-plugin-svg-dynamic-title": [ + "8.0.0_at_babel_core_7.23.5" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild-freebsd-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-freebsd-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-freebsd-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__parse5__7.1.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "parse5", + "version": "7.1.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "entities": "4.5.0" + }, + "transitive_closure": { + "entities": [ + "4.5.0" + ], + "parse5": [ + "7.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_retry__0.12.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/retry", + "version": "0.12.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "url": "https://registry.npmjs.org/@types/retry/-/retry-0.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": false + } + }, + "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": { + "sveltekit_ts": [ + "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.10.0" + ], + "@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" + ], + "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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__p-locate__4.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "p-locate", + "version": "4.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "p-limit": "2.3.0" + }, + "transitive_closure": { + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-environment-node__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-environment-node", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/environment": "29.7.0", + "@jest/fake-timers": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "jest-mock": "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/environment": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.8.0" + ], + "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.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.0" + ], + "jest-environment-node": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "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" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_preset-env__7.23.5__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/preset-env", + "version": "7.23.5_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-0d/uxVD6tFGWXGDSfyMD1p2otoaKmu6+GD+NfAx0tMaH+dxORnp7T9TaVQ6mKyya7iBtCIVxHjWT7MuzzM9z+A==", + "url": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-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": false + } + }, + "npm__clone-deep__4.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "clone-deep", + "version": "4.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "is-plain-object": "2.0.4", + "kind-of": "6.0.3", + "shallow-clone": "3.0.1" + }, + "transitive_closure": { + "clone-deep": [ + "4.0.1" + ], + "is-plain-object": [ + "2.0.4" + ], + "isobject": [ + "3.0.1" + ], + "kind-of": [ + "6.0.3" + ], + "shallow-clone": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__react-refresh__0.14.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "react-refresh", + "version": "0.14.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "url": "https://registry.npmjs.org/react-refresh/-/react-refresh-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": false + } + }, + "npm__nice-try__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "nice-try", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "nice-try": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_fastify_deepmerge__1.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@fastify/deepmerge", + "version": "1.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A==", + "url": "https://registry.npmjs.org/@fastify/deepmerge/-/deepmerge-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": false + } + }, + "npm__serialize-javascript__6.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "serialize-javascript", + "version": "6.0.1", + "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.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_esbuild_android-arm64__0.19.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@esbuild/android-arm64", + "version": "0.19.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==", + "url": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.8.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": false + } + }, + "npm__path-key__4.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "path-key", + "version": "4.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-key": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__retry__0.13.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "retry", + "version": "0.13.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "url": "https://registry.npmjs.org/retry/-/retry-0.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": false + } + }, + "npm__jest-resolve-dependencies__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-resolve-dependencies", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "jest-regex-util": "29.6.3", + "jest-snapshot": "29.7.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve-dependencies": [ + "29.7.0" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "react-is": [ + "18.2.0" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__locate-character__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "locate-character", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", + "url": "https://registry.npmjs.org/locate-character/-/locate-character-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": false + } + }, + "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": false + } + }, + "npm__esbuild-windows-32__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-windows-32", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-windows-32": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__language-tags__1.0.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "language-tags", + "version": "1.0.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "language-subtag-registry": "0.3.22" + }, + "transitive_closure": { + "language-subtag-registry": [ + "0.3.22" + ], + "language-tags": [ + "1.0.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_prop-types__15.7.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/prop-types", + "version": "15.7.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==", + "url": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.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": false + } + }, + "npm__vite__5.1.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "vite", + "version": "5.1.6", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "vite" + ] + }, + "deps": { + "fsevents": "2.3.3", + "esbuild": "0.19.8", + "postcss": "8.4.35", + "rollup": "4.6.1" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "esbuild": [ + "0.19.8" + ], + "fsevents": [ + "2.3.3" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "vite": [ + "5.1.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-plugin-istanbul__6.1.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-plugin-istanbul", + "version": "6.1.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/helper-plugin-utils": "7.22.5", + "@istanbuljs/load-nyc-config": "1.1.0", + "@istanbuljs/schema": "0.1.3", + "istanbul-lib-instrument": "5.2.1", + "test-exclude": "6.0.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "browserslist": [ + "4.22.2" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "esprima": [ + "4.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "has-flag": [ + "3.0.0" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1" + ], + "sprintf-js": [ + "1.0.3" + ], + "supports-color": [ + "5.5.0" + ], + "test-exclude": [ + "6.0.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sveltejs_vite-plugin-svelte__3.0.2__-1934338050__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sveltejs/vite-plugin-svelte", + "version": "3.0.2_-1934338050", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@sveltejs/vite-plugin-svelte" + ] + }, + "deps": { + "@sveltejs/vite-plugin-svelte-inspector": "2.0.0_5236015", + "debug": "4.3.4", + "deepmerge": "4.3.1", + "kleur": "4.1.5", + "magic-string": "0.30.5", + "svelte": "5.0.0-next.75", + "svelte-hmr": "0.15.3_svelte_5.0.0-next.75", + "vite": "5.1.6", + "vitefu": "0.2.5_vite_5.1.6" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "@sveltejs/vite-plugin-svelte": [ + "3.0.2_-1934338050" + ], + "@sveltejs/vite-plugin-svelte-inspector": [ + "2.0.0_5236015" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "debug": [ + "4.3.4" + ], + "deepmerge": [ + "4.3.1" + ], + "dequal": [ + "2.0.3" + ], + "esbuild": [ + "0.19.8" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "fsevents": [ + "2.3.3" + ], + "is-reference": [ + "3.0.2" + ], + "kleur": [ + "4.1.5" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "source-map-js": [ + "1.0.2" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-hmr": [ + "0.15.3_svelte_5.0.0-next.75" + ], + "vite": [ + "5.1.6" + ], + "vitefu": [ + "0.2.5_vite_5.1.6" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_body-parser__1.19.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/body-parser", + "version": "1.19.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/connect": "3.4.36", + "@types/node": "18.19.18" + }, + "transitive_closure": { + "@types/body-parser": [ + "1.19.3" + ], + "@types/connect": [ + "3.4.36" + ], + "@types/node": [ + "18.19.18" + ], + "undici-types": [ + "5.26.5" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__minimalistic-assert__1.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "minimalistic-assert", + "version": "1.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "minimalistic-assert": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_esbuild_win32-x64__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/win32-x64", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/win32-x64": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__istanbul-lib-source-maps__4.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "istanbul-lib-source-maps", + "version": "4.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "url": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__array.prototype.flatmap__1.3.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "array.prototype.flatmap", + "version": "1.3.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "es-shim-unscopables": "1.0.0" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__npm-run-path__5.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "npm-run-path", + "version": "5.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "path-key": "4.0.0" + }, + "transitive_closure": { + "npm-run-path": [ + "5.1.0" + ], + "path-key": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_wast-printer__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/wast-printer", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + }, + "transitive_closure": { + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/wast-printer": [ + "1.11.6" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-testing-library__5.11.1__1986444992__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-testing-library", + "version": "5.11.1_1986444992", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/utils": "5.62.0_1986444992", + "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.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/scope-manager": [ + "5.62.0" + ], + "@typescript-eslint/types": [ + "5.62.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.62.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.62.0_1986444992" + ], + "@typescript-eslint/visitor-keys": [ + "5.62.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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-testing-library": [ + "5.11.1_1986444992" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-visitor-keys": [ + "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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__strip-literal__1.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "strip-literal", + "version": "1.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "acorn": "8.10.0" + }, + "transitive_closure": { + "acorn": [ + "8.10.0" + ], + "strip-literal": [ + "1.3.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-bugfix-v8-static-class-fields-redefine-readonly__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-syntax-import-assertions__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-syntax-import-assertions", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "url": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-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": false + } + }, + "npm__esbuild-freebsd-arm64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-freebsd-arm64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==", + "url": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.18.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": false + } + }, + "npm__reflect.getprototypeof__1.0.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "reflect.getprototypeof", + "version": "1.0.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "get-intrinsic": "1.2.1", + "globalthis": "1.0.3", + "which-builtin-type": "1.1.3" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-date-object": [ + "1.0.5" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-map": [ + "2.0.2" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "reflect.getprototypeof": [ + "1.0.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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", + "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" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_volar_vue-language-core__1.0.9__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@volar/vue-language-core", + "version": "1.0.9", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@volar/language-core": "1.0.9", + "@volar/source-map": "1.0.9", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4", + "minimatch": "5.1.6", + "vue-template-compiler": "2.7.14" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@volar/language-core": [ + "1.0.9" + ], + "@volar/source-map": [ + "1.0.9" + ], + "@volar/vue-language-core": [ + "1.0.9" + ], + "@vue/compiler-core": [ + "3.3.4" + ], + "@vue/compiler-dom": [ + "3.3.4" + ], + "@vue/compiler-sfc": [ + "3.3.4" + ], + "@vue/compiler-ssr": [ + "3.3.4" + ], + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/reactivity-transform": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "2.0.1" + ], + "de-indent": [ + "1.0.2" + ], + "estree-walker": [ + "2.0.2" + ], + "he": [ + "1.2.0" + ], + "magic-string": [ + "0.30.4" + ], + "minimatch": [ + "5.1.6" + ], + "muggle-string": [ + "0.1.0" + ], + "nanoid": [ + "3.3.6" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.31" + ], + "source-map-js": [ + "1.0.2" + ], + "to-fast-properties": [ + "2.0.0" + ], + "vue-template-compiler": [ + "2.7.14" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_rollup_rollup-linux-arm64-gnu__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-linux-arm64-gnu", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__handle-thing__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "handle-thing", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "handle-thing": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_types_qs__6.9.8": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/qs", + "version": "6.9.8", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==", + "url": "https://registry.npmjs.org/@types/qs/-/qs-6.9.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": false + } + }, + "npm__at_babel_plugin-transform-block-scoped-functions__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-block-scoped-functions", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-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": false + } + }, + "npm__at_rollup_rollup-darwin-arm64__4.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@rollup/rollup-darwin-arm64", + "version": "4.6.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-replace-supers__7.22.20__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-replace-supers", + "version": "7.22.20_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-member-expression-to-functions": "7.23.0", + "@babel/helper-optimise-call-expression": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-environment-visitor": [ + "7.22.20" + ], + "@babel/helper-function-name": [ + "7.23.0" + ], + "@babel/helper-hoist-variables": [ + "7.22.5" + ], + "@babel/helper-member-expression-to-functions": [ + "7.23.0" + ], + "@babel/helper-module-imports": [ + "7.22.15" + ], + "@babel/helper-module-transforms": [ + "7.23.0_at_babel_core_7.23.0" + ], + "@babel/helper-optimise-call-expression": [ + "7.22.5" + ], + "@babel/helper-replace-supers": [ + "7.22.20_at_babel_core_7.23.0" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__leven__3.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "leven", + "version": "3.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "leven": [ + "3.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-import-meta__7.10.4__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-import-meta", + "version": "7.10.4_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__fast-glob__3.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fast-glob", + "version": "3.3.1", + "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.3.1" + ], + "fastq": [ + "1.15.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + }, + "transitive_closure": { + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-module-transforms__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-module-transforms", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-environment-visitor": "7.22.20", + "@babel/helper-module-imports": "7.22.15", + "@babel/helper-simple-access": "7.22.5", + "@babel/helper-split-export-declaration": "7.22.6", + "@babel/helper-validator-identifier": "7.22.20" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__isobject__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "isobject", + "version": "3.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "isobject": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-modules-commonjs__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-modules-commonjs", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-module-transforms": "7.23.3_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5", + "@babel/helper-simple-access": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-modules-commonjs": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-react-jsx-source__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-react-jsx-source", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-react-jsx-source": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__node-int64__0.4.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "node-int64", + "version": "0.4.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "node-int64": [ + "0.4.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_tootallnate_once__2.0.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@tootallnate/once", + "version": "2.0.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@tootallnate/once": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__babel-jest__29.7.0__at_babel_core_7.23.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "babel-jest", + "version": "29.7.0_at_babel_core_7.23.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.0", + "@jest/transform": "29.7.0", + "@types/babel__core": "7.20.2", + "babel-plugin-istanbul": "6.1.1", + "babel-preset-jest": "29.6.3_at_babel_core_7.23.0", + "chalk": "4.1.2", + "graceful-fs": "4.2.11", + "slash": "3.0.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0", + "7.23.5" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0", + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1", + "7.23.5" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.0" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/babel__core": [ + "7.20.2" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-jest": [ + "29.7.0_at_babel_core_7.23.0" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-plugin-jest-hoist": [ + "29.6.3" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.0" + ], + "babel-preset-jest": [ + "29.6.3_at_babel_core_7.23.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "camelcase": [ + "5.3.1" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5" + ], + "esprima": [ + "4.0.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-util": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "resolve-from": [ + "5.0.0" + ], + "semver": [ + "6.3.1" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__which-builtin-type__1.1.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "which-builtin-type", + "version": "1.1.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "url": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-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": false + } + }, + "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": false + } + }, + "npm__object-inspect__1.12.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object-inspect", + "version": "1.12.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "object-inspect": [ + "1.12.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__selfsigned__2.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "selfsigned", + "version": "2.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "url": "https://registry.npmjs.org/selfsigned/-/selfsigned-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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_swc_core__1.3.100": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@swc/core", + "version": "1.3.100", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react-webpack": [ + "@swc/core" + ] + }, + "integrity": "sha512-7dKgTyxJjlrMwFZYb1auj3Xq0D8ZBe+5oeIgfMlRU05doXZypYJe0LAk0yjj3WdbwYzpF+T1PLxwTWizI0pckw==", + "url": "https://registry.npmjs.org/@swc/core/-/core-1.3.100.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": false + } + }, + "npm__psl__1.9.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "psl", + "version": "1.9.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "url": "https://registry.npmjs.org/psl/-/psl-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": false + } + }, + "npm__tough-cookie__4.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "tough-cookie", + "version": "4.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "psl": "1.9.0", + "punycode": "2.3.1", + "universalify": "0.2.0", + "url-parse": "1.5.10" + }, + "transitive_closure": { + "psl": [ + "1.9.0" + ], + "punycode": [ + "2.3.1" + ], + "querystringify": [ + "2.2.0" + ], + "requires-port": [ + "1.0.0" + ], + "tough-cookie": [ + "4.1.3" + ], + "universalify": [ + "0.2.0" + ], + "url-parse": [ + "1.5.10" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-reference__3.0.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-reference", + "version": "3.0.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", + "url": "https://registry.npmjs.org/is-reference/-/is-reference-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": false + } + }, + "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": true, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_helper-compilation-targets__7.22.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/helper-compilation-targets", + "version": "7.22.15", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/compat-data": "7.23.5", + "@babel/helper-validator-option": "7.23.5", + "browserslist": "4.22.2", + "lru-cache": "5.1.1", + "semver": "6.3.1" + }, + "transitive_closure": { + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-validator-option": [ + "7.23.5" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "lru-cache": [ + "5.1.1" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__es-get-iterator__1.1.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "es-get-iterator", + "version": "1.1.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "get-intrinsic": "1.2.1", + "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", + "stop-iteration-iterator": "1.0.0" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "es-get-iterator": [ + "1.1.3" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-arguments": [ + "1.1.1" + ], + "is-map": [ + "2.0.2" + ], + "is-set": [ + "2.0.2" + ], + "is-string": [ + "1.0.7" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "side-channel": [ + "1.0.4" + ], + "stop-iteration-iterator": [ + "1.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "has-flag": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__get-intrinsic__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "get-intrinsic", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "url": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-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": false + } + }, + "npm__at_esbuild_win32-ia32__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@esbuild/win32-ia32", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@esbuild/win32-ia32": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__fastest-levenshtein__1.0.16__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "fastest-levenshtein", + "version": "1.0.16", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "fastest-levenshtein": [ + "1.0.16" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__kleur__4.1.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "kleur", + "version": "4.1.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "url": "https://registry.npmjs.org/kleur/-/kleur-4.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": false + } + }, + "npm__semver__7.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "semver", + "version": "7.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "lru-cache": "6.0.0" + }, + "transitive_closure": { + "lru-cache": [ + "6.0.0" + ], + "semver": [ + "7.6.0" + ], + "yallist": [ + "4.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1", + "is-regex": "1.1.4" + }, + "transitive_closure": { + "call-bind": [ + "1.0.2" + ], + "function-bind": [ + "1.1.1" + ], + "get-intrinsic": [ + "1.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "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": false + } + }, + "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": false + } + }, + "npm__esbuild-linux-s390x__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-s390x", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-s390x": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-plugin-jsx-a11y__6.7.1__eslint_8.28.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-jsx-a11y", + "version": "6.7.1_eslint_8.28.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/runtime": "7.23.1", + "aria-query": "5.3.0", + "array-includes": "3.1.7", + "array.prototype.flatmap": "1.3.2", + "ast-types-flow": "0.0.7", + "axe-core": "4.8.2", + "axobject-query": "3.2.1", + "damerau-levenshtein": "1.0.8", + "emoji-regex": "9.2.2", + "eslint": "8.28.0", + "has": "1.0.3", + "jsx-ast-utils": "3.3.5", + "language-tags": "1.0.5", + "minimatch": "3.1.2", + "object.entries": "1.1.7", + "object.fromentries": "2.0.7", + "semver": "6.3.1" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@babel/runtime": [ + "7.23.1" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.1" + ], + "@nodelib/fs.scandir": [ + "2.1.5" + ], + "@nodelib/fs.stat": [ + "2.0.5" + ], + "@nodelib/fs.walk": [ + "1.2.8" + ], + "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" + ], + "aria-query": [ + "5.3.0" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "ast-types-flow": [ + "0.0.7" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "axe-core": [ + "4.8.2" + ], + "axobject-query": [ + "3.2.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" + ], + "damerau-levenshtein": [ + "1.0.8" + ], + "debug": [ + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dequal": [ + "2.0.3" + ], + "doctrine": [ + "3.0.0" + ], + "emoji-regex": [ + "9.2.2" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-plugin-jsx-a11y": [ + "6.7.1_eslint_8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "js-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "jsx-ast-utils": [ + "3.3.5" + ], + "keyv": [ + "4.5.3" + ], + "language-subtag-registry": [ + "0.3.22" + ], + "language-tags": [ + "1.0.5" + ], + "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" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.7" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regenerator-runtime": [ + "0.14.0" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "regexpp": [ + "3.2.0" + ], + "resolve-from": [ + "4.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__electron-to-chromium__1.4.539": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "electron-to-chromium", + "version": "1.4.539", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wRmWJ8F7rgmINuI32S6r2SLrw/h/bJQsDSvBiq9GBfvc2Lh73qTOwn73r3Cf67mjVgFGJYcYtmERzySa5jIWlg==", + "url": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.539.tgz", + "commit": "", + "patch_args": [], + "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__grapheme-splitter__1.0.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "grapheme-splitter", + "version": "1.0.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "url": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "path-is-absolute": [ + "1.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-private-property-in-object__7.21.0-placeholder-for-preset-env.2__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-private-property-in-object", + "version": "7.21.0-placeholder-for-preset-env.2_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.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": false + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_jridgewell_sourcemap-codec__1.4.15__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jridgewell/sourcemap-codec", + "version": "1.4.15", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_utf8__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/utf8", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "@webassemblyjs/utf8": [ + "1.11.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-numeric-separator__7.18.6__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-numeric-separator", + "version": "7.18.6_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.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": false + } + }, + "npm__universalify__0.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "universalify", + "version": "0.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "universalify": [ + "0.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_wasm-opt__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/wasm-opt", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + }, + "transitive_closure": { + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-buffer": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-gen": [ + "1.11.6" + ], + "@webassemblyjs/wasm-opt": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-darwin-arm64__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-darwin-arm64", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mshlh8QOtOalfZbc17uNAftWgqHTKnrv6QUwBe+mpGz04eqsSUzVz1JGZEdIkmuDxOz00cK2NPoc+VHDXh99IQ==", + "url": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.5.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": false + } + }, + "npm__at_babel_helper-builder-binary-assignment-operator-visitor__7.22.15": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-builder-binary-assignment-operator-visitor", + "version": "7.22.15", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "url": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-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": false + } + }, + "npm__esbuild-linux-64__0.15.18": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esbuild-linux-64", + "version": "0.15.18", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==", + "url": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.18.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": false + } + }, + "npm__strip-literal__2.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-literal", + "version": "2.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==", + "url": "https://registry.npmjs.org/strip-literal/-/strip-literal-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": false + } + }, + "npm__at_babel_eslint-parser__7.23.3__-37998846": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/eslint-parser", + "version": "7.23.3_-37998846", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==", + "url": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-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": false + } + }, + "npm__at_babel_generator__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/generator", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/types": "7.23.5", + "@jridgewell/gen-mapping": "0.3.3", + "@jridgewell/trace-mapping": "0.3.19", + "jsesc": "2.5.2" + }, + "transitive_closure": { + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "jsesc": [ + "2.5.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__ajv-keywords__3.5.2__ajv_6.12.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "ajv-keywords", + "version": "3.5.2_ajv_6.12.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "ajv": "6.12.6" + }, + "transitive_closure": { + "ajv": [ + "6.12.6" + ], + "ajv-keywords": [ + "3.5.2_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.3.1" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pirates__4.0.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "pirates", + "version": "4.0.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "pirates": [ + "4.0.6" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__deepmerge__4.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "deepmerge", + "version": "4.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "url": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.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": false + } + }, + "npm__object.fromentries__2.0.7": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "object.fromentries", + "version": "2.0.7", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "url": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-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": false + } + }, + "npm__at_nicolo-ribaudo_eslint-scope-5-internals__5.1.1-v1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@nicolo-ribaudo/eslint-scope-5-internals", + "version": "5.1.1-v1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "url": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "commit": "", + "patch_args": [], + "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__typescript__4.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "typescript", + "version": "4.9.3", + "root_package": "", + "link_workspace": "", + "link_packages": { + "next.js": [ + "typescript" + ], + "react": [ + "typescript" + ], + "vue": [ + "typescript" + ] + }, + "integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==", + "url": "https://registry.npmjs.org/typescript/-/typescript-4.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": false + } + }, + "npm__check-error__1.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "check-error", + "version": "1.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "get-func-name": "2.0.2" + }, + "transitive_closure": { + "check-error": [ + "1.0.3" + ], + "get-func-name": [ + "2.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__tsutils__3.21.0__typescript_4.9.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tsutils", + "version": "3.21.0_typescript_4.9.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": false + } + }, + "npm__tsconfig-paths__3.14.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tsconfig-paths", + "version": "3.14.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "url": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.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": false + } + }, + "npm__htmlparser2__6.1.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "htmlparser2", + "version": "6.1.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "domelementtype": "2.3.0", + "domhandler": "4.3.1", + "domutils": "2.8.0", + "entities": "2.2.0" + }, + "transitive_closure": { + "dom-serializer": [ + "1.4.1" + ], + "domelementtype": [ + "2.3.0" + ], + "domhandler": [ + "4.3.1" + ], + "domutils": [ + "2.8.0" + ], + "entities": [ + "2.2.0" + ], + "htmlparser2": [ + "6.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__is-generator-function__1.0.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-generator-function", + "version": "1.0.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "url": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-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": false + } + }, + "npm__arraybuffer.prototype.slice__1.0.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "arraybuffer.prototype.slice", + "version": "1.0.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-buffer-byte-length": "1.0.0", + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2", + "get-intrinsic": "1.2.1", + "is-array-buffer": "3.0.2", + "is-shared-array-buffer": "1.0.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_volar_vue-language-core__1.0.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@volar/vue-language-core", + "version": "1.0.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-tofNoR8ShPFenHT1YVMuvoXtXWwoQE+fiXVqSmW0dSKZqEDjWQ3YeXSd0a6aqyKaIbvR7kWWGp34WbpQlwf9Ww==", + "url": "https://registry.npmjs.org/@volar/vue-language-core/-/vue-language-core-1.0.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": false + } + }, + "npm__postcss__8.4.32__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss", + "version": "8.4.32", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "nanoid": "3.3.7", + "picocolors": "1.0.0", + "source-map-js": "1.0.2" + }, + "transitive_closure": { + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.32" + ], + "source-map-js": [ + "1.0.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "slash": [ + "3.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__esbuild-linux-ppc64le__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-linux-ppc64le", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-linux-ppc64le": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_next_swc-linux-x64-gnu__13.0.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@next/swc-linux-x64-gnu", + "version": "13.0.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9Ahi1bbdXwhrWQmOyoTod23/hhK05da/FzodiNqd6drrMl1y7+RujoEcU8Dtw3H1mGWB+yuTlWo8B4Iba8hqiQ==", + "url": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.5.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": false + } + }, + "npm__at_types_babel__core__7.20.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/babel__core", + "version": "7.20.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/parser": "7.23.0", + "@babel/types": "7.23.0", + "@types/babel__generator": "7.6.5", + "@types/babel__template": "7.4.2", + "@types/babel__traverse": "7.20.2" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.0", + "7.23.5" + ], + "@types/babel__core": [ + "7.20.5" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__eslint-module-utils__2.8.0__2031701610__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-module-utils", + "version": "2.8.0_2031701610", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/parser": "5.44.0_509062556", + "debug": "3.2.7", + "eslint": "8.28.0", + "eslint-import-resolver-node": "0.3.9", + "eslint-import-resolver-typescript": "3.6.1_237066510" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint/eslintrc": [ + "1.4.1" + ], + "@humanwhocodes/config-array": [ + "0.11.11" + ], + "@humanwhocodes/module-importer": [ + "1.0.1" + ], + "@humanwhocodes/object-schema": [ + "1.2.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_509062556" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3" + ], + "@typescript-eslint/visitor-keys": [ + "5.44.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-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array-union": [ + "2.1.0" + ], + "array.prototype.findlastindex": [ + "1.2.3" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "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": [ + "3.2.7", + "4.3.4" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "enhanced-resolve": [ + "5.15.0" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.28.0" + ], + "eslint-import-resolver-node": [ + "0.3.9" + ], + "eslint-import-resolver-typescript": [ + "3.6.1_237066510" + ], + "eslint-module-utils": [ + "2.8.0_-993259024", + "2.8.0_2031701610" + ], + "eslint-plugin-import": [ + "2.28.1_eslint_8.28.0" + ], + "eslint-scope": [ + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.28.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-glob": [ + "3.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "get-tsconfig": [ + "4.7.2" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "globby": [ + "11.1.0" + ], + "gopd": [ + "1.0.1" + ], + "graceful-fs": [ + "4.2.11" + ], + "grapheme-splitter": [ + "1.0.4" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-flag": [ + "4.0.0" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "js-sdsl": [ + "4.4.2" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "json5": [ + "1.0.2" + ], + "keyv": [ + "4.5.3" + ], + "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.8" + ], + "ms": [ + "2.1.2", + "2.1.3" + ], + "natural-compare": [ + "1.4.0" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.groupby": [ + "1.0.1" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "regexpp": [ + "3.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "4.0.0" + ], + "resolve-pkg-maps": [ + "1.0.0" + ], + "reusify": [ + "1.0.4" + ], + "rimraf": [ + "3.0.2" + ], + "run-parallel": [ + "1.2.0" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "slash": [ + "3.0.0" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "3.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "tapable": [ + "2.2.1" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tsconfig-paths": [ + "3.14.2" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "typescript": [ + "4.9.3" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yallist": [ + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-proposal-optional-chaining__7.21.0__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-proposal-optional-chaining", + "version": "7.21.0_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "url": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.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": false + } + }, + "npm__bser__2.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "bser", + "version": "2.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "url": "https://registry.npmjs.org/bser/-/bser-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": false + } + }, + "npm__events__3.3.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "events", + "version": "3.3.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "url": "https://registry.npmjs.org/events/-/events-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": false + } + }, + "npm__eslint-plugin-react__7.33.2__eslint_8.57.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "eslint-plugin-react", + "version": "7.33.2_eslint_8.57.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "array-includes": "3.1.7", + "array.prototype.flatmap": "1.3.2", + "array.prototype.tosorted": "1.1.2", + "doctrine": "2.1.0", + "es-iterator-helpers": "1.0.15", + "eslint": "8.57.0", + "estraverse": "5.3.0", + "jsx-ast-utils": "3.3.5", + "minimatch": "3.1.2", + "object.entries": "1.1.7", + "object.fromentries": "2.0.7", + "object.hasown": "1.1.3", + "object.values": "1.1.7", + "prop-types": "15.8.1", + "resolve": "2.0.0-next.4", + "semver": "6.3.1", + "string.prototype.matchall": "4.0.10" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "array-buffer-byte-length": [ + "1.0.0" + ], + "array-includes": [ + "3.1.7" + ], + "array.prototype.flat": [ + "1.3.2" + ], + "array.prototype.flatmap": [ + "1.3.2" + ], + "array.prototype.tosorted": [ + "1.1.2" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "asynciterator.prototype": [ + "1.0.0" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "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" + ], + "deep-is": [ + "0.1.4" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "doctrine": [ + "2.1.0", + "3.0.0" + ], + "es-abstract": [ + "1.22.2" + ], + "es-iterator-helpers": [ + "1.0.15" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-shim-unscopables": [ + "1.0.0" + ], + "es-to-primitive": [ + "1.2.1" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-plugin-react": [ + "7.33.2_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.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "for-each": [ + "0.3.3" + ], + "fs.realpath": [ + "1.0.0" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "6.0.2" + ], + "globals": [ + "13.22.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "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-proto": [ + "1.0.1" + ], + "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.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "is-async-function": [ + "2.0.0" + ], + "is-bigint": [ + "1.0.4" + ], + "is-boolean-object": [ + "1.1.2" + ], + "is-callable": [ + "1.2.7" + ], + "is-core-module": [ + "2.13.0" + ], + "is-date-object": [ + "1.0.5" + ], + "is-extglob": [ + "2.1.1" + ], + "is-finalizationregistry": [ + "1.0.2" + ], + "is-generator-function": [ + "1.0.10" + ], + "is-glob": [ + "4.0.3" + ], + "is-map": [ + "2.0.2" + ], + "is-negative-zero": [ + "2.0.2" + ], + "is-number-object": [ + "1.0.7" + ], + "is-path-inside": [ + "3.0.3" + ], + "is-regex": [ + "1.1.4" + ], + "is-set": [ + "2.0.2" + ], + "is-shared-array-buffer": [ + "1.0.2" + ], + "is-string": [ + "1.0.7" + ], + "is-symbol": [ + "1.0.4" + ], + "is-typed-array": [ + "1.1.12" + ], + "is-weakmap": [ + "2.0.1" + ], + "is-weakref": [ + "1.0.2" + ], + "is-weakset": [ + "2.0.2" + ], + "isarray": [ + "2.0.5" + ], + "isexe": [ + "2.0.0" + ], + "iterator.prototype": [ + "1.1.2" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "4.1.0" + ], + "json-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "jsx-ast-utils": [ + "3.3.5" + ], + "keyv": [ + "4.5.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.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.entries": [ + "1.1.7" + ], + "object.fromentries": [ + "2.0.7" + ], + "object.hasown": [ + "1.1.3" + ], + "object.values": [ + "1.1.7" + ], + "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.3.1" + ], + "queue-microtask": [ + "1.2.3" + ], + "react-is": [ + "16.13.1" + ], + "reflect.getprototypeof": [ + "1.0.4" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "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-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "set-function-name": [ + "2.0.1" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.matchall": [ + "4.0.10" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "7.2.0" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "text-table": [ + "0.2.0" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "uri-js": [ + "4.4.1" + ], + "which": [ + "2.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-builtin-type": [ + "1.1.3" + ], + "which-collection": [ + "1.0.1" + ], + "which-typed-array": [ + "1.1.11" + ], + "wrappy": [ + "1.0.2" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__wbuf__1.7.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "wbuf", + "version": "1.7.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "url": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-arrow-functions__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-arrow-functions", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-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": false + } + }, + "npm__is-odd__3.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "is-odd", + "version": "3.0.1", + "dev": false, + "root_package": "", + "link_packages": { + "packages/one": [ + "is-odd" + ] + }, + "deps": { + "is-number": "6.0.0" + }, + "transitive_closure": { + "is-number": [ + "6.0.0" + ], + "is-odd": [ + "3.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__language-subtag-registry__0.3.22__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "language-subtag-registry", + "version": "0.3.22", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "language-subtag-registry": [ + "0.3.22" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_preset-react__7.23.3__at_babel_core_7.23.5__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.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@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.23.5", + "@babel/plugin-transform-react-jsx": "7.23.4_at_babel_core_7.23.5", + "@babel/plugin-transform-react-jsx-development": "7.22.5_at_babel_core_7.23.5", + "@babel/plugin-transform-react-pure-annotations": "7.23.3_at_babel_core_7.23.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-display-name": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx": [ + "7.23.4_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-jsx-development": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-transform-react-pure-annotations": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/preset-react": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esbuild__0.19.8__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild", + "version": "0.19.8", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@esbuild/android-arm": "0.19.8", + "@esbuild/android-arm64": "0.19.8", + "@esbuild/android-x64": "0.19.8", + "@esbuild/darwin-arm64": "0.19.8", + "@esbuild/darwin-x64": "0.19.8", + "@esbuild/freebsd-arm64": "0.19.8", + "@esbuild/freebsd-x64": "0.19.8", + "@esbuild/linux-arm": "0.19.8", + "@esbuild/linux-arm64": "0.19.8", + "@esbuild/linux-ia32": "0.19.8", + "@esbuild/linux-loong64": "0.19.8", + "@esbuild/linux-mips64el": "0.19.8", + "@esbuild/linux-ppc64": "0.19.8", + "@esbuild/linux-riscv64": "0.19.8", + "@esbuild/linux-s390x": "0.19.8", + "@esbuild/linux-x64": "0.19.8", + "@esbuild/netbsd-x64": "0.19.8", + "@esbuild/openbsd-x64": "0.19.8", + "@esbuild/sunos-x64": "0.19.8", + "@esbuild/win32-arm64": "0.19.8", + "@esbuild/win32-ia32": "0.19.8", + "@esbuild/win32-x64": "0.19.8" + }, + "transitive_closure": { + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "esbuild": [ + "0.19.8" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pathe__1.1.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pathe", + "version": "1.1.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", + "url": "https://registry.npmjs.org/pathe/-/pathe-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": false + } + }, + "npm__js-sdsl__4.4.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "js-sdsl", + "version": "4.4.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w==", + "url": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-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": false + } + }, + "npm__at_babel_core__7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/core", + "version": "7.23.5", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@ampproject/remapping": "2.2.1", + "@babel/code-frame": "7.23.5", + "@babel/generator": "7.23.5", + "@babel/helper-compilation-targets": "7.22.15", + "@babel/helper-module-transforms": "7.23.3_at_babel_core_7.23.5", + "@babel/helpers": "7.23.5", + "@babel/parser": "7.23.5", + "@babel/template": "7.22.15", + "@babel/traverse": "7.23.5", + "@babel/types": "7.23.5", + "convert-source-map": "2.0.0", + "debug": "4.3.4", + "gensync": "1.0.0-beta.2", + "json5": "2.2.3", + "semver": "6.3.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_babel__generator__7.6.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/babel__generator", + "version": "7.6.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==", + "url": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.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": false + } + }, + "npm__launch-editor__2.6.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "launch-editor", + "version": "2.6.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "picocolors": "1.0.0", + "shell-quote": "1.8.1" + }, + "transitive_closure": { + "launch-editor": [ + "2.6.0" + ], + "picocolors": [ + "1.0.0" + ], + "shell-quote": [ + "1.8.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "lodash": [ + "4.17.21" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-literals__7.23.3__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-literals", + "version": "7.23.3_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-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": false + } + }, + "npm__at_playwright_test__1.42.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@playwright/test", + "version": "1.42.1", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@playwright/test" + ] + }, + "deps": { + "playwright": "1.42.1" + }, + "transitive_closure": { + "@playwright/test": [ + "1.42.1" + ], + "fsevents": [ + "2.3.2" + ], + "playwright": [ + "1.42.1" + ], + "playwright-core": [ + "1.42.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__postcss-load-config__3.1.4__postcss_8.4.35__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "postcss-load-config", + "version": "3.1.4_postcss_8.4.35", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "lilconfig": "2.1.0", + "postcss": "8.4.35", + "yaml": "1.10.2" + }, + "transitive_closure": { + "lilconfig": [ + "2.1.0" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "postcss-load-config": [ + "3.1.4_postcss_8.4.35" + ], + "source-map-js": [ + "1.0.2" + ], + "yaml": [ + "1.10.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vitest_snapshot__1.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vitest/snapshot", + "version": "1.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==", + "url": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-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": false + } + }, + "npm__resolve-cwd__3.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "resolve-cwd", + "version": "3.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "url": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-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": false + } + }, + "npm__at_jest_test-result__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/test-result", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/console": "29.7.0", + "@jest/types": "29.6.3", + "@types/istanbul-lib-coverage": "2.0.4", + "collect-v8-coverage": "1.0.2" + }, + "transitive_closure": { + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "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.8.0" + ], + "collect-v8-coverage": [ + "1.0.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.11" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "is-number": [ + "7.0.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-ssr__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-ssr", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==", + "url": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__schema-utils__3.3.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "schema-utils", + "version": "3.3.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/json-schema": "7.0.13", + "ajv": "6.12.6", + "ajv-keywords": "3.5.2_ajv_6.12.6" + }, + "transitive_closure": { + "@types/json-schema": [ + "7.0.13" + ], + "ajv": [ + "6.12.6" + ], + "ajv-keywords": [ + "3.5.2_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.3.1" + ], + "schema-utils": [ + "3.3.0" + ], + "uri-js": [ + "4.4.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-react-display-name__7.23.3__at_babel_core_7.23.5": { + "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.23.5", + "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": false + } + }, + "npm__at_types_eslint-scope__3.7.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@types/eslint-scope", + "version": "3.7.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@types/eslint": "8.56.5", + "@types/estree": "1.0.2" + }, + "transitive_closure": { + "@types/eslint": [ + "8.56.5" + ], + "@types/eslint-scope": [ + "3.7.5" + ], + "@types/estree": [ + "1.0.2" + ], + "@types/json-schema": [ + "7.0.13" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__esprima__4.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esprima", + "version": "4.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esprima": [ + "4.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__detect-node__2.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "detect-node", + "version": "2.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "url": "https://registry.npmjs.org/detect-node/-/detect-node-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": false + } + }, + "npm__esbuild-freebsd-arm64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-freebsd-arm64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-freebsd-arm64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__esrap__1.2.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "esrap", + "version": "1.2.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-dhkcOLfN/aDdMFI1iwPEcy/XqAZzGNfgfEJjZozy2tia6u0dQoZyXzkRshHTckuNsM+c0CYQndY+uRFe3N+AIQ==", + "url": "https://registry.npmjs.org/esrap/-/esrap-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": false + } + }, + "npm__at_vue_runtime-dom__3.3.4__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/runtime-dom", + "version": "3.3.4", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "3.1.2" + }, + "transitive_closure": { + "@vue/reactivity": [ + "3.3.4" + ], + "@vue/runtime-core": [ + "3.3.4" + ], + "@vue/runtime-dom": [ + "3.3.4" + ], + "@vue/shared": [ + "3.3.4" + ], + "csstype": [ + "3.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dequal__2.0.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dequal", + "version": "2.0.3", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "dequal": [ + "2.0.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__dom-accessibility-api__0.5.16__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "dom-accessibility-api", + "version": "0.5.16", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "dom-accessibility-api": [ + "0.5.16" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__esbuild-windows-64__0.15.18__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "esbuild-windows-64", + "version": "0.15.18", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "esbuild-windows-64": [ + "0.15.18" + ] + }, + "lifecycle_build_target": true, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [ + "no-sandbox" + ], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__assertion-error__1.1.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "assertion-error", + "version": "1.1.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "url": "https://registry.npmjs.org/assertion-error/-/assertion-error-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": false + } + }, + "npm__at_typescript-eslint_visitor-keys__7.2.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/visitor-keys", + "version": "7.2.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/types": "7.2.0", + "eslint-visitor-keys": "3.4.3" + }, + "transitive_closure": { + "@typescript-eslint/types": [ + "7.2.0" + ], + "@typescript-eslint/visitor-keys": [ + "7.2.0" + ], + "eslint-visitor-keys": [ + "3.4.3" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": false + } + }, + "npm__is-odd__3.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "is-odd", + "version": "3.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": { + "packages/one": [ + "is-odd" + ] + }, + "integrity": "sha512-CQpnWPrDwmP1+SMHXZhtLtJv90yiyVfluGsX5iNCVkrhQtU3TQHsUWPG9wkdk9Lgd5yNpAg9jQEo90CBaXgWMA==", + "url": "https://registry.npmjs.org/is-odd/-/is-odd-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": false + } + }, + "npm__at_typescript-eslint_type-utils__5.44.0__1986444992__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@typescript-eslint/type-utils", + "version": "5.44.0_1986444992", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@typescript-eslint/typescript-estree": "5.44.0_typescript_4.9.3", + "@typescript-eslint/utils": "5.44.0_1986444992", + "debug": "4.3.4", + "eslint": "8.57.0", + "tsutils": "3.21.0_typescript_4.9.3", + "typescript": "4.9.3" + }, + "transitive_closure": { + "@aashutoshrathi/word-wrap": [ + "1.2.6" + ], + "@eslint-community/eslint-utils": [ + "4.4.0_eslint_8.57.0" + ], + "@eslint-community/regexpp": [ + "4.10.0" + ], + "@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" + ], + "@types/json-schema": [ + "7.0.13" + ], + "@types/semver": [ + "7.5.3" + ], + "@typescript-eslint/scope-manager": [ + "5.44.0" + ], + "@typescript-eslint/type-utils": [ + "5.44.0_1986444992" + ], + "@typescript-eslint/types": [ + "5.44.0" + ], + "@typescript-eslint/typescript-estree": [ + "5.44.0_typescript_4.9.3" + ], + "@typescript-eslint/utils": [ + "5.44.0_1986444992" + ], + "@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" + ], + "deep-is": [ + "0.1.4" + ], + "dir-glob": [ + "3.0.1" + ], + "doctrine": [ + "3.0.0" + ], + "escape-string-regexp": [ + "4.0.0" + ], + "eslint": [ + "8.57.0" + ], + "eslint-scope": [ + "5.1.1", + "7.2.2" + ], + "eslint-utils": [ + "3.0.0_eslint_8.57.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.3.1" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fast-levenshtein": [ + "2.0.6" + ], + "fastq": [ + "1.15.0" + ], + "file-entry-cache": [ + "6.0.1" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "5.0.0" + ], + "flat-cache": [ + "3.1.0" + ], + "flatted": [ + "3.2.9" + ], + "fs.realpath": [ + "1.0.0" + ], + "glob": [ + "7.2.3" + ], + "glob-parent": [ + "5.1.2", + "6.0.2" + ], + "globals": [ + "13.22.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-buffer": [ + "3.0.1" + ], + "json-schema-traverse": [ + "0.4.1" + ], + "json-stable-stringify-without-jsonify": [ + "1.0.1" + ], + "keyv": [ + "4.5.3" + ], + "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.3.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" + ], + "text-table": [ + "0.2.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "tslib": [ + "1.14.1" + ], + "tsutils": [ + "3.21.0_typescript_4.9.3" + ], + "type-check": [ + "0.4.0" + ], + "type-fest": [ + "0.20.2" + ], + "typescript": [ + "4.9.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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__string.prototype.matchall__4.0.10": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "string.prototype.matchall", + "version": "4.0.10", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "url": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.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": false + } + }, + "npm__html-tags__3.3.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "html-tags", + "version": "3.3.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "url": "https://registry.npmjs.org/html-tags/-/html-tags-3.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": false + } + }, + "npm__at_babel_helper-wrap-function__7.22.20": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/helper-wrap-function", + "version": "7.22.20", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "url": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-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": false + } + }, + "npm__at_jest_core__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@jest/core", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/console": "29.7.0", + "@jest/reporters": "29.7.0", + "@jest/test-result": "29.7.0", + "@jest/transform": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "ansi-escapes": "4.3.2", + "chalk": "4.1.2", + "ci-info": "3.8.0", + "exit": "0.1.2", + "graceful-fs": "4.2.11", + "jest-changed-files": "29.7.0", + "jest-config": "29.7.0_at_types_node_18.19.18", + "jest-haste-map": "29.7.0", + "jest-message-util": "29.7.0", + "jest-regex-util": "29.6.3", + "jest-resolve": "29.7.0", + "jest-resolve-dependencies": "29.7.0", + "jest-runner": "29.7.0", + "jest-runtime": "29.7.0", + "jest-snapshot": "29.7.0", + "jest-util": "29.7.0", + "jest-validate": "29.7.0", + "jest-watcher": "29.7.0", + "micromatch": "4.0.5", + "pretty-format": "29.7.0", + "slash": "3.0.0", + "strip-ansi": "6.0.1" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.22.13", + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.0", + "7.23.5" + ], + "@babel/generator": [ + "7.23.0", + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.0_at_babel_core_7.23.0", + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.1", + "7.23.5" + ], + "@babel/highlight": [ + "7.22.20", + "7.23.4" + ], + "@babel/parser": [ + "7.23.0", + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.0", + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.0", + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.0", + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.0", + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.0", + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.0", + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@bcoe/v8-coverage": [ + "0.2.3" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/core": [ + "29.7.0" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/globals": [ + "29.7.0" + ], + "@jest/reporters": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/source-map": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/test-sequencer": [ + "29.7.0" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/babel__core": [ + "7.20.2" + ], + "@types/babel__generator": [ + "7.6.5" + ], + "@types/babel__template": [ + "7.4.2" + ], + "@types/babel__traverse": [ + "7.20.2" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-escapes": [ + "4.3.2" + ], + "ansi-regex": [ + "5.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-jest": [ + "29.7.0_at_babel_core_7.23.0" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-plugin-jest-hoist": [ + "29.6.3" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.0", + "1.0.1_at_babel_core_7.23.5" + ], + "babel-preset-jest": [ + "29.6.3_at_babel_core_7.23.0" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "buffer-from": [ + "1.1.2" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "5.3.1", + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "char-regex": [ + "1.0.2" + ], + "ci-info": [ + "3.8.0" + ], + "cjs-module-lexer": [ + "1.2.3" + ], + "co": [ + "4.6.0" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "1.9.0", + "2.0.0" + ], + "cross-spawn": [ + "7.0.3" + ], + "debug": [ + "4.3.4" + ], + "dedent": [ + "1.5.1" + ], + "deepmerge": [ + "4.3.1" + ], + "detect-newline": [ + "3.1.0" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "emittery": [ + "0.13.1" + ], + "error-ex": [ + "1.3.2" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "execa": [ + "5.1.1" + ], + "exit": [ + "0.1.2" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "get-stream": [ + "6.0.1" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "html-escaper": [ + "2.0.2" + ], + "human-signals": [ + "2.1.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-arrayish": [ + "0.2.1" + ], + "is-core-module": [ + "2.13.0" + ], + "is-generator-fn": [ + "2.1.0" + ], + "is-number": [ + "7.0.0" + ], + "is-stream": [ + "2.0.1" + ], + "isexe": [ + "2.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1", + "6.0.0" + ], + "istanbul-lib-report": [ + "3.0.1" + ], + "istanbul-lib-source-maps": [ + "4.0.1" + ], + "istanbul-reports": [ + "3.1.6" + ], + "jest-changed-files": [ + "29.7.0" + ], + "jest-circus": [ + "29.7.0" + ], + "jest-config": [ + "29.7.0_at_types_node_18.19.18" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-docblock": [ + "29.7.0" + ], + "jest-each": [ + "29.7.0" + ], + "jest-environment-node": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-leak-detector": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-resolve-dependencies": [ + "29.7.0" + ], + "jest-runner": [ + "29.7.0" + ], + "jest-runtime": [ + "29.7.0" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-watcher": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json-parse-even-better-errors": [ + "2.3.1" + ], + "json5": [ + "2.2.3" + ], + "leven": [ + "3.1.0" + ], + "lines-and-columns": [ + "1.2.4" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "make-dir": [ + "4.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "mimic-fn": [ + "2.1.0" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "npm-run-path": [ + "4.0.1" + ], + "once": [ + "1.4.0" + ], + "onetime": [ + "5.1.2" + ], + "p-limit": [ + "2.3.0", + "3.1.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "parse-json": [ + "5.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-key": [ + "3.1.1" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "pure-rand": [ + "6.0.4" + ], + "react-is": [ + "18.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "5.0.0" + ], + "resolve.exports": [ + "2.0.2" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "shebang-command": [ + "2.0.0" + ], + "shebang-regex": [ + "3.0.0" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "source-map": [ + "0.6.1" + ], + "source-map-support": [ + "0.5.13" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "string-length": [ + "4.0.2" + ], + "strip-ansi": [ + "6.0.1" + ], + "strip-bom": [ + "4.0.0" + ], + "strip-final-newline": [ + "2.0.0" + ], + "strip-json-comments": [ + "3.1.1" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-detect": [ + "4.0.8" + ], + "type-fest": [ + "0.21.3" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "v8-to-istanbul": [ + "9.1.0" + ], + "walker": [ + "1.0.8" + ], + "which": [ + "2.0.2" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__object.fromentries__2.0.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "object.fromentries", + "version": "2.0.7", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "call-bind": "1.0.2", + "define-properties": "1.2.1", + "es-abstract": "1.22.2" + }, + "transitive_closure": { + "array-buffer-byte-length": [ + "1.0.0" + ], + "arraybuffer.prototype.slice": [ + "1.0.2" + ], + "available-typed-arrays": [ + "1.0.5" + ], + "call-bind": [ + "1.0.2" + ], + "define-data-property": [ + "1.1.0" + ], + "define-properties": [ + "1.2.1" + ], + "es-abstract": [ + "1.22.2" + ], + "es-set-tostringtag": [ + "2.0.1" + ], + "es-to-primitive": [ + "1.2.1" + ], + "for-each": [ + "0.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "function.prototype.name": [ + "1.1.6" + ], + "functions-have-names": [ + "1.2.3" + ], + "get-intrinsic": [ + "1.2.1" + ], + "get-symbol-description": [ + "1.0.0" + ], + "globalthis": [ + "1.0.3" + ], + "gopd": [ + "1.0.1" + ], + "has": [ + "1.0.3" + ], + "has-bigints": [ + "1.0.2" + ], + "has-property-descriptors": [ + "1.0.0" + ], + "has-proto": [ + "1.0.1" + ], + "has-symbols": [ + "1.0.3" + ], + "has-tostringtag": [ + "1.0.0" + ], + "internal-slot": [ + "1.0.5" + ], + "is-array-buffer": [ + "3.0.2" + ], + "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-typed-array": [ + "1.1.12" + ], + "is-weakref": [ + "1.0.2" + ], + "isarray": [ + "2.0.5" + ], + "object-inspect": [ + "1.12.3" + ], + "object-keys": [ + "1.1.1" + ], + "object.assign": [ + "4.1.4" + ], + "object.fromentries": [ + "2.0.7" + ], + "regexp.prototype.flags": [ + "1.5.1" + ], + "safe-array-concat": [ + "1.0.1" + ], + "safe-regex-test": [ + "1.0.0" + ], + "set-function-name": [ + "2.0.1" + ], + "side-channel": [ + "1.0.4" + ], + "string.prototype.trim": [ + "1.2.8" + ], + "string.prototype.trimend": [ + "1.0.7" + ], + "string.prototype.trimstart": [ + "1.0.7" + ], + "typed-array-buffer": [ + "1.0.0" + ], + "typed-array-byte-length": [ + "1.0.0" + ], + "typed-array-byte-offset": [ + "1.0.0" + ], + "typed-array-length": [ + "1.0.4" + ], + "unbox-primitive": [ + "1.0.2" + ], + "which-boxed-primitive": [ + "1.0.2" + ], + "which-typed-array": [ + "1.1.11" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_babel_plugin-transform-unicode-sets-regex__7.23.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-transform-unicode-sets-regex", + "version": "7.23.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-create-regexp-features-plugin": "7.22.15_at_babel_core_7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-annotate-as-pure": [ + "7.22.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@babel/helper-create-regexp-features-plugin": [ + "7.22.15_at_babel_core_7.23.5" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-transform-unicode-sets-regex": [ + "7.23.3_at_babel_core_7.23.5" + ], + "@babel/regjsgen": [ + "0.8.0" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "0.5.0", + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "regenerate": [ + "1.4.2" + ], + "regenerate-unicode-properties": [ + "10.1.1" + ], + "regexpu-core": [ + "5.3.2" + ], + "regjsparser": [ + "0.9.1" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "unicode-canonical-property-names-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-ecmascript": [ + "2.0.0" + ], + "unicode-match-property-value-ecmascript": [ + "2.1.0" + ], + "unicode-property-aliases-ecmascript": [ + "2.1.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_vue_compiler-dom__3.2.45__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@vue/compiler-dom", + "version": "3.2.45", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": { + "@vue/compiler-core": "3.2.45", + "@vue/shared": "3.2.45" + }, + "transitive_closure": { + "@babel/helper-string-parser": [ + "7.23.4" + ], + "@babel/helper-validator-identifier": [ + "7.22.20" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@vue/compiler-core": [ + "3.2.45" + ], + "@vue/compiler-dom": [ + "3.2.45" + ], + "@vue/shared": [ + "3.2.45" + ], + "estree-walker": [ + "2.0.2" + ], + "source-map": [ + "0.6.1" + ], + "to-fast-properties": [ + "2.0.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__strip-bom__4.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "strip-bom", + "version": "4.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "url": "https://registry.npmjs.org/strip-bom/-/strip-bom-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": false + } + }, + "npm__abab__2.0.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "abab", + "version": "2.0.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "url": "https://registry.npmjs.org/abab/-/abab-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": false + } + }, + "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": false + } + }, + "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": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "ansi-styles": [ + "5.2.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__decode-uri-component__0.2.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "decode-uri-component", + "version": "0.2.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "decode-uri-component": [ + "0.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__emoji-regex__9.2.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "emoji-regex", + "version": "9.2.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "url": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.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": false + } + }, + "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": { + "sveltekit_ts": [ + "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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-syntax-bigint__7.8.3__at_babel_core_7.23.5__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@babel/plugin-syntax-bigint", + "version": "7.8.3_at_babel_core_7.23.5", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@babel/core": "7.23.5", + "@babel/helper-plugin-utils": "7.22.5" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "ansi-styles": [ + "3.2.1" + ], + "browserslist": [ + "4.22.2" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2" + ], + "color-convert": [ + "1.9.3" + ], + "color-name": [ + "1.1.3" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "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" + ], + "js-tokens": [ + "4.0.0" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "lru-cache": [ + "5.1.1" + ], + "ms": [ + "2.1.2" + ], + "node-releases": [ + "2.0.14" + ], + "picocolors": [ + "1.0.0" + ], + "semver": [ + "6.3.1" + ], + "supports-color": [ + "5.5.0" + ], + "to-fast-properties": [ + "2.0.0" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "yallist": [ + "3.1.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_sveltejs_adapter-auto__3.1.1__at_sveltejs_kit_2.5.3__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@sveltejs/adapter-auto", + "version": "3.1.1_at_sveltejs_kit_2.5.3", + "dev": true, + "root_package": "", + "link_packages": { + "sveltekit_ts": [ + "@sveltejs/adapter-auto" + ] + }, + "deps": { + "@sveltejs/kit": "2.5.3_5236015", + "import-meta-resolve": "4.0.0" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@esbuild/android-arm": [ + "0.19.8" + ], + "@esbuild/android-arm64": [ + "0.19.8" + ], + "@esbuild/android-x64": [ + "0.19.8" + ], + "@esbuild/darwin-arm64": [ + "0.19.8" + ], + "@esbuild/darwin-x64": [ + "0.19.8" + ], + "@esbuild/freebsd-arm64": [ + "0.19.8" + ], + "@esbuild/freebsd-x64": [ + "0.19.8" + ], + "@esbuild/linux-arm": [ + "0.19.8" + ], + "@esbuild/linux-arm64": [ + "0.19.8" + ], + "@esbuild/linux-ia32": [ + "0.19.8" + ], + "@esbuild/linux-loong64": [ + "0.19.8" + ], + "@esbuild/linux-mips64el": [ + "0.19.8" + ], + "@esbuild/linux-ppc64": [ + "0.19.8" + ], + "@esbuild/linux-riscv64": [ + "0.19.8" + ], + "@esbuild/linux-s390x": [ + "0.19.8" + ], + "@esbuild/linux-x64": [ + "0.19.8" + ], + "@esbuild/netbsd-x64": [ + "0.19.8" + ], + "@esbuild/openbsd-x64": [ + "0.19.8" + ], + "@esbuild/sunos-x64": [ + "0.19.8" + ], + "@esbuild/win32-arm64": [ + "0.19.8" + ], + "@esbuild/win32-ia32": [ + "0.19.8" + ], + "@esbuild/win32-x64": [ + "0.19.8" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@polka/url": [ + "1.0.0-next.25" + ], + "@rollup/rollup-android-arm-eabi": [ + "4.6.1" + ], + "@rollup/rollup-android-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-arm64": [ + "4.6.1" + ], + "@rollup/rollup-darwin-x64": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm-gnueabihf": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-arm64-musl": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-gnu": [ + "4.6.1" + ], + "@rollup/rollup-linux-x64-musl": [ + "4.6.1" + ], + "@rollup/rollup-win32-arm64-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-ia32-msvc": [ + "4.6.1" + ], + "@rollup/rollup-win32-x64-msvc": [ + "4.6.1" + ], + "@sveltejs/adapter-auto": [ + "3.1.1_at_sveltejs_kit_2.5.3" + ], + "@sveltejs/kit": [ + "2.5.3_5236015" + ], + "@sveltejs/vite-plugin-svelte": [ + "3.0.2_-1934338050" + ], + "@sveltejs/vite-plugin-svelte-inspector": [ + "2.0.0_5236015" + ], + "@types/cookie": [ + "0.6.0" + ], + "@types/estree": [ + "1.0.5" + ], + "acorn": [ + "8.11.3" + ], + "acorn-typescript": [ + "1.4.13_acorn_8.11.3" + ], + "aria-query": [ + "5.3.0" + ], + "axobject-query": [ + "4.0.0" + ], + "cookie": [ + "0.6.0" + ], + "debug": [ + "4.3.4" + ], + "deepmerge": [ + "4.3.1" + ], + "dequal": [ + "2.0.3" + ], + "devalue": [ + "4.3.2" + ], + "esbuild": [ + "0.19.8" + ], + "esm-env": [ + "1.0.0" + ], + "esrap": [ + "1.2.1" + ], + "fsevents": [ + "2.3.3" + ], + "globalyzer": [ + "0.1.0" + ], + "globrex": [ + "0.1.2" + ], + "import-meta-resolve": [ + "4.0.0" + ], + "is-reference": [ + "3.0.2" + ], + "kleur": [ + "4.1.5" + ], + "locate-character": [ + "3.0.0" + ], + "magic-string": [ + "0.30.5" + ], + "mri": [ + "1.2.0" + ], + "mrmime": [ + "2.0.0" + ], + "ms": [ + "2.1.2" + ], + "nanoid": [ + "3.3.7" + ], + "picocolors": [ + "1.0.0" + ], + "postcss": [ + "8.4.35" + ], + "rollup": [ + "4.6.1" + ], + "sade": [ + "1.8.1" + ], + "set-cookie-parser": [ + "2.6.0" + ], + "sirv": [ + "2.0.4" + ], + "source-map-js": [ + "1.0.2" + ], + "svelte": [ + "5.0.0-next.75" + ], + "svelte-hmr": [ + "0.15.3_svelte_5.0.0-next.75" + ], + "tiny-glob": [ + "0.2.9" + ], + "totalist": [ + "3.0.1" + ], + "vite": [ + "5.1.6" + ], + "vitefu": [ + "0.2.5_vite_5.1.6" + ], + "zimmerframe": [ + "1.1.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__jest-circus__29.7.0__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "jest-circus", + "version": "29.7.0", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@jest/environment": "29.7.0", + "@jest/expect": "29.7.0", + "@jest/test-result": "29.7.0", + "@jest/types": "29.6.3", + "@types/node": "18.19.18", + "chalk": "4.1.2", + "co": "4.6.0", + "dedent": "1.5.1", + "is-generator-fn": "2.1.0", + "jest-each": "29.7.0", + "jest-matcher-utils": "29.7.0", + "jest-message-util": "29.7.0", + "jest-runtime": "29.7.0", + "jest-snapshot": "29.7.0", + "jest-util": "29.7.0", + "p-limit": "3.1.0", + "pretty-format": "29.7.0", + "pure-rand": "6.0.4", + "slash": "3.0.0", + "stack-utils": "2.0.6" + }, + "transitive_closure": { + "@ampproject/remapping": [ + "2.2.1" + ], + "@babel/code-frame": [ + "7.23.5" + ], + "@babel/compat-data": [ + "7.23.5" + ], + "@babel/core": [ + "7.23.5" + ], + "@babel/generator": [ + "7.23.5" + ], + "@babel/helper-compilation-targets": [ + "7.22.15" + ], + "@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.23.3_at_babel_core_7.23.5" + ], + "@babel/helper-plugin-utils": [ + "7.22.5" + ], + "@babel/helper-simple-access": [ + "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/helper-validator-option": [ + "7.23.5" + ], + "@babel/helpers": [ + "7.23.5" + ], + "@babel/highlight": [ + "7.23.4" + ], + "@babel/parser": [ + "7.23.5" + ], + "@babel/plugin-syntax-async-generators": [ + "7.8.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-bigint": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-class-properties": [ + "7.12.13_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-import-meta": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-json-strings": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-jsx": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-logical-assignment-operators": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-nullish-coalescing-operator": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-numeric-separator": [ + "7.10.4_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-object-rest-spread": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-catch-binding": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-optional-chaining": [ + "7.8.3_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-top-level-await": [ + "7.14.5_at_babel_core_7.23.5" + ], + "@babel/plugin-syntax-typescript": [ + "7.22.5_at_babel_core_7.23.5" + ], + "@babel/template": [ + "7.22.15" + ], + "@babel/traverse": [ + "7.23.5" + ], + "@babel/types": [ + "7.23.5" + ], + "@istanbuljs/load-nyc-config": [ + "1.1.0" + ], + "@istanbuljs/schema": [ + "0.1.3" + ], + "@jest/console": [ + "29.7.0" + ], + "@jest/environment": [ + "29.7.0" + ], + "@jest/expect": [ + "29.7.0" + ], + "@jest/expect-utils": [ + "29.7.0" + ], + "@jest/fake-timers": [ + "29.7.0" + ], + "@jest/globals": [ + "29.7.0" + ], + "@jest/schemas": [ + "29.6.3" + ], + "@jest/source-map": [ + "29.6.3" + ], + "@jest/test-result": [ + "29.7.0" + ], + "@jest/transform": [ + "29.7.0" + ], + "@jest/types": [ + "29.6.3" + ], + "@jridgewell/gen-mapping": [ + "0.3.3" + ], + "@jridgewell/resolve-uri": [ + "3.1.1" + ], + "@jridgewell/set-array": [ + "1.1.2" + ], + "@jridgewell/sourcemap-codec": [ + "1.4.15" + ], + "@jridgewell/trace-mapping": [ + "0.3.19" + ], + "@sinclair/typebox": [ + "0.27.8" + ], + "@sinonjs/commons": [ + "3.0.0" + ], + "@sinonjs/fake-timers": [ + "10.3.0" + ], + "@types/graceful-fs": [ + "4.1.7" + ], + "@types/istanbul-lib-coverage": [ + "2.0.4" + ], + "@types/istanbul-lib-report": [ + "3.0.1" + ], + "@types/istanbul-reports": [ + "3.0.2" + ], + "@types/node": [ + "18.19.18" + ], + "@types/stack-utils": [ + "2.0.1" + ], + "@types/yargs": [ + "17.0.26" + ], + "@types/yargs-parser": [ + "21.0.1" + ], + "ansi-styles": [ + "3.2.1", + "4.3.0", + "5.2.0" + ], + "anymatch": [ + "3.1.3" + ], + "argparse": [ + "1.0.10" + ], + "babel-plugin-istanbul": [ + "6.1.1" + ], + "babel-preset-current-node-syntax": [ + "1.0.1_at_babel_core_7.23.5" + ], + "balanced-match": [ + "1.0.2" + ], + "brace-expansion": [ + "1.1.11" + ], + "braces": [ + "3.0.2" + ], + "browserslist": [ + "4.22.2" + ], + "bser": [ + "2.1.1" + ], + "callsites": [ + "3.1.0" + ], + "camelcase": [ + "5.3.1", + "6.3.0" + ], + "caniuse-lite": [ + "1.0.30001566" + ], + "chalk": [ + "2.4.2", + "4.1.2" + ], + "ci-info": [ + "3.8.0" + ], + "cjs-module-lexer": [ + "1.2.3" + ], + "co": [ + "4.6.0" + ], + "collect-v8-coverage": [ + "1.0.2" + ], + "color-convert": [ + "1.9.3", + "2.0.1" + ], + "color-name": [ + "1.1.3", + "1.1.4" + ], + "concat-map": [ + "0.0.1" + ], + "convert-source-map": [ + "2.0.0" + ], + "debug": [ + "4.3.4" + ], + "dedent": [ + "1.5.1" + ], + "diff-sequences": [ + "29.6.3" + ], + "electron-to-chromium": [ + "1.4.608" + ], + "escalade": [ + "3.1.1" + ], + "escape-string-regexp": [ + "1.0.5", + "2.0.0" + ], + "esprima": [ + "4.0.1" + ], + "expect": [ + "29.7.0" + ], + "fast-json-stable-stringify": [ + "2.1.0" + ], + "fb-watchman": [ + "2.0.2" + ], + "fill-range": [ + "7.0.1" + ], + "find-up": [ + "4.1.0" + ], + "fs.realpath": [ + "1.0.0" + ], + "fsevents": [ + "2.3.3" + ], + "function-bind": [ + "1.1.1" + ], + "gensync": [ + "1.0.0-beta.2" + ], + "get-package-type": [ + "0.1.0" + ], + "glob": [ + "7.2.3" + ], + "globals": [ + "11.12.0" + ], + "graceful-fs": [ + "4.2.11" + ], + "has": [ + "1.0.3" + ], + "has-flag": [ + "3.0.0", + "4.0.0" + ], + "imurmurhash": [ + "0.1.4" + ], + "inflight": [ + "1.0.6" + ], + "inherits": [ + "2.0.4" + ], + "is-core-module": [ + "2.13.0" + ], + "is-generator-fn": [ + "2.1.0" + ], + "is-number": [ + "7.0.0" + ], + "istanbul-lib-coverage": [ + "3.2.0" + ], + "istanbul-lib-instrument": [ + "5.2.1" + ], + "jest-circus": [ + "29.7.0" + ], + "jest-diff": [ + "29.7.0" + ], + "jest-each": [ + "29.7.0" + ], + "jest-get-type": [ + "29.6.3" + ], + "jest-haste-map": [ + "29.7.0" + ], + "jest-matcher-utils": [ + "29.7.0" + ], + "jest-message-util": [ + "29.7.0" + ], + "jest-mock": [ + "29.7.0" + ], + "jest-pnp-resolver": [ + "1.2.3_jest-resolve_29.7.0" + ], + "jest-regex-util": [ + "29.6.3" + ], + "jest-resolve": [ + "29.7.0" + ], + "jest-runtime": [ + "29.7.0" + ], + "jest-snapshot": [ + "29.7.0" + ], + "jest-util": [ + "29.7.0" + ], + "jest-validate": [ + "29.7.0" + ], + "jest-worker": [ + "29.7.0" + ], + "js-tokens": [ + "4.0.0" + ], + "js-yaml": [ + "3.14.1" + ], + "jsesc": [ + "2.5.2" + ], + "json5": [ + "2.2.3" + ], + "leven": [ + "3.1.0" + ], + "locate-path": [ + "5.0.0" + ], + "lru-cache": [ + "5.1.1", + "6.0.0" + ], + "makeerror": [ + "1.0.12" + ], + "merge-stream": [ + "2.0.0" + ], + "micromatch": [ + "4.0.5" + ], + "minimatch": [ + "3.1.2" + ], + "ms": [ + "2.1.2" + ], + "natural-compare": [ + "1.4.0" + ], + "node-int64": [ + "0.4.0" + ], + "node-releases": [ + "2.0.14" + ], + "normalize-path": [ + "3.0.0" + ], + "once": [ + "1.4.0" + ], + "p-limit": [ + "2.3.0", + "3.1.0" + ], + "p-locate": [ + "4.1.0" + ], + "p-try": [ + "2.2.0" + ], + "path-exists": [ + "4.0.0" + ], + "path-is-absolute": [ + "1.0.1" + ], + "path-parse": [ + "1.0.7" + ], + "picocolors": [ + "1.0.0" + ], + "picomatch": [ + "2.3.1" + ], + "pirates": [ + "4.0.6" + ], + "pretty-format": [ + "29.7.0" + ], + "pure-rand": [ + "6.0.4" + ], + "react-is": [ + "18.2.0" + ], + "resolve": [ + "1.22.6" + ], + "resolve-from": [ + "5.0.0" + ], + "resolve.exports": [ + "2.0.2" + ], + "semver": [ + "6.3.1", + "7.5.4" + ], + "signal-exit": [ + "3.0.7" + ], + "slash": [ + "3.0.0" + ], + "sprintf-js": [ + "1.0.3" + ], + "stack-utils": [ + "2.0.6" + ], + "strip-bom": [ + "4.0.0" + ], + "supports-color": [ + "5.5.0", + "7.2.0", + "8.1.1" + ], + "supports-preserve-symlinks-flag": [ + "1.0.0" + ], + "test-exclude": [ + "6.0.0" + ], + "tmpl": [ + "1.0.5" + ], + "to-fast-properties": [ + "2.0.0" + ], + "to-regex-range": [ + "5.0.1" + ], + "type-detect": [ + "4.0.8" + ], + "undici-types": [ + "5.26.5" + ], + "update-browserslist-db": [ + "1.0.13_browserslist_4.22.2" + ], + "walker": [ + "1.0.8" + ], + "wrappy": [ + "1.0.2" + ], + "write-file-atomic": [ + "4.0.2" + ], + "yallist": [ + "3.1.1", + "4.0.0" + ], + "yocto-queue": [ + "0.1.0" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__source-map-resolve__0.5.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "source-map-resolve", + "version": "0.5.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "url": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.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": false + } + }, + "npm__tiny-glob__0.2.9": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "tiny-glob", + "version": "0.2.9", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", + "url": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.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": false + } + }, + "npm__sprintf-js__1.0.3": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sprintf-js", + "version": "1.0.3", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "url": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-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": false + } + }, + "npm__at_jest_core__29.7.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@jest/core", + "version": "29.7.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "url": "https://registry.npmjs.org/@jest/core/-/core-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": false + } + }, + "npm__axe-core__4.8.2__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "axe-core", + "version": "4.8.2", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "axe-core": [ + "4.8.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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.2.1" + ], + "has": [ + "1.0.3" + ], + "has-proto": [ + "1.0.1" + ], + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_types_istanbul-reports__1.1.2": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@types/istanbul-reports", + "version": "1.1.2", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "url": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-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": false + } + }, + "npm__has-proto__1.0.1": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "has-proto", + "version": "1.0.1", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "url": "https://registry.npmjs.org/has-proto/-/has-proto-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": false + } + }, + "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": false + } + }, + "npm__sorcery__0.11.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "sorcery", + "version": "0.11.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==", + "url": "https://registry.npmjs.org/sorcery/-/sorcery-0.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": false + } + }, + "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": false + } + }, + "npm__at_babel_plugin-transform-object-rest-spread__7.23.4__at_babel_core_7.23.5": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@babel/plugin-transform-object-rest-spread", + "version": "7.23.4_at_babel_core_7.23.5", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "url": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-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": false + } + }, + "npm__at_vue_compiler-core__3.2.45": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@vue/compiler-core", + "version": "3.2.45", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==", + "url": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.45.tgz", + "commit": "", + "patch_args": [], + "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__html-webpack-plugin__5.5.3__webpack_5.89.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "html-webpack-plugin", + "version": "5.5.3_webpack_5.89.0", + "root_package": "", + "link_workspace": "", + "link_packages": { + "react-webpack": [ + "html-webpack-plugin" + ] + }, + "integrity": "sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==", + "url": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.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": false + } + }, + "npm__source-map__0.6.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "source-map", + "version": "0.6.1", + "dev": false, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "source-map": [ + "0.6.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__html-tags__3.3.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "html-tags", + "version": "3.3.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "html-tags": [ + "3.3.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__pkg-dir__4.2.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "pkg-dir", + "version": "4.2.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "url": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-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": false + } + }, + "npm__at_webassemblyjs_wasm-parser__1.11.6__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "@webassemblyjs/wasm-parser", + "version": "1.11.6", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + }, + "transitive_closure": { + "@webassemblyjs/ast": [ + "1.11.6" + ], + "@webassemblyjs/floating-point-hex-parser": [ + "1.11.6" + ], + "@webassemblyjs/helper-api-error": [ + "1.11.6" + ], + "@webassemblyjs/helper-numbers": [ + "1.11.6" + ], + "@webassemblyjs/helper-wasm-bytecode": [ + "1.11.6" + ], + "@webassemblyjs/ieee754": [ + "1.11.6" + ], + "@webassemblyjs/leb128": [ + "1.11.6" + ], + "@webassemblyjs/utf8": [ + "1.11.6" + ], + "@webassemblyjs/wasm-parser": [ + "1.11.6" + ], + "@xtuc/ieee754": [ + "1.2.0" + ], + "@xtuc/long": [ + "4.2.2" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__debug__3.2.7__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "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": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__wildcard__2.0.1__links": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_links", + "attributes": { + "package": "wildcard", + "version": "2.0.1", + "dev": true, + "root_package": "", + "link_packages": {}, + "deps": {}, + "transitive_closure": { + "wildcard": [ + "2.0.1" + ] + }, + "lifecycle_build_target": false, + "lifecycle_hooks_env": [], + "lifecycle_hooks_execution_requirements": [], + "lifecycle_hooks_use_default_shell_env": false, + "bins": {}, + "npm_translate_lock_repo": "npm", + "package_visibility": [ + "//visibility:public" + ], + "replace_package": "" + } + }, + "npm__at_webassemblyjs_helper-wasm-section__1.11.6": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "@webassemblyjs/helper-wasm-section", + "version": "1.11.6", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "url": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.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": false + } + }, + "npm__shebang-regex__1.0.0": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "shebang-regex", + "version": "1.0.0", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "url": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-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": false + } + }, + "npm__symbol-tree__3.2.4": { + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl", + "ruleClassName": "npm_import_rule", + "attributes": { + "package": "symbol-tree", + "version": "3.2.4", + "root_package": "", + "link_workspace": "", + "link_packages": {}, + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "url": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-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": false + } + }, + "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": false + } + } + }, + "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" + ], + [ + "aspect_rules_js~", + "yq_linux_amd64", + "aspect_bazel_lib~~toolchains~yq_linux_amd64" + ] + ] + } + }, + "@@aspect_rules_swc~//swc:extensions.bzl%swc": { + "general": { + "bzlTransitiveDigest": "1DcCNNvYR585lyLUgtEZUorWa2tl/hDhyuH1O42syzw=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "swc_linux-arm64-gnu": { + "bzlFile": "@@aspect_rules_swc~//swc:repositories.bzl", + "ruleClassName": "swc_repositories", + "attributes": { + "platform": "linux-arm64-gnu", + "swc_version": "v1.3.75" + } + }, + "swc_win32-ia32-msvc": { + "bzlFile": "@@aspect_rules_swc~//swc:repositories.bzl", + "ruleClassName": "swc_repositories", + "attributes": { + "platform": "win32-ia32-msvc", + "swc_version": "v1.3.75" + } + }, + "swc_toolchains": { + "bzlFile": "@@aspect_rules_swc~//swc/private:toolchains_repo.bzl", + "ruleClassName": "toolchains_repo", + "attributes": { + "user_repository_name": "swc" + } + }, + "swc_win32-arm64-msvc": { + "bzlFile": "@@aspect_rules_swc~//swc:repositories.bzl", + "ruleClassName": "swc_repositories", + "attributes": { + "platform": "win32-arm64-msvc", + "swc_version": "v1.3.75" + } + }, + "swc_darwin-x64": { + "bzlFile": "@@aspect_rules_swc~//swc:repositories.bzl", + "ruleClassName": "swc_repositories", + "attributes": { + "platform": "darwin-x64", + "swc_version": "v1.3.75" + } + }, + "swc_linux-x64-gnu": { + "bzlFile": "@@aspect_rules_swc~//swc:repositories.bzl", + "ruleClassName": "swc_repositories", + "attributes": { + "platform": "linux-x64-gnu", + "swc_version": "v1.3.75" + } + }, + "swc_win32-x64-msvc": { + "bzlFile": "@@aspect_rules_swc~//swc:repositories.bzl", + "ruleClassName": "swc_repositories", + "attributes": { + "platform": "win32-x64-msvc", + "swc_version": "v1.3.75" + } + }, + "swc_darwin-arm64": { + "bzlFile": "@@aspect_rules_swc~//swc:repositories.bzl", + "ruleClassName": "swc_repositories", + "attributes": { + "platform": "darwin-arm64", + "swc_version": "v1.3.75" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "aspect_rules_swc~", + "bazel_skylib", + "bazel_skylib~" + ] + ] + } + }, + "@@aspect_rules_ts~//ts:extensions.bzl%ext": { + "general": { + "bzlTransitiveDigest": "4Urw+Miwgd1K0ogUDi3ibUllAQ0CgAdA8Gz7qbsMCz0=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "npm_typescript": { + "bzlFile": "@@aspect_rules_ts~//ts/private:npm_repositories.bzl", + "ruleClassName": "http_archive_version", + "attributes": { + "bzlmod": true, + "check_for_updates": true, + "version": "5.3.3", + "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": [ + [ + "aspect_rules_ts~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@bazel_features~//private:extensions.bzl%version_extension": { + "general": { + "bzlTransitiveDigest": "LKmXjK1avT44pRhO3x6Hplu1mU9qrNOaHP+/tJ0VFfE=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "bazel_features_version": { + "bzlFile": "@@bazel_features~//private:version_repo.bzl", + "ruleClassName": "version_repo", + "attributes": {} + }, + "bazel_features_globals": { + "bzlFile": "@@bazel_features~//private:globals_repo.bzl", + "ruleClassName": "globals_repo", + "attributes": { + "globals": { + "RunEnvironmentInfo": "5.3.0", + "DefaultInfo": "0.0.1", + "__TestingOnly_NeverAvailable": "1000000000.0.0" + } + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": { + "general": { + "bzlTransitiveDigest": "PHpT2yqMGms2U4L3E/aZ+WcQalmZWm+ILdP3yiLsDhA=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_cc": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf", + "attributes": {} + }, + "local_config_cc_toolchains": { + "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl", + "ruleClassName": "cc_autoconf_toolchains", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [ + [ + "bazel_tools", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@bazel_tools//tools/osx:xcode_configure.bzl%xcode_configure_extension": { + "general": { + "bzlTransitiveDigest": "Qh2bWTU6QW6wkrd87qrU4YeY+SG37Nvw3A0PR4Y0L2Y=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_xcode": { + "bzlFile": "@@bazel_tools//tools/osx:xcode_configure.bzl", + "ruleClassName": "xcode_autoconf", + "attributes": { + "xcode_locator": "@bazel_tools//tools/osx:xcode_locator.m", + "remote_xcode": "" + } + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": { + "general": { + "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "local_config_sh": { + "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl", + "ruleClassName": "sh_config", + "attributes": {} + } + }, + "recordedRepoMappingEntries": [] + } + }, + "@@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_go~//go:extensions.bzl%go_sdk": { + "general": { + "bzlTransitiveDigest": "k4MEsADgBfRC+sbMqB3lZL0JpdsCxlwSYO+z9zn9Y80=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "go_default_sdk": { + "bzlFile": "@@rules_go~//go/private:sdk.bzl", + "ruleClassName": "go_download_sdk_rule", + "attributes": { + "goos": "", + "goarch": "", + "sdks": {}, + "urls": [ + "https://dl.google.com/go/{}" + ], + "version": "1.19.8" + } + }, + "go_toolchains": { + "bzlFile": "@@rules_go~//go/private:sdk.bzl", + "ruleClassName": "go_multiple_toolchains", + "attributes": { + "prefixes": [ + "_0000_go_default_sdk_" + ], + "geese": [ + "" + ], + "goarchs": [ + "" + ], + "sdk_repos": [ + "go_default_sdk" + ], + "sdk_types": [ + "remote" + ], + "sdk_versions": [ + "1.19.8" + ] + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_go~", + "bazel_tools", + "bazel_tools" + ] + ] + } + }, + "@@rules_java~//java:extensions.bzl%toolchains": { + "general": { + "bzlTransitiveDigest": "tJHbmWnq7m+9eUBnUdv7jZziQ26FmcGL9C5/hU3Q9UQ=", + "recordedFileInputs": {}, + "recordedDirentsInputs": {}, + "envVariables": {}, + "generatedRepoSpecs": { + "remotejdk21_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk21_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "e8260516de8b60661422a725f1df2c36ef888f6fb35393566b00e7325db3d04e", + "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz" + ] + } + }, + "remote_java_tools_windows": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "fe2f88169696d6c6fc6e90ba61bb46be7d0ae3693cbafdf336041bf56679e8d1", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_windows-v13.4.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_windows-v13.4.zip" + ] + } + }, + "remotejdk11_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip" + ] + } + }, + "remotejdk11_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_linux_s390x_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n" + } + }, + "remotejdk11_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz" + ] + } + }, + "remotejdk11_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2", + "strip_prefix": "jdk-11.0.13+8", + "urls": [ + "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip" + ] + } + }, + "remotejdk17_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "3ad8fe288eb57d975c2786ae453a036aa46e47ab2ac3d81538ebae2a54d3c025", + "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-macosx_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_x64.tar.gz" + ] + } + }, + "remotejdk21_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk17_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip" + ] + } + }, + "remotejdk11_macos_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk21_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "5ad730fbee6bb49bfff10bf39e84392e728d89103d3474a7e5def0fd134b300a", + "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_x64.tar.gz" + ] + } + }, + "remote_java_tools_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "ba10f09a138cf185d04cbc807d67a3da42ab13d618c5d1ce20d776e199c33a39", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_linux-v13.4.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_linux-v13.4.zip" + ] + } + }, + "remotejdk21_win": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "f7cc15ca17295e69c907402dfe8db240db446e75d3b150da7bf67243cded93de", + "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-win_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-win_x64.zip", + "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-win_x64.zip" + ] + } + }, + "remotejdk21_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n", + "sha256": "ce7df1af5d44a9f455617c4b8891443fbe3e4b269c777d8b82ed66f77167cfe0", + "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-linux_aarch64", + "urls": [ + "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz", + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk11_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk17_linux_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz" + ] + } + }, + "remotejdk17_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n" + } + }, + "remotejdk11_linux": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz" + ] + } + }, + "remotejdk11_macos_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n" + } + }, + "remotejdk17_linux_ppc64le_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n" + } + }, + "remotejdk17_win_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85", + "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip", + "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip" + ] + } + }, + "remote_java_tools_darwin_arm64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "076a7e198ad077f8c7d997986ef5102427fae6bbfce7a7852d2e080ed8767528", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_darwin_arm64-v13.4.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_darwin_arm64-v13.4.zip" + ] + } + }, + "remotejdk17_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk21_linux_aarch64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n" + } + }, + "remotejdk11_win_arm64_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n" + } + }, + "local_jdk": { + "bzlFile": "@@rules_java~//toolchains:local_java_repository.bzl", + "ruleClassName": "_local_java_repository_rule", + "attributes": { + "java_home": "", + "version": "", + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n" + } + }, + "remote_java_tools_darwin_x86_64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "4523aec4d09c587091a2dae6f5c9bc6922c220f3b6030e5aba9c8f015913cc65", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_darwin_x86_64-v13.4.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_darwin_x86_64-v13.4.zip" + ] + } + }, + "remote_java_tools": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "sha256": "e025fd260ac39b47c111f5212d64ec0d00d85dec16e49368aae82fc626a940cf", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools-v13.4.zip", + "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools-v13.4.zip" + ] + } + }, + "remotejdk17_linux_s390x": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n", + "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37", + "strip_prefix": "jdk-17.0.8.1+1", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz", + "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz" + ] + } + }, + "remotejdk17_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n" + } + }, + "remotejdk11_linux_ppc64le": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f", + "strip_prefix": "jdk-11.0.15+10", + "urls": [ + "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz", + "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz" + ] + } + }, + "remotejdk11_macos_aarch64": { + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl", + "ruleClassName": "http_archive", + "attributes": { + "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n", + "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885", + "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64", + "urls": [ + "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz", + "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz" + ] + } + }, + "remotejdk21_win_toolchain_config_repo": { + "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl", + "ruleClassName": "_toolchain_config", + "attributes": { + "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_java~", + "bazel_tools", + "bazel_tools" + ], + [ + "rules_java~", + "remote_java_tools", + "rules_java~~toolchains~remote_java_tools" + ] + ] + } + }, + "@@rules_nodejs~//nodejs:extensions.bzl%node": { + "general": { + "bzlTransitiveDigest": "1HxpI0AgCvpGfUCJicdseptT6HrlCwj+F0XM5ewp5Ts=", + "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.19.0" + } + }, + "nodejs_windows_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "windows_amd64", + "node_version": "16.19.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.19.0" + } + }, + "nodejs_linux_ppc64le": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_ppc64le", + "node_version": "16.19.0" + } + }, + "nodejs_darwin_amd64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "darwin_amd64", + "node_version": "16.19.0" + } + }, + "nodejs_linux_arm64": { + "bzlFile": "@@rules_nodejs~//nodejs:repositories.bzl", + "ruleClassName": "node_repositories", + "attributes": { + "platform": "linux_arm64", + "node_version": "16.19.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.19.0" + } + } + }, + "recordedRepoMappingEntries": [ + [ + "rules_nodejs~", + "bazel_skylib", + "bazel_skylib~" + ], + [ + "rules_nodejs~", + "bazel_tools", + "bazel_tools" + ] + ] + } + } + } +} diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml index 3371c073f..49550cb5e 100644 --- a/frontend/pnpm-lock.yaml +++ b/frontend/pnpm-lock.yaml @@ -126,16 +126,16 @@ importers: version: 18.2.0 '@typescript-eslint/eslint-plugin': specifier: 5.44.0 - version: 5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.55.0)(typescript@4.9.3) + version: 5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.57.0)(typescript@4.9.3) '@typescript-eslint/parser': specifier: 5.44.0 - version: 5.44.0(eslint@8.55.0)(typescript@4.9.3) + version: 5.44.0(eslint@8.57.0)(typescript@4.9.3) '@vitejs/plugin-react': specifier: ^4.2.0 version: 4.2.0(vite@3.2.8) eslint-config-react-app: specifier: ^7.0.1 - version: 7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.55.0)(typescript@4.9.3) + version: 7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(typescript@4.9.3) jest-environment-jsdom: specifier: 29.3.1 version: 29.3.1 @@ -185,6 +185,72 @@ importers: specifier: 4.15.1 version: 4.15.1(webpack-cli@5.1.4)(webpack@5.89.0) + sveltekit_ts: + devDependencies: + '@fontsource/fira-mono': + specifier: ^5.0.12 + version: 5.0.12 + '@neoconfetti/svelte': + specifier: ^2.2.1 + version: 2.2.1 + '@playwright/test': + specifier: ^1.42.1 + version: 1.42.1 + '@sveltejs/adapter-auto': + specifier: ^3.1.1 + version: 3.1.1(@sveltejs/kit@2.5.3) + '@sveltejs/kit': + specifier: ^2.5.3 + version: 2.5.3(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@5.0.0-next.75)(vite@5.1.6) + '@sveltejs/vite-plugin-svelte': + specifier: ^3.0.2 + version: 3.0.2(svelte@5.0.0-next.75)(vite@5.1.6) + '@types/eslint': + specifier: ^8.56.5 + version: 8.56.5 + '@typescript-eslint/eslint-plugin': + specifier: ^7.2.0 + version: 7.2.0(@typescript-eslint/parser@7.2.0)(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/parser': + specifier: ^7.2.0 + version: 7.2.0(eslint@8.57.0)(typescript@5.4.2) + eslint: + specifier: ^8.57.0 + version: 8.57.0 + eslint-config-prettier: + specifier: ^9.1.0 + version: 9.1.0(eslint@8.57.0) + eslint-plugin-svelte: + specifier: 2.36.0-next.10 + version: 2.36.0-next.10(eslint@8.57.0)(svelte@5.0.0-next.75) + prettier: + specifier: ^3.2.5 + version: 3.2.5 + prettier-plugin-svelte: + specifier: ^3.2.2 + version: 3.2.2(prettier@3.2.5)(svelte@5.0.0-next.75) + svelte: + specifier: 5.0.0-next.75 + version: 5.0.0-next.75 + svelte-check: + specifier: ^3.6.6 + version: 3.6.6(postcss@8.4.35)(svelte@5.0.0-next.75) + tsconfig-to-swcconfig: + specifier: ^2.7.0 + version: 2.7.0 + tslib: + specifier: ^2.6.2 + version: 2.6.2 + typescript: + specifier: ^5.4.2 + version: 5.4.2 + vite: + specifier: ^5.1.6 + version: 5.1.6 + vitest: + specifier: ^1.3.1 + version: 1.3.1(jsdom@23.0.1) + vue: dependencies: '@bazel-example/vue-library': @@ -321,7 +387,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser@7.23.3(@babel/core@7.23.5)(eslint@8.55.0): + /@babel/eslint-parser@7.23.3(@babel/core@7.23.5)(eslint@8.57.0): resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: @@ -330,7 +396,7 @@ packages: dependencies: '@babel/core': 7.23.5 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.55.0 + eslint: 8.57.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 dev: true @@ -2247,6 +2313,16 @@ packages: eslint-visitor-keys: 3.4.3 dev: true + /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.57.0 + eslint-visitor-keys: 3.4.3 + dev: true + /@eslint-community/regexpp@4.10.0: resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -2291,10 +2367,19 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true + /@eslint/js@8.57.0: + resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /@fastify/deepmerge@1.3.0: resolution: {integrity: sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A==} dev: true + /@fontsource/fira-mono@5.0.12: + resolution: {integrity: sha512-1uFRjqCcxVv4F31PjyLm8o4oNlT5ywwh6OwcDGkZbafOeFZHXekvholS9IlfZkRsZvVhSbFRHT/5iDib4KTtpg==} + dev: true + /@humanwhocodes/config-array@0.11.11: resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} engines: {node: '>=10.10.0'} @@ -2317,6 +2402,17 @@ packages: - supports-color dev: true + /@humanwhocodes/config-array@0.11.14: + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 2.0.2 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + /@humanwhocodes/module-importer@1.0.1: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} @@ -2330,6 +2426,10 @@ packages: resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} dev: true + /@humanwhocodes/object-schema@2.0.2: + resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} + dev: true + /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -2605,6 +2705,10 @@ packages: resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} dev: true + /@neoconfetti/svelte@2.2.1: + resolution: {integrity: sha512-2Ts0Rxaf6clW2qG+AKhTwpl01AAyZEAe03XeuQ7Vp+qYIaM3ycuI94j546fmEkUxwACwGI3Zl2cZ/pncTuNcJg==} + dev: true + /@next/env@13.0.5: resolution: {integrity: sha512-F3KLtiDrUslAZhTYTh8Zk5ZaavbYwLUn3NYPBnOjAXU8hWm0QVGVzKIOuURQ098ofRU4e9oglf3Sj9pFx5nI5w==} @@ -2745,6 +2849,18 @@ packages: fastq: 1.15.0 dev: true + /@playwright/test@1.42.1: + resolution: {integrity: sha512-Gq9rmS54mjBL/7/MvBaNOBwbfnh7beHvS6oS4srqXFcQHpQCV1+c8JXWE8VLPyRDhgS3H8x8A7hztqI9VnwrAQ==} + engines: {node: '>=16'} + hasBin: true + dependencies: + playwright: 1.42.1 + dev: true + + /@polka/url@1.0.0-next.25: + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + dev: true + /@rollup/pluginutils@5.1.0: resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} @@ -2875,6 +2991,78 @@ packages: '@sinonjs/commons': 3.0.0 dev: true + /@sveltejs/adapter-auto@3.1.1(@sveltejs/kit@2.5.3): + resolution: {integrity: sha512-6LeZft2Fo/4HfmLBi5CucMYmgRxgcETweQl/yQoZo/895K3S9YWYN4Sfm/IhwlIpbJp3QNvhKmwCHbsqQNYQpw==} + peerDependencies: + '@sveltejs/kit': ^2.0.0 + dependencies: + '@sveltejs/kit': 2.5.3(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@5.0.0-next.75)(vite@5.1.6) + import-meta-resolve: 4.0.0 + dev: true + + /@sveltejs/kit@2.5.3(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@5.0.0-next.75)(vite@5.1.6): + resolution: {integrity: sha512-s6x7HBn/Fp+UNvyhJohjIA0FcJ+BWHGUDQ4PCg1D0EboUlvbimJQYchINu8G6sspLXYmlcsuNsp8bbcrRk85iw==} + engines: {node: '>=18.13'} + hasBin: true + requiresBuild: true + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^3.0.0 + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.3 + dependencies: + '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@5.0.0-next.75)(vite@5.1.6) + '@types/cookie': 0.6.0 + cookie: 0.6.0 + devalue: 4.3.2 + esm-env: 1.0.0 + import-meta-resolve: 4.0.0 + kleur: 4.1.5 + magic-string: 0.30.5 + mrmime: 2.0.0 + sade: 1.8.1 + set-cookie-parser: 2.6.0 + sirv: 2.0.4 + svelte: 5.0.0-next.75 + tiny-glob: 0.2.9 + vite: 5.1.6 + dev: true + + /@sveltejs/vite-plugin-svelte-inspector@2.0.0(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@5.0.0-next.75)(vite@5.1.6): + resolution: {integrity: sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==} + engines: {node: ^18.0.0 || >=20} + peerDependencies: + '@sveltejs/vite-plugin-svelte': ^3.0.0 + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.0 + dependencies: + '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@5.0.0-next.75)(vite@5.1.6) + debug: 4.3.4 + svelte: 5.0.0-next.75 + vite: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@sveltejs/vite-plugin-svelte@3.0.2(svelte@5.0.0-next.75)(vite@5.1.6): + resolution: {integrity: sha512-MpmF/cju2HqUls50WyTHQBZUV3ovV/Uk8k66AN2gwHogNAG8wnW8xtZDhzNBsFJJuvmq1qnzA5kE7YfMJNFv2Q==} + engines: {node: ^18.0.0 || >=20} + peerDependencies: + svelte: ^4.0.0 || ^5.0.0-next.0 + vite: ^5.0.0 + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 2.0.0(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@5.0.0-next.75)(vite@5.1.6) + debug: 4.3.4 + deepmerge: 4.3.1 + kleur: 4.1.5 + magic-string: 0.30.5 + svelte: 5.0.0-next.75 + svelte-hmr: 0.15.3(svelte@5.0.0-next.75) + vite: 5.1.6 + vitefu: 0.2.5(vite@5.1.6) + transitivePeerDependencies: + - supports-color + dev: true + /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.5): resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} engines: {node: '>=14'} @@ -3245,15 +3433,19 @@ packages: '@types/node': 18.19.18 dev: true + /@types/cookie@0.6.0: + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} + dev: true + /@types/eslint-scope@3.7.5: resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==} dependencies: - '@types/eslint': 8.44.3 + '@types/eslint': 8.56.5 '@types/estree': 1.0.2 dev: true - /@types/eslint@8.44.3: - resolution: {integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==} + /@types/eslint@8.56.5: + resolution: {integrity: sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==} dependencies: '@types/estree': 1.0.2 '@types/json-schema': 7.0.13 @@ -3263,6 +3455,10 @@ packages: resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==} dev: true + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + dev: true + /@types/express-serve-static-core@4.17.37: resolution: {integrity: sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==} dependencies: @@ -3381,6 +3577,10 @@ packages: resolution: {integrity: sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==} dev: true + /@types/pug@2.0.10: + resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} + dev: true + /@types/qs@6.9.8: resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==} dev: true @@ -3480,7 +3680,7 @@ packages: '@types/yargs-parser': 21.0.1 dev: true - /@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.55.0)(typescript@4.9.3): + /@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-j5ULd7FmmekcyWeArx+i8x7sdRHzAtXTkmDPthE4amxZOWKFK7bomoJ4r7PJ8K7PoMzD16U8MmuZFAonr1ERvw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3491,12 +3691,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.44.0(eslint@8.55.0)(typescript@4.9.3) + '@typescript-eslint/parser': 5.44.0(eslint@8.57.0)(typescript@4.9.3) '@typescript-eslint/scope-manager': 5.44.0 - '@typescript-eslint/type-utils': 5.44.0(eslint@8.55.0)(typescript@4.9.3) - '@typescript-eslint/utils': 5.44.0(eslint@8.55.0)(typescript@4.9.3) + '@typescript-eslint/type-utils': 5.44.0(eslint@8.57.0)(typescript@4.9.3) + '@typescript-eslint/utils': 5.44.0(eslint@8.57.0)(typescript@4.9.3) debug: 4.3.4 - eslint: 8.55.0 + eslint: 8.57.0 ignore: 5.2.4 natural-compare-lite: 1.4.0 regexpp: 3.2.0 @@ -3507,14 +3707,43 @@ packages: - supports-color dev: true - /@typescript-eslint/experimental-utils@5.62.0(eslint@8.55.0)(typescript@4.9.3): + /@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@7.2.0)(eslint@8.57.0)(typescript@5.4.2): + resolution: {integrity: sha512-mdekAHOqS9UjlmyF/LSs6AIEvfceV749GFxoBAjwAv0nkevfKHWQFDMcBZWUiIC5ft6ePWivXoS36aKQ0Cy3sw==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + '@typescript-eslint/parser': ^7.0.0 + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 7.2.0 + '@typescript-eslint/type-utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 7.2.0 + debug: 4.3.4 + eslint: 8.57.0 + graphemer: 1.4.0 + ignore: 5.2.4 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@4.9.3) - eslint: 8.55.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.3) + eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript @@ -3540,7 +3769,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@5.44.0(eslint@8.55.0)(typescript@4.9.3): + /@typescript-eslint/parser@5.44.0(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-H7LCqbZnKqkkgQHaKLGC6KUjt3pjJDx8ETDqmwncyb6PuoigYajyAwBGz08VU/l86dZWZgI4zm5k2VaKqayYyA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3554,12 +3783,33 @@ packages: '@typescript-eslint/types': 5.44.0 '@typescript-eslint/typescript-estree': 5.44.0(typescript@4.9.3) debug: 4.3.4 - eslint: 8.55.0 + eslint: 8.57.0 typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true + /@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.2): + resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 7.2.0 + '@typescript-eslint/types': 7.2.0 + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 7.2.0 + debug: 4.3.4 + eslint: 8.57.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/scope-manager@5.44.0: resolution: {integrity: sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3576,7 +3826,15 @@ packages: '@typescript-eslint/visitor-keys': 5.62.0 dev: true - /@typescript-eslint/type-utils@5.44.0(eslint@8.55.0)(typescript@4.9.3): + /@typescript-eslint/scope-manager@7.2.0: + resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==} + engines: {node: ^16.0.0 || >=18.0.0} + dependencies: + '@typescript-eslint/types': 7.2.0 + '@typescript-eslint/visitor-keys': 7.2.0 + dev: true + + /@typescript-eslint/type-utils@5.44.0(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-A1u0Yo5wZxkXPQ7/noGkRhV4J9opcymcr31XQtOzcc5nO/IHN2E2TPMECKWYpM3e6olWEM63fq/BaL1wEYnt/w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3587,15 +3845,35 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.44.0(typescript@4.9.3) - '@typescript-eslint/utils': 5.44.0(eslint@8.55.0)(typescript@4.9.3) + '@typescript-eslint/utils': 5.44.0(eslint@8.57.0)(typescript@4.9.3) debug: 4.3.4 - eslint: 8.55.0 + eslint: 8.57.0 tsutils: 3.21.0(typescript@4.9.3) typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true + /@typescript-eslint/type-utils@7.2.0(eslint@8.57.0)(typescript@5.4.2): + resolution: {integrity: sha512-xHi51adBHo9O9330J8GQYQwrKBqbIPJGZZVQTHHmy200hvkLZFWJIFtAG/7IYTWUyun6DE6w5InDReePJYJlJA==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.2) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.4.2) + debug: 4.3.4 + eslint: 8.57.0 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/types@5.44.0: resolution: {integrity: sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3606,6 +3884,11 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true + /@typescript-eslint/types@7.2.0: + resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==} + engines: {node: ^16.0.0 || >=18.0.0} + dev: true + /@typescript-eslint/typescript-estree@5.44.0(typescript@4.9.3): resolution: {integrity: sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3648,7 +3931,29 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@5.44.0(eslint@8.55.0)(typescript@4.9.3): + /@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.2): + resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 7.2.0 + '@typescript-eslint/visitor-keys': 7.2.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.44.0(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-fMzA8LLQ189gaBjS0MZszw5HBdZgVwxVFShCO3QN+ws3GlPkcy9YuS3U4wkT6su0w+Byjq3mS3uamy9HE4Yfjw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3659,28 +3964,28 @@ packages: '@typescript-eslint/scope-manager': 5.44.0 '@typescript-eslint/types': 5.44.0 '@typescript-eslint/typescript-estree': 5.44.0(typescript@4.9.3) - eslint: 8.55.0 + eslint: 8.57.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.55.0) + eslint-utils: 3.0.0(eslint@8.57.0) semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.55.0)(typescript@4.9.3): + /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.13 '@types/semver': 7.5.3 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.3) - eslint: 8.55.0 + eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: @@ -3688,6 +3993,25 @@ packages: - typescript dev: true + /@typescript-eslint/utils@7.2.0(eslint@8.57.0)(typescript@5.4.2): + resolution: {integrity: sha512-YfHpnMAGb1Eekpm3XRK8hcMwGLGsnT6L+7b2XyRv6ouDuJU1tZir1GS2i0+VXRatMwSI1/UfcyPe53ADkU+IuA==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^8.56.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.13 + '@types/semver': 7.5.3 + '@typescript-eslint/scope-manager': 7.2.0 + '@typescript-eslint/types': 7.2.0 + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.2) + eslint: 8.57.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + /@typescript-eslint/visitor-keys@5.44.0: resolution: {integrity: sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3704,6 +4028,14 @@ packages: eslint-visitor-keys: 3.4.3 dev: true + /@typescript-eslint/visitor-keys@7.2.0: + resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==} + engines: {node: ^16.0.0 || >=18.0.0} + dependencies: + '@typescript-eslint/types': 7.2.0 + eslint-visitor-keys: 3.4.3 + dev: true + /@ungap/structured-clone@1.2.0: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true @@ -3770,6 +4102,14 @@ packages: chai: 4.3.10 dev: true + /@vitest/expect@1.3.1: + resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==} + dependencies: + '@vitest/spy': 1.3.1 + '@vitest/utils': 1.3.1 + chai: 4.3.10 + dev: true + /@vitest/runner@1.0.2: resolution: {integrity: sha512-ZcHJXPT2kg/9Hc4fNkCbItlsgZSs3m4vQbxB8LCSdzpbG85bExCmSvu6K9lWpMNdoKfAr1Jn0BwS9SWUcGnbTQ==} dependencies: @@ -3778,6 +4118,14 @@ packages: pathe: 1.1.1 dev: true + /@vitest/runner@1.3.1: + resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==} + dependencies: + '@vitest/utils': 1.3.1 + p-limit: 5.0.0 + pathe: 1.1.1 + dev: true + /@vitest/snapshot@1.0.2: resolution: {integrity: sha512-9ClDz2/aV5TfWA4reV7XR9p+hE0e7bifhwxlURugj3Fw0YXeTFzHmKCNEHd6wOIFMfthbGGwhlq7TOJ2jDO4/g==} dependencies: @@ -3786,12 +4134,26 @@ packages: pretty-format: 29.7.0 dev: true + /@vitest/snapshot@1.3.1: + resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==} + dependencies: + magic-string: 0.30.5 + pathe: 1.1.1 + pretty-format: 29.7.0 + dev: true + /@vitest/spy@1.0.2: resolution: {integrity: sha512-YlnHmDntp+zNV3QoTVFI5EVHV0AXpiThd7+xnDEbWnD6fw0TH/J4/+3GFPClLimR39h6nA5m0W4Bjm5Edg4A/A==} dependencies: tinyspy: 2.2.0 dev: true + /@vitest/spy@1.3.1: + resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==} + dependencies: + tinyspy: 2.2.0 + dev: true + /@vitest/utils@1.0.2: resolution: {integrity: sha512-GPQkGHAnFAP/+seSbB9pCsj339yRrMgILoI5H2sPevTLCYgBq0VRjF8QSllmnQyvf0EontF6KUIt2t5s2SmqoQ==} dependencies: @@ -3800,6 +4162,15 @@ packages: pretty-format: 29.7.0 dev: true + /@vitest/utils@1.3.1: + resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==} + dependencies: + diff-sequences: 29.6.3 + estree-walker: 3.0.3 + loupe: 2.3.7 + pretty-format: 29.7.0 + dev: true + /@volar/language-core@1.0.9: resolution: {integrity: sha512-5Fty3slLet6svXiJw2YxhYeo6c7wFdtILrql5bZymYLM+HbiZtJbryW1YnUEKAP7MO9Mbeh+TNH4Z0HFxHgIqw==} dependencies: @@ -3936,7 +4307,7 @@ packages: '@vue/shared': 3.2.45 estree-walker: 2.0.2 magic-string: 0.25.9 - postcss: 8.4.31 + postcss: 8.4.32 source-map: 0.6.1 /@vue/compiler-sfc@3.3.4: @@ -4255,7 +4626,7 @@ packages: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: acorn: 8.10.0 - acorn-walk: 8.2.0 + acorn-walk: 8.3.1 dev: true /acorn-import-assertions@1.9.0(acorn@8.10.0): @@ -4274,9 +4645,12 @@ packages: acorn: 8.10.0 dev: true - /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: '>=0.4.0'} + /acorn-typescript@1.4.13(acorn@8.11.3): + resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==} + peerDependencies: + acorn: '>=8.9.0' + dependencies: + acorn: 8.11.3 dev: true /acorn-walk@8.3.1: @@ -4284,12 +4658,23 @@ packages: engines: {node: '>=0.4.0'} dev: true + /acorn-walk@8.3.2: + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + engines: {node: '>=0.4.0'} + dev: true + /acorn@8.10.0: resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} engines: {node: '>=0.4.0'} hasBin: true dev: true + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -4550,6 +4935,12 @@ packages: dequal: 2.0.3 dev: true + /axobject-query@4.0.0: + resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==} + dependencies: + dequal: 2.0.3 + dev: true + /babel-jest@29.7.0(@babel/core@7.23.0): resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4808,6 +5199,10 @@ packages: node-int64: 0.4.0 dev: true + /buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: true + /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} dev: true @@ -5075,6 +5470,11 @@ packages: engines: {node: '>= 0.6'} dev: true + /cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + dev: true + /core-js-compat@3.34.0: resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==} dependencies: @@ -5160,6 +5560,12 @@ packages: urix: 0.1.0 dev: true + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + /cssom@0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} dev: true @@ -5359,6 +5765,11 @@ packages: engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dev: true + /detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true + /detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} @@ -5368,6 +5779,10 @@ packages: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} dev: true + /devalue@4.3.2: + resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==} + dev: true + /diff-sequences@24.9.0: resolution: {integrity: sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==} engines: {node: '>= 6'} @@ -5625,6 +6040,10 @@ packages: is-symbol: 1.0.4 dev: true + /es6-promise@3.3.1: + resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + dev: true + /esbuild-android-64@0.15.18: resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} engines: {node: '>=12'} @@ -5899,6 +6318,16 @@ packages: source-map: 0.6.1 dev: true + /eslint-compat-utils@0.4.1(eslint@8.57.0): + resolution: {integrity: sha512-5N7ZaJG5pZxUeNNJfUchurLVrunD1xJvyg5kYOIVF8kg1f3ajTikmAu/5fZ9w100omNPOoMjngRszh/Q/uFGMg==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + eslint: 8.57.0 + semver: 7.6.0 + dev: true + /eslint-config-next@13.0.5(eslint@8.28.0)(next@13.0.5)(typescript@4.9.3): resolution: {integrity: sha512-lge94W7ME6kNCO96eCykq5GbKbllzmcDNDhh1/llMCRgNPl0+GIQ8dOoM0I7uRQVW56VmTXFybJFXgow11a5pg==} peerDependencies: @@ -5926,7 +6355,16 @@ packages: - supports-color dev: true - /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.55.0)(typescript@4.9.3): + /eslint-config-prettier@9.1.0(eslint@8.57.0): + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 8.57.0 + dev: true + + /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -5937,20 +6375,20 @@ packages: optional: true dependencies: '@babel/core': 7.23.5 - '@babel/eslint-parser': 7.23.3(@babel/core@7.23.5)(eslint@8.55.0) + '@babel/eslint-parser': 7.23.3(@babel/core@7.23.5)(eslint@8.57.0) '@rushstack/eslint-patch': 1.5.1 - '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.55.0)(typescript@4.9.3) - '@typescript-eslint/parser': 5.44.0(eslint@8.55.0)(typescript@4.9.3) + '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.57.0)(typescript@4.9.3) + '@typescript-eslint/parser': 5.44.0(eslint@8.57.0)(typescript@4.9.3) babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 - eslint: 8.55.0 - eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.55.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.44.0)(eslint@8.55.0) - eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.44.0)(eslint@8.55.0)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.55.0) - eslint-plugin-react: 7.33.2(eslint@8.55.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.55.0) - eslint-plugin-testing-library: 5.11.1(eslint@8.55.0)(typescript@4.9.3) + eslint: 8.57.0 + eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.44.0)(eslint@8.57.0) + eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.44.0)(eslint@8.57.0)(typescript@4.9.3) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.57.0) + eslint-plugin-react: 7.33.2(eslint@8.57.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) + eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@4.9.3) typescript: 4.9.3 transitivePeerDependencies: - '@babel/plugin-syntax-flow' @@ -6024,7 +6462,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-node@0.3.9)(eslint@8.55.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -6045,9 +6483,9 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.44.0(eslint@8.55.0)(typescript@4.9.3) + '@typescript-eslint/parser': 5.44.0(eslint@8.57.0)(typescript@4.9.3) debug: 3.2.7 - eslint: 8.55.0 + eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color @@ -6081,7 +6519,7 @@ packages: - supports-color dev: true - /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.55.0): + /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0): resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -6091,12 +6529,12 @@ packages: dependencies: '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.5) '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5) - eslint: 8.55.0 + eslint: 8.57.0 lodash: 4.17.21 string-natural-compare: 3.0.1 dev: true - /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.44.0)(eslint@8.55.0): + /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.44.0)(eslint@8.57.0): resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} engines: {node: '>=4'} peerDependencies: @@ -6106,16 +6544,16 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.44.0(eslint@8.55.0)(typescript@4.9.3) + '@typescript-eslint/parser': 5.44.0(eslint@8.57.0)(typescript@4.9.3) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.55.0 + eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-node@0.3.9)(eslint@8.55.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.44.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -6165,7 +6603,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.44.0)(eslint@8.55.0)(typescript@4.9.3): + /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.44.0)(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -6178,9 +6616,9 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.55.0)(typescript@4.9.3) - '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.55.0)(typescript@4.9.3) - eslint: 8.55.0 + '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0)(eslint@8.57.0)(typescript@4.9.3) + '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@4.9.3) + eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript @@ -6211,7 +6649,7 @@ packages: semver: 6.3.1 dev: true - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.55.0): + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.57.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -6226,7 +6664,7 @@ packages: axobject-query: 3.2.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.55.0 + eslint: 8.57.0 has: 1.0.3 jsx-ast-utils: 3.3.5 language-tags: 1.0.5 @@ -6245,13 +6683,13 @@ packages: eslint: 8.28.0 dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.55.0): + /eslint-plugin-react-hooks@4.6.0(eslint@8.57.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.55.0 + eslint: 8.57.0 dev: true /eslint-plugin-react@7.33.2(eslint@8.28.0): @@ -6279,7 +6717,7 @@ packages: string.prototype.matchall: 4.0.10 dev: true - /eslint-plugin-react@7.33.2(eslint@8.55.0): + /eslint-plugin-react@7.33.2(eslint@8.57.0): resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} peerDependencies: @@ -6290,7 +6728,7 @@ packages: array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 es-iterator-helpers: 1.0.15 - eslint: 8.55.0 + eslint: 8.57.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -6304,14 +6742,43 @@ packages: string.prototype.matchall: 4.0.10 dev: true - /eslint-plugin-testing-library@5.11.1(eslint@8.55.0)(typescript@4.9.3): + /eslint-plugin-svelte@2.36.0-next.10(eslint@8.57.0)(svelte@5.0.0-next.75): + resolution: {integrity: sha512-Dj4sxIJjcbTCqw/ATPmLOie9TmYHhjm6T86GL2KWzXGv79wxKkhSeirWB5wTqEf+RS+56Gvi9xWUljrdHu4V+g==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0-0 || ^9.0.0-0 + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.68 + peerDependenciesMeta: + svelte: + optional: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@jridgewell/sourcemap-codec': 1.4.15 + debug: 4.3.4 + eslint: 8.57.0 + eslint-compat-utils: 0.4.1(eslint@8.57.0) + esutils: 2.0.3 + known-css-properties: 0.29.0 + postcss: 8.4.35 + postcss-load-config: 3.1.4(postcss@8.4.35) + postcss-safe-parser: 6.0.0(postcss@8.4.35) + postcss-selector-parser: 6.0.15 + semver: 7.6.0 + svelte: 5.0.0-next.75 + svelte-eslint-parser: 0.34.0-next.12(svelte@5.0.0-next.75) + transitivePeerDependencies: + - supports-color + - ts-node + dev: true + + /eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@4.9.3): resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@4.9.3) - eslint: 8.55.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@4.9.3) + eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript @@ -6343,13 +6810,13 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /eslint-utils@3.0.0(eslint@8.55.0): + /eslint-utils@3.0.0(eslint@8.57.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.55.0 + eslint: 8.57.0 eslint-visitor-keys: 2.1.0 dev: true @@ -6458,28 +6925,86 @@ packages: - supports-color dev: true - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + /eslint@8.57.0: + resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - acorn: 8.10.0 - acorn-jsx: 5.3.2(acorn@8.10.0) - eslint-visitor-keys: 3.4.3 - dev: true - - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} hasBin: true - dev: true - - /esquery@1.5.0: + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@eslint-community/regexpp': 4.10.0 + '@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 + 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.22.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 + transitivePeerDependencies: + - supports-color + dev: true + + /esm-env@1.0.0: + resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==} + dev: true + + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) + eslint-visitor-keys: 3.4.3 + dev: true + + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery@1.5.0: resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 dev: true + /esrap@1.2.1: + resolution: {integrity: sha512-dhkcOLfN/aDdMFI1iwPEcy/XqAZzGNfgfEJjZozy2tia6u0dQoZyXzkRshHTckuNsM+c0CYQndY+uRFe3N+AIQ==} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + '@types/estree': 1.0.5 + dev: true + /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} @@ -6500,6 +7025,12 @@ packages: /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + /estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + dependencies: + '@types/estree': 1.0.2 + dev: true + /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -6757,6 +7288,14 @@ packages: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true + /fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + /fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -6892,6 +7431,10 @@ packages: define-properties: 1.2.1 dev: true + /globalyzer@0.1.0: + resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + dev: true + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -6904,6 +7447,10 @@ packages: slash: 3.0.0 dev: true + /globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + dev: true + /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: @@ -7197,6 +7744,10 @@ packages: resolve-cwd: 3.0.0 dev: true + /import-meta-resolve@4.0.0: + resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} + dev: true + /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} @@ -7432,6 +7983,12 @@ packages: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} dev: true + /is-reference@3.0.2: + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + dependencies: + '@types/estree': 1.0.5 + dev: true + /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} @@ -8087,6 +8644,10 @@ packages: /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + /js-tokens@8.0.3: + resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==} + dev: true + /js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true @@ -8262,6 +8823,15 @@ packages: engines: {node: '>=6'} dev: true + /kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: true + + /known-css-properties@0.29.0: + resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==} + dev: true + /language-subtag-registry@0.3.22: resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} dev: true @@ -8292,6 +8862,11 @@ packages: type-check: 0.4.0 dev: true + /lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + dev: true + /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true @@ -8319,6 +8894,10 @@ packages: pkg-types: 1.0.3 dev: true + /locate-character@3.0.0: + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + dev: true + /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} @@ -8505,10 +9084,24 @@ packages: brace-expansion: 2.0.1 dev: true + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true + /mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} @@ -8524,6 +9117,16 @@ packages: ufo: 1.3.2 dev: true + /mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true + + /mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + dev: true + /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} dev: true @@ -8556,7 +9159,6 @@ packages: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - dev: true /natural-compare-lite@1.4.0: resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} @@ -9021,6 +9623,65 @@ packages: pathe: 1.1.1 dev: true + /playwright-core@1.42.1: + resolution: {integrity: sha512-mxz6zclokgrke9p1vtdy/COWBH+eOZgYUVVU34C73M+4j4HLlQJHtfcqiqqxpP0o8HhMkflvfbquLX5dg6wlfA==} + engines: {node: '>=16'} + hasBin: true + dev: true + + /playwright@1.42.1: + resolution: {integrity: sha512-PgwB03s2DZBcNRoW+1w9E+VkLBxweib6KTXM0M3tkiT4jVxKSi6PmVJ591J+0u10LUrgxB7dLRbiJqO5s2QPMg==} + engines: {node: '>=16'} + hasBin: true + dependencies: + playwright-core: 1.42.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /postcss-load-config@3.1.4(postcss@8.4.35): + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 2.1.0 + postcss: 8.4.35 + yaml: 1.10.2 + dev: true + + /postcss-safe-parser@6.0.0(postcss@8.4.35): + resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.3.3 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-scss@4.0.9(postcss@8.4.35): + resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.4.29 + dependencies: + postcss: 8.4.35 + dev: true + + /postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + /postcss@8.4.14: resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} engines: {node: ^10 || ^12 || >=14} @@ -9036,6 +9697,7 @@ packages: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 + dev: true /postcss@8.4.32: resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} @@ -9044,6 +9706,14 @@ packages: nanoid: 3.3.7 picocolors: 1.0.0 source-map-js: 1.0.2 + + /postcss@8.4.35: + resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.0.2 dev: true /prelude-ls@1.2.1: @@ -9051,6 +9721,22 @@ packages: engines: {node: '>= 0.8.0'} dev: true + /prettier-plugin-svelte@3.2.2(prettier@3.2.5)(svelte@5.0.0-next.75): + resolution: {integrity: sha512-ZzzE/wMuf48/1+Lf2Ffko0uDa6pyCfgHV6+uAhtg2U0AAXGrhCSW88vEJNAkAxW5qyrFY1y1zZ4J8TgHrjW++Q==} + peerDependencies: + prettier: ^3.0.0 + svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0 + dependencies: + prettier: 3.2.5 + svelte: 5.0.0-next.75 + dev: true + + /prettier@3.2.5: + resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} + engines: {node: '>=14'} + hasBin: true + dev: true + /pretty-error@4.0.0: resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} dependencies: @@ -9401,6 +10087,13 @@ packages: engines: {iojs: '>=1.0.0', node: '>=0.10.0'} dev: true + /rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true @@ -9446,6 +10139,13 @@ packages: queue-microtask: 1.2.3 dev: true + /sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + dependencies: + mri: 1.2.0 + dev: true + /safe-array-concat@1.0.1: resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} @@ -9476,6 +10176,15 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true + /sander@0.5.1: + resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + dependencies: + es6-promise: 3.3.1 + graceful-fs: 4.2.11 + mkdirp: 0.5.6 + rimraf: 2.7.1 + dev: true + /saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} @@ -9535,6 +10244,14 @@ packages: lru-cache: 6.0.0 dev: true + /semver@7.6.0: + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + /send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} @@ -9589,6 +10306,10 @@ packages: - supports-color dev: true + /set-cookie-parser@2.6.0: + resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} + dev: true + /set-function-name@2.0.1: resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} engines: {node: '>= 0.4'} @@ -9662,6 +10383,15 @@ packages: engines: {node: '>=14'} dev: true + /sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.25 + mrmime: 2.0.0 + totalist: 3.0.1 + dev: true + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true @@ -9686,6 +10416,16 @@ packages: websocket-driver: 0.7.4 dev: true + /sorcery@0.11.0: + resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==} + hasBin: true + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + buffer-crc32: 0.2.13 + minimist: 1.2.8 + sander: 0.5.1 + dev: true + /source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} @@ -9938,6 +10678,12 @@ packages: acorn: 8.10.0 dev: true + /strip-literal@2.0.0: + resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==} + dependencies: + js-tokens: 8.0.3 + dev: true + /styled-jsx@5.1.0(@babel/core@7.23.5)(react@18.2.0): resolution: {integrity: sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==} engines: {node: '>= 12.0.0'} @@ -9980,6 +10726,126 @@ packages: engines: {node: '>= 0.4'} dev: true + /svelte-check@3.6.6(postcss@8.4.35)(svelte@5.0.0-next.75): + resolution: {integrity: sha512-b9q9rOHOMYF3U8XllK7LmXTq1LeWQ98waGfEJzrFutViadkNl1tgdEtxIQ8yuPx+VQ4l7YrknYol+0lfZocaZw==} + hasBin: true + peerDependencies: + svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 + dependencies: + '@jridgewell/trace-mapping': 0.3.19 + chokidar: 3.5.3 + fast-glob: 3.3.1 + import-fresh: 3.3.0 + picocolors: 1.0.0 + sade: 1.8.1 + svelte: 5.0.0-next.75 + svelte-preprocess: 5.1.3(postcss@8.4.35)(svelte@5.0.0-next.75)(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - '@babel/core' + - coffeescript + - less + - postcss + - postcss-load-config + - pug + - sass + - stylus + - sugarss + dev: true + + /svelte-eslint-parser@0.34.0-next.12(svelte@5.0.0-next.75): + resolution: {integrity: sha512-KJTStZILapiwY6ULdUaAf+6GgJs0qGZJrRy5PHtgAGKr8xNHtst9Cax0xbxz2ONDvDGaR26SZRDl9vI2f1KBAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.69 + peerDependenciesMeta: + svelte: + optional: true + dependencies: + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + postcss: 8.4.35 + postcss-scss: 4.0.9(postcss@8.4.35) + svelte: 5.0.0-next.75 + dev: true + + /svelte-hmr@0.15.3(svelte@5.0.0-next.75): + resolution: {integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==} + engines: {node: ^12.20 || ^14.13.1 || >= 16} + peerDependencies: + svelte: ^3.19.0 || ^4.0.0 + dependencies: + svelte: 5.0.0-next.75 + dev: true + + /svelte-preprocess@5.1.3(postcss@8.4.35)(svelte@5.0.0-next.75)(typescript@5.4.2): + resolution: {integrity: sha512-xxAkmxGHT+J/GourS5mVJeOXZzne1FR5ljeOUAMXUkfEhkLEllRreXpbl3dIYJlcJRfL1LO1uIAPpBpBfiqGPw==} + engines: {node: '>= 16.0.0', pnpm: ^8.0.0} + requiresBuild: true + peerDependencies: + '@babel/core': ^7.10.2 + coffeescript: ^2.5.1 + less: ^3.11.3 || ^4.0.0 + postcss: ^7 || ^8 + postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + pug: ^3.0.0 + sass: ^1.26.8 + stylus: ^0.55.0 + sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 + svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 + typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0' + peerDependenciesMeta: + '@babel/core': + optional: true + coffeescript: + optional: true + less: + optional: true + postcss: + optional: true + postcss-load-config: + optional: true + pug: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + typescript: + optional: true + dependencies: + '@types/pug': 2.0.10 + detect-indent: 6.1.0 + magic-string: 0.30.5 + postcss: 8.4.35 + sorcery: 0.11.0 + strip-indent: 3.0.0 + svelte: 5.0.0-next.75 + typescript: 5.4.2 + dev: true + + /svelte@5.0.0-next.75: + resolution: {integrity: sha512-V8HAGjMxUBEP9EV3gi/YdPWFCb++fGo7GqBwKrF91NvGS87SR4yBVdNAUY9ZzvkvO0QSsBO7+QwohXEdyIezhw==} + engines: {node: '>=18'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@types/estree': 1.0.5 + acorn: 8.11.3 + acorn-typescript: 1.4.13(acorn@8.11.3) + aria-query: 5.3.0 + axobject-query: 4.0.0 + esm-env: 1.0.0 + esrap: 1.2.1 + is-reference: 3.0.2 + locate-character: 3.0.0 + magic-string: 0.30.5 + zimmerframe: 1.1.2 + dev: true + /svg-parser@2.0.4: resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} dev: true @@ -10060,6 +10926,13 @@ packages: resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} dev: true + /tiny-glob@0.2.9: + resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + dependencies: + globalyzer: 0.1.0 + globrex: 0.1.2 + dev: true + /tinybench@2.5.1: resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==} dev: true @@ -10069,6 +10942,11 @@ packages: engines: {node: '>=14.0.0'} dev: true + /tinypool@0.8.2: + resolution: {integrity: sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ==} + engines: {node: '>=14.0.0'} + dev: true + /tinyspy@2.2.0: resolution: {integrity: sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg==} engines: {node: '>=14.0.0'} @@ -10094,6 +10972,11 @@ packages: engines: {node: '>=0.6'} dev: true + /totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + dev: true + /tough-cookie@4.1.3: resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} engines: {node: '>=6'} @@ -10118,6 +11001,15 @@ packages: punycode: 2.3.1 dev: true + /ts-api-utils@1.3.0(typescript@5.4.2): + resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 5.4.2 + dev: true + /tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: @@ -10136,6 +11028,14 @@ packages: jsonc-parser: 3.2.0 dev: true + /tsconfig-to-swcconfig@2.7.0: + resolution: {integrity: sha512-S6O8ZOawd1yw/Vau98TPIaqHs3N22PRZImFDDnc776XPpuZ9iGNPo1ggO1ARLuL0BcpY7zipXl93RJXjEzcDbw==} + hasBin: true + dependencies: + '@fastify/deepmerge': 1.3.0 + get-tsconfig: 4.7.2 + dev: true + /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true @@ -10227,6 +11127,12 @@ packages: hasBin: true dev: true + /typescript@5.4.2: + resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} + engines: {node: '>=14.17'} + hasBin: true + dev: true + /ufo@1.3.2: resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==} dev: true @@ -10364,7 +11270,28 @@ packages: debug: 4.3.4 pathe: 1.1.1 picocolors: 1.0.0 - vite: 5.0.6 + vite: 5.1.6 + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vite-node@1.3.1: + resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + dependencies: + cac: 6.7.14 + debug: 4.3.4 + pathe: 1.1.1 + picocolors: 1.0.0 + vite: 5.1.6 transitivePeerDependencies: - '@types/node' - less @@ -10527,6 +11454,52 @@ packages: fsevents: 2.3.3 dev: true + /vite@5.1.6: + resolution: {integrity: sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.19.8 + postcss: 8.4.35 + rollup: 4.6.1 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /vitefu@0.2.5(vite@5.1.6): + resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + vite: + optional: true + dependencies: + vite: 5.1.6 + dev: true + /vitest@1.0.2(jsdom@23.0.1): resolution: {integrity: sha512-F3NVwwpXfRSDnJmyv+ALPwSRVt0zDkRRE18pwUHSUPXAlWQ47rY1dc99ziMW5bBHyqwK2ERjMisLNoef64qk9w==} engines: {node: ^18.0.0 || >=20.0.0} @@ -10584,6 +11557,62 @@ packages: - terser dev: true + /vitest@1.3.1(jsdom@23.0.1): + resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': 1.3.1 + '@vitest/ui': 1.3.1 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + dependencies: + '@vitest/expect': 1.3.1 + '@vitest/runner': 1.3.1 + '@vitest/snapshot': 1.3.1 + '@vitest/spy': 1.3.1 + '@vitest/utils': 1.3.1 + acorn-walk: 8.3.2 + chai: 4.3.10 + debug: 4.3.4 + execa: 8.0.1 + jsdom: 23.0.1 + local-pkg: 0.5.0 + magic-string: 0.30.5 + pathe: 1.1.1 + picocolors: 1.0.0 + std-env: 3.6.0 + strip-literal: 2.0.0 + tinybench: 2.5.1 + tinypool: 0.8.2 + vite: 5.1.6 + vite-node: 1.3.1 + why-is-node-running: 2.2.2 + transitivePeerDependencies: + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + /vue-router@4.1.6(vue@3.2.45): resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==} peerDependencies: @@ -11054,3 +12083,7 @@ packages: resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} engines: {node: '>=12.20'} dev: true + + /zimmerframe@1.1.2: + resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==} + dev: true diff --git a/frontend/pnpm-workspace.yaml b/frontend/pnpm-workspace.yaml index 79e47bd17..fd77414e6 100644 --- a/frontend/pnpm-workspace.yaml +++ b/frontend/pnpm-workspace.yaml @@ -1,7 +1,8 @@ packages: - - next.js - - packages/* - - react - - react-webpack - - vue - - vue/libraries/* + - next.js + - packages/* + - react + - react-webpack + - vue + - sveltekit_ts + - vue/libraries/* diff --git a/frontend/sveltekit_ts/.eslintignore b/frontend/sveltekit_ts/.eslintignore new file mode 100644 index 000000000..38972655f --- /dev/null +++ b/frontend/sveltekit_ts/.eslintignore @@ -0,0 +1,13 @@ +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example + +# Ignore files for PNPM, NPM and YARN +pnpm-lock.yaml +package-lock.json +yarn.lock diff --git a/frontend/sveltekit_ts/.eslintrc.cjs b/frontend/sveltekit_ts/.eslintrc.cjs new file mode 100644 index 000000000..0b757582c --- /dev/null +++ b/frontend/sveltekit_ts/.eslintrc.cjs @@ -0,0 +1,31 @@ +/** @type { import("eslint").Linter.Config } */ +module.exports = { + root: true, + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:svelte/recommended', + 'prettier' + ], + parser: '@typescript-eslint/parser', + plugins: ['@typescript-eslint'], + parserOptions: { + sourceType: 'module', + ecmaVersion: 2020, + extraFileExtensions: ['.svelte'] + }, + env: { + browser: true, + es2017: true, + node: true + }, + overrides: [ + { + files: ['*.svelte'], + parser: 'svelte-eslint-parser', + parserOptions: { + parser: '@typescript-eslint/parser' + } + } + ] +}; diff --git a/frontend/sveltekit_ts/.gitignore b/frontend/sveltekit_ts/.gitignore new file mode 100644 index 000000000..8f6c617ec --- /dev/null +++ b/frontend/sveltekit_ts/.gitignore @@ -0,0 +1,12 @@ +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example +.vercel +.output +vite.config.js.timestamp-* +vite.config.ts.timestamp-* diff --git a/frontend/sveltekit_ts/.npmrc b/frontend/sveltekit_ts/.npmrc new file mode 100644 index 000000000..b6f27f135 --- /dev/null +++ b/frontend/sveltekit_ts/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/frontend/sveltekit_ts/.prettierignore b/frontend/sveltekit_ts/.prettierignore new file mode 100644 index 000000000..cc41cea9b --- /dev/null +++ b/frontend/sveltekit_ts/.prettierignore @@ -0,0 +1,4 @@ +# Ignore files for PNPM, NPM and YARN +pnpm-lock.yaml +package-lock.json +yarn.lock diff --git a/frontend/sveltekit_ts/.prettierrc b/frontend/sveltekit_ts/.prettierrc new file mode 100644 index 000000000..95730232b --- /dev/null +++ b/frontend/sveltekit_ts/.prettierrc @@ -0,0 +1,8 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100, + "plugins": ["prettier-plugin-svelte"], + "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] +} diff --git a/frontend/sveltekit_ts/BUILD.bazel b/frontend/sveltekit_ts/BUILD.bazel new file mode 100644 index 000000000..e31019ee6 --- /dev/null +++ b/frontend/sveltekit_ts/BUILD.bazel @@ -0,0 +1,28 @@ +load("@aspect_rules_js//js:defs.bzl", "js_library", "js_run_devserver") +load("@npm//:defs.bzl", "npm_link_all_packages") +load(":defs.bzl", "sveltekit_ts") + +npm_link_all_packages(name = "node_modules") + +sveltekit_ts( + name = "example", + data = [ + ":node_modules/@sveltejs/adapter-auto", + ":node_modules/@sveltejs/kit", + ":node_modules/@sveltejs/vite-plugin-svelte", + ":node_modules/svelte", + ":node_modules/svelte-check", + ":node_modules/vite", + ":node_modules/vitest", + "//sveltekit_ts/src", + "//sveltekit_ts/static", + ], +) + +#js_run_devserver( +# name = "dev", +# args = ["dev"], +# data = BUILD_DEPS, +# grant_sandbox_write_permissions = True, +# tool = ":vite", +#) diff --git a/frontend/sveltekit_ts/README.md b/frontend/sveltekit_ts/README.md new file mode 100644 index 000000000..5ce676612 --- /dev/null +++ b/frontend/sveltekit_ts/README.md @@ -0,0 +1,38 @@ +# create-svelte + +Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte). + +## Creating a project + +If you're seeing this, you've probably already done this step. Congrats! + +```bash +# create a new project in the current directory +npm create svelte@latest + +# create a new project in my-app +npm create svelte@latest my-app +``` + +## Developing + +Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: + +```bash +npm run dev + +# or start the server and open the app in a new browser tab +npm run dev -- --open +``` + +## Building + +To create a production version of your app: + +```bash +npm run build +``` + +You can preview the production build with `npm run preview`. + +> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. diff --git a/frontend/sveltekit_ts/defs.bzl b/frontend/sveltekit_ts/defs.bzl new file mode 100644 index 000000000..993cfee9c --- /dev/null +++ b/frontend/sveltekit_ts/defs.bzl @@ -0,0 +1,122 @@ +"Implementation details for sveltekit rule" + +load("@aspect_rules_js//js:defs.bzl", "js_library", "js_run_binary", "js_run_devserver") +load("@npm//sveltekit_ts:@sveltejs/kit/package_json.bzl", svelte_kit_bin = "bin") +load("@npm//sveltekit_ts:vite/package_json.bzl", vite_bin = "bin") +load("@npm//sveltekit_ts:tsconfig-to-swcconfig/package_json.bzl", tsconfig_to_swcconfig = "bin") +load("@aspect_rules_ts//ts:defs.bzl", "ts_config") + +def sveltekit_ts( + name, + srcs = [], + data = [], + **kwargs): + """SvelteKit TypeScript rule. + + Args: + name: Name of the rule. + srcs: List of source files. + deps: List of dependencies. + **kwargs: Additional arguments to pass to the TypeScript compiler. + """ + + # Configuration. + ts_config( + name = "tsconfig", + src = "tsconfig.json", + visibility = ["//visibility:public"], + ) + + #tsconfig_to_swcconfig.t2s( + # name = "write_swcrc", + # srcs = ["tsconfig.json"], + # args = [ + # "--filename", + # "$(location tsconfig.json)", + # ], + # stdout = ".swcrc", + # visibility = ["//sveltekit_ts:__subpackages__"], + #) + + js_library( + name = "package_json", + srcs = ["package.json"], + visibility = ["//visibility:public"], + ) + + js_library( + name = "svelte_config", + srcs = ["svelte.config.js"], + data = [ + ":node_modules/@sveltejs/adapter-auto", + ":node_modules/@sveltejs/kit", + ":node_modules/@sveltejs/vite-plugin-svelte", + #":node_modules/vitest", + ], + visibility = ["//sveltekit_ts:__subpackages__"], + ) + + js_library( + name = "vite_config", + srcs = ["vite.config.ts"], + data = [ + ":node_modules/vitest", + ], + visibility = ["//sveltekit_ts:__subpackages__"], + ) + + js_library( + name = "playwright_config", + srcs = ["playwright.config.ts"], + data = [ + ":node_modules/vitest", + ], + visibility = ["//sveltekit_ts:__subpackages__"], + ) + + # This target produces the .svelte-kit directory which is a required + # dependency for other targets. + svelte_kit_bin.svelte_kit( + name = "sveltekit_sync", + srcs = [ + ":svelte_config", + ":vite_config", + ":tsconfig", + ":package_json", + ":playwright_config", + ], + args = ["sync"], + chdir = native.package_name(), + out_dirs = [".svelte-kit"], + ) + + vite_bin.vite_binary( + name = "vite", + chdir = native.package_name(), + data = ["vite.config.ts"], + ) + + js_run_devserver( + name = "{name}_dev".format(name = name), + data = srcs + data + [ + ":vite", + ":sveltekit_sync", + ], + command = ":vite", + args = ["dev"], + chdir = native.package_name(), + **kwargs + ) + + # TODO: production build + #js_run_binary( + # name = name, + # tool = vite_bin, + # srcs = srcs + data, + # out_dirs = [ + # ".svelte-kit", + # ], + # args = ["build"], + # chdir = native.package_name(), + # **kwargs + #) diff --git a/frontend/sveltekit_ts/package.json b/frontend/sveltekit_ts/package.json new file mode 100644 index 000000000..6eaf1030b --- /dev/null +++ b/frontend/sveltekit_ts/package.json @@ -0,0 +1,41 @@ +{ + "name": "sveltekit_ts", + "version": "0.0.1", + "scripts": { + "dev": "vite dev", + "build": "svelte-kit sync && vite build", + "preview": "vite preview", + "prepare": "svelte-kit sync", + "test": "npm run test:integration && npm run test:unit", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "lint": "prettier --check . && eslint .", + "format": "prettier --write .", + "test:integration": "playwright test", + "test:unit": "vitest" + }, + "devDependencies": { + "@fontsource/fira-mono": "^5.0.12", + "@neoconfetti/svelte": "^2.2.1", + "@playwright/test": "^1.42.1", + "@sveltejs/adapter-auto": "^3.1.1", + "@sveltejs/kit": "^2.5.3", + "@sveltejs/vite-plugin-svelte": "^3.0.2", + "@types/eslint": "^8.56.5", + "@typescript-eslint/eslint-plugin": "^7.2.0", + "@typescript-eslint/parser": "^7.2.0", + "eslint": "^8.57.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-svelte": "2.36.0-next.10", + "prettier": "^3.2.5", + "prettier-plugin-svelte": "^3.2.2", + "svelte": "5.0.0-next.75", + "svelte-check": "^3.6.6", + "tsconfig-to-swcconfig": "^2.7.0", + "tslib": "^2.6.2", + "typescript": "^5.4.2", + "vite": "^5.1.6", + "vitest": "^1.3.1" + }, + "type": "module" +} diff --git a/frontend/sveltekit_ts/playwright.config.ts b/frontend/sveltekit_ts/playwright.config.ts new file mode 100644 index 000000000..1c5d7a1fd --- /dev/null +++ b/frontend/sveltekit_ts/playwright.config.ts @@ -0,0 +1,12 @@ +import type { PlaywrightTestConfig } from '@playwright/test'; + +const config: PlaywrightTestConfig = { + webServer: { + command: 'npm run build && npm run preview', + port: 4173 + }, + testDir: 'tests', + testMatch: /(.+\.)?(test|spec)\.[jt]s/ +}; + +export default config; diff --git a/frontend/sveltekit_ts/src/BUILD.bazel b/frontend/sveltekit_ts/src/BUILD.bazel new file mode 100644 index 000000000..7e292f986 --- /dev/null +++ b/frontend/sveltekit_ts/src/BUILD.bazel @@ -0,0 +1,47 @@ +load("@aspect_rules_js//js:defs.bzl", "js_library") +load("@aspect_rules_ts//ts:defs.bzl", "ts_project") + +js_library( + name = "assets", + srcs = glob([ + "**/*.svg", + "**/*.webp", + "**/*.png", + "**/*.jpg", + ]), + visibility = ["//sveltekit_ts:__subpackages__"], +) + +ts_project( + name = "src", + srcs = glob( + include = [ + "**/*.ts", + "**/*.tsx", + "**/*.svelte", + ], + exclude = [ + "**/*.test.ts", + "**/*.test.tsx", + "**/*_test.ts", + "**/*_test.tsx", + ], + ), + data = [":assets"], + #declaration = True, + resolve_json_module = True, + transpiler = "tsc", + # transpiler = TRANSPILER, + tsconfig = "//sveltekit_ts:tsconfig", + validate = False, + visibility = ["//sveltekit_ts:__subpackages__"], + deps = [ + "//sveltekit_ts:node_modules/@sveltejs", + "//sveltekit_ts:node_modules/@sveltejs/adapter-auto", + "//sveltekit_ts:node_modules/@sveltejs/kit", + "//sveltekit_ts:node_modules/@sveltejs/vite-plugin-svelte", + "//sveltekit_ts:node_modules/@types", + "//sveltekit_ts:node_modules/svelte", + "//sveltekit_ts:node_modules/svelte-check", + ], +) diff --git a/frontend/sveltekit_ts/src/app.d.ts b/frontend/sveltekit_ts/src/app.d.ts new file mode 100644 index 000000000..743f07b2e --- /dev/null +++ b/frontend/sveltekit_ts/src/app.d.ts @@ -0,0 +1,13 @@ +// See https://kit.svelte.dev/docs/types#app +// for information about these interfaces +declare global { + namespace App { + // interface Error {} + // interface Locals {} + // interface PageData {} + // interface PageState {} + // interface Platform {} + } +} + +export {}; diff --git a/frontend/sveltekit_ts/src/app.html b/frontend/sveltekit_ts/src/app.html new file mode 100644 index 000000000..77a5ff52c --- /dev/null +++ b/frontend/sveltekit_ts/src/app.html @@ -0,0 +1,12 @@ + + + + + + + %sveltekit.head% + + +
%sveltekit.body%
+ + diff --git a/frontend/sveltekit_ts/src/lib/images/github.svg b/frontend/sveltekit_ts/src/lib/images/github.svg new file mode 100644 index 000000000..0e5f54f98 --- /dev/null +++ b/frontend/sveltekit_ts/src/lib/images/github.svg @@ -0,0 +1,16 @@ + + + + diff --git a/frontend/sveltekit_ts/src/lib/images/svelte-logo.svg b/frontend/sveltekit_ts/src/lib/images/svelte-logo.svg new file mode 100644 index 000000000..3db2637e4 --- /dev/null +++ b/frontend/sveltekit_ts/src/lib/images/svelte-logo.svg @@ -0,0 +1 @@ +svelte-logo diff --git a/frontend/sveltekit_ts/src/lib/images/svelte-welcome.png b/frontend/sveltekit_ts/src/lib/images/svelte-welcome.png new file mode 100644 index 0000000000000000000000000000000000000000..d383c736205acc08f51805a28ad305131ba1208f GIT binary patch literal 128754 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 =*(%4aa{}d0ybj+hwTAN5!JF})6ThL$U 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 literal 0 HcmV?d00001 diff --git a/frontend/sveltekit_ts/src/lib/images/svelte-welcome.webp b/frontend/sveltekit_ts/src/lib/images/svelte-welcome.webp new file mode 100644 index 0000000000000000000000000000000000000000..b5f50597364d7a661154b71c289e941a57de2d2f GIT binary patch literal 115469 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�SaZ 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 LMjUsYu>b=AOPJmB literal 0 HcmV?d00001 diff --git a/frontend/sveltekit_ts/src/routes/+layout.svelte b/frontend/sveltekit_ts/src/routes/+layout.svelte new file mode 100644 index 000000000..9c7445f55 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/+layout.svelte @@ -0,0 +1,53 @@ + + +

+ + diff --git a/frontend/sveltekit_ts/src/routes/+page.svelte b/frontend/sveltekit_ts/src/routes/+page.svelte new file mode 100644 index 000000000..97201ef36 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/+page.svelte @@ -0,0 +1,59 @@ + + + + Home + + + +
+

+ + + + Welcome + + + + to your new
SvelteKit app +

+ +

+ try editing src/routes/+page.svelte +

+ + +
+ + diff --git a/frontend/sveltekit_ts/src/routes/+page.ts b/frontend/sveltekit_ts/src/routes/+page.ts new file mode 100644 index 000000000..a72419a63 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/+page.ts @@ -0,0 +1,3 @@ +// since there's no dynamic data here, we can prerender +// it so that it gets served as a static asset in production +export const prerender = true; diff --git a/frontend/sveltekit_ts/src/routes/Counter.svelte b/frontend/sveltekit_ts/src/routes/Counter.svelte new file mode 100644 index 000000000..96ef556d3 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/Counter.svelte @@ -0,0 +1,102 @@ + + +
+ + +
+
+ + {Math.floor($displayed_count)} +
+
+ + +
+ + diff --git a/frontend/sveltekit_ts/src/routes/Header.svelte b/frontend/sveltekit_ts/src/routes/Header.svelte new file mode 100644 index 000000000..368b721e8 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/Header.svelte @@ -0,0 +1,129 @@ + + +
+
+ + SvelteKit + +
+ + + +
+ + GitHub + +
+
+ + diff --git a/frontend/sveltekit_ts/src/routes/about/+page.svelte b/frontend/sveltekit_ts/src/routes/about/+page.svelte new file mode 100644 index 000000000..7f7946d23 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/about/+page.svelte @@ -0,0 +1,26 @@ + + About + + + +
+

About this app

+ +

+ This is a SvelteKit app. You can make your own by typing the + following into your command line and following the prompts: +

+ +
npm create svelte@latest
+ +

+ The page you're looking at is purely static HTML, with no client-side interactivity needed. + Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening + the devtools network panel and reloading. +

+ +

+ The Sverdle page illustrates SvelteKit's data loading and form handling. Try + using it with JavaScript disabled! +

+
diff --git a/frontend/sveltekit_ts/src/routes/about/+page.ts b/frontend/sveltekit_ts/src/routes/about/+page.ts new file mode 100644 index 000000000..e739ef4b6 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/about/+page.ts @@ -0,0 +1,9 @@ +import { dev } from '$app/environment'; + +// we don't need any JS on this page, though we'll load +// it in dev so that we get hot module replacement +export const csr = dev; + +// since there's no dynamic data here, we can prerender +// it so that it gets served as a static asset in production +export const prerender = true; diff --git a/frontend/sveltekit_ts/src/routes/styles.css b/frontend/sveltekit_ts/src/routes/styles.css new file mode 100644 index 000000000..1441d9408 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/styles.css @@ -0,0 +1,107 @@ +@import '@fontsource/fira-mono'; + +:root { + --font-body: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, + Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + --font-mono: 'Fira Mono', monospace; + --color-bg-0: rgb(202, 216, 228); + --color-bg-1: hsl(209, 36%, 86%); + --color-bg-2: hsl(224, 44%, 95%); + --color-theme-1: #ff3e00; + --color-theme-2: #4075a6; + --color-text: rgba(0, 0, 0, 0.7); + --column-width: 42rem; + --column-margin-top: 4rem; + font-family: var(--font-body); + color: var(--color-text); +} + +body { + min-height: 100vh; + margin: 0; + background-attachment: fixed; + background-color: var(--color-bg-1); + background-size: 100vw 100vh; + background-image: radial-gradient( + 50% 50% at 50% 50%, + rgba(255, 255, 255, 0.75) 0%, + rgba(255, 255, 255, 0) 100% + ), + linear-gradient(180deg, var(--color-bg-0) 0%, var(--color-bg-1) 15%, var(--color-bg-2) 50%); +} + +h1, +h2, +p { + font-weight: 400; +} + +p { + line-height: 1.5; +} + +a { + color: var(--color-theme-1); + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +h1 { + font-size: 2rem; + text-align: center; +} + +h2 { + font-size: 1rem; +} + +pre { + font-size: 16px; + font-family: var(--font-mono); + background-color: rgba(255, 255, 255, 0.45); + border-radius: 3px; + box-shadow: 2px 2px 6px rgb(255 255 255 / 25%); + padding: 0.5em; + overflow-x: auto; + color: var(--color-text); +} + +.text-column { + display: flex; + max-width: 48rem; + flex: 0.6; + flex-direction: column; + justify-content: center; + margin: 0 auto; +} + +input, +button { + font-size: inherit; + font-family: inherit; +} + +button:focus:not(:focus-visible) { + outline: none; +} + +@media (min-width: 720px) { + h1 { + font-size: 2.4rem; + } +} + +.visually-hidden { + border: 0; + clip: rect(0 0 0 0); + height: auto; + margin: 0; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; + white-space: nowrap; +} diff --git a/frontend/sveltekit_ts/src/routes/sverdle/+page.server.ts b/frontend/sveltekit_ts/src/routes/sverdle/+page.server.ts new file mode 100644 index 000000000..7279af526 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/+page.server.ts @@ -0,0 +1,69 @@ +import { fail } from '@sveltejs/kit'; +import { Game } from './game'; +import type { PageServerLoad, Actions } from './$types'; + +export const load = (({ cookies }) => { + const game = new Game(cookies.get('sverdle')); + + return { + /** + * The player's guessed words so far + */ + guesses: game.guesses, + + /** + * An array of strings like '__x_c' corresponding to the guesses, where 'x' means + * an exact match, and 'c' means a close match (right letter, wrong place) + */ + answers: game.answers, + + /** + * The correct answer, revealed if the game is over + */ + answer: game.answers.length >= 6 ? game.answer : null + }; +}) satisfies PageServerLoad; + +export const actions = { + /** + * Modify game state in reaction to a keypress. If client-side JavaScript + * is available, this will happen in the browser instead of here + */ + update: async ({ request, cookies }) => { + const game = new Game(cookies.get('sverdle')); + + const data = await request.formData(); + const key = data.get('key'); + + const i = game.answers.length; + + if (key === 'backspace') { + game.guesses[i] = game.guesses[i].slice(0, -1); + } else { + game.guesses[i] += key; + } + + cookies.set('sverdle', game.toString(), { path: '/' }); + }, + + /** + * Modify game state in reaction to a guessed word. This logic always runs on + * the server, so that people can't cheat by peeking at the JavaScript + */ + enter: async ({ request, cookies }) => { + const game = new Game(cookies.get('sverdle')); + + const data = await request.formData(); + const guess = data.getAll('guess') as string[]; + + if (!game.enter(guess)) { + return fail(400, { badGuess: true }); + } + + cookies.set('sverdle', game.toString(), { path: '/' }); + }, + + restart: async ({ cookies }) => { + cookies.delete('sverdle', { path: '/' }); + } +} satisfies Actions; diff --git a/frontend/sveltekit_ts/src/routes/sverdle/+page.svelte b/frontend/sveltekit_ts/src/routes/sverdle/+page.svelte new file mode 100644 index 000000000..127408154 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/+page.svelte @@ -0,0 +1,409 @@ + + + + + + Sverdle + + + +

Sverdle

+ +
{ + // prevent default callback from resetting the form + return ({ update }) => { + update({ reset: false }); + }; + }} +> + How to play + +
+ {#each Array.from(Array(6).keys()) as row (row)} + {@const current = row === i} +

Row {row + 1}

+
+ {#each Array.from(Array(5).keys()) as column (column)} + {@const guess = current ? currentGuess : data.guesses[row]} + {@const answer = data.answers[row]?.[column]} + {@const value = guess?.[column] ?? ''} + {@const selected = current && column === guess.length} + {@const exact = answer === 'x'} + {@const close = answer === 'c'} + {@const missing = answer === '_'} +
+ {value} + + {#if exact} + (correct) + {:else if close} + (present) + {:else if missing} + (absent) + {:else} + empty + {/if} + + +
+ {/each} +
+ {/each} +
+ +
+ {#if won || data.answers.length >= 6} + {#if !won && data.answer} +

the answer was "{data.answer}"

+ {/if} + + {:else} +
+ + + + + {#each ['qwertyuiop', 'asdfghjkl', 'zxcvbnm'] as row} +
+ {#each row as letter} + + {/each} +
+ {/each} +
+ {/if} +
+
+ +{#if won} +
+{/if} + + diff --git a/frontend/sveltekit_ts/src/routes/sverdle/game.test.ts b/frontend/sveltekit_ts/src/routes/sverdle/game.test.ts new file mode 100644 index 000000000..99028b6f5 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/game.test.ts @@ -0,0 +1,9 @@ +import { describe, it, expect } from 'vitest'; +import { Game } from './game'; + +describe('game test', () => { + it('returns true when a valid word is entered', () => { + const game = new Game(); + expect(game.enter('zorro'.split(''))).toBe(true); + }); +}); diff --git a/frontend/sveltekit_ts/src/routes/sverdle/game.ts b/frontend/sveltekit_ts/src/routes/sverdle/game.ts new file mode 100644 index 000000000..72aef85e7 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/game.ts @@ -0,0 +1,75 @@ +import { words, allowed } from './words.server'; + +export class Game { + index: number; + guesses: string[]; + answers: string[]; + answer: string; + + /** + * Create a game object from the player's cookie, or initialise a new game + */ + constructor(serialized: string | undefined = undefined) { + if (serialized) { + const [index, guesses, answers] = serialized.split('-'); + + this.index = +index; + this.guesses = guesses ? guesses.split(' ') : []; + this.answers = answers ? answers.split(' ') : []; + } else { + this.index = Math.floor(Math.random() * words.length); + this.guesses = ['', '', '', '', '', '']; + this.answers = []; + } + + this.answer = words[this.index]; + } + + /** + * Update game state based on a guess of a five-letter word. Returns + * true if the guess was valid, false otherwise + */ + enter(letters: string[]) { + const word = letters.join(''); + const valid = allowed.has(word); + + if (!valid) return false; + + this.guesses[this.answers.length] = word; + + const available = Array.from(this.answer); + const answer = Array(5).fill('_'); + + // first, find exact matches + for (let i = 0; i < 5; i += 1) { + if (letters[i] === available[i]) { + answer[i] = 'x'; + available[i] = ' '; + } + } + + // then find close matches (this has to happen + // in a second step, otherwise an early close + // match can prevent a later exact match) + for (let i = 0; i < 5; i += 1) { + if (answer[i] === '_') { + const index = available.indexOf(letters[i]); + if (index !== -1) { + answer[i] = 'c'; + available[index] = ' '; + } + } + } + + this.answers.push(answer.join('')); + + return true; + } + + /** + * Serialize game state so it can be set as a cookie + */ + toString() { + return `${this.index}-${this.guesses.join(' ')}-${this.answers.join(' ')}`; + } +} diff --git a/frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.svelte b/frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.svelte new file mode 100644 index 000000000..e8e2cec31 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.svelte @@ -0,0 +1,95 @@ + + How to play Sverdle + + + +
+

How to play Sverdle

+ +

+ Sverdle is a clone of Wordle, the + word guessing game. To play, enter a five-letter English word. For example: +

+ +
+ r + i + t + z + y +
+ +

+ The y is in the right place. r and + t + are the right letters, but in the wrong place. The other letters are wrong, and can be discarded. + Let's make another guess: +

+ +
+ p + a + r + t + y +
+ +

This time we guessed right! You have six guesses to get the word.

+ +

+ Unlike the original Wordle, Sverdle runs on the server instead of in the browser, making it + impossible to cheat. It uses <form> and cookies to submit data, meaning you can + even play with JavaScript disabled! +

+
+ + diff --git a/frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.ts b/frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.ts new file mode 100644 index 000000000..e739ef4b6 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/how-to-play/+page.ts @@ -0,0 +1,9 @@ +import { dev } from '$app/environment'; + +// we don't need any JS on this page, though we'll load +// it in dev so that we get hot module replacement +export const csr = dev; + +// since there's no dynamic data here, we can prerender +// it so that it gets served as a static asset in production +export const prerender = true; diff --git a/frontend/sveltekit_ts/src/routes/sverdle/reduced-motion.ts b/frontend/sveltekit_ts/src/routes/sverdle/reduced-motion.ts new file mode 100644 index 000000000..7a4e95eac --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/reduced-motion.ts @@ -0,0 +1,23 @@ +import { readable } from 'svelte/store'; +import { browser } from '$app/environment'; + +const reduced_motion_query = '(prefers-reduced-motion: reduce)'; + +const get_initial_motion_preference = () => { + if (!browser) return false; + return window.matchMedia(reduced_motion_query).matches; +}; + +export const reduced_motion = readable(get_initial_motion_preference(), (set) => { + if (browser) { + const set_reduced_motion = (event: MediaQueryListEvent) => { + set(event.matches); + }; + const media_query_list = window.matchMedia(reduced_motion_query); + media_query_list.addEventListener('change', set_reduced_motion); + + return () => { + media_query_list.removeEventListener('change', set_reduced_motion); + }; + } +}); diff --git a/frontend/sveltekit_ts/src/routes/sverdle/words.server.ts b/frontend/sveltekit_ts/src/routes/sverdle/words.server.ts new file mode 100644 index 000000000..56082a331 --- /dev/null +++ b/frontend/sveltekit_ts/src/routes/sverdle/words.server.ts @@ -0,0 +1,12980 @@ +/** The list of possible words */ +export const words = [ + 'aback', + 'abase', + 'abate', + 'abbey', + 'abbot', + 'abhor', + 'abide', + 'abled', + 'abode', + 'abort', + 'about', + 'above', + 'abuse', + 'abyss', + 'acorn', + 'acrid', + 'actor', + 'acute', + 'adage', + 'adapt', + 'adept', + 'admin', + 'admit', + 'adobe', + 'adopt', + 'adore', + 'adorn', + 'adult', + 'affix', + 'afire', + 'afoot', + 'afoul', + 'after', + 'again', + 'agape', + 'agate', + 'agent', + 'agile', + 'aging', + 'aglow', + 'agony', + 'agora', + 'agree', + 'ahead', + 'aider', + 'aisle', + 'alarm', + 'album', + 'alert', + 'algae', + 'alibi', + 'alien', + 'align', + 'alike', + 'alive', + 'allay', + 'alley', + 'allot', + 'allow', + 'alloy', + 'aloft', + 'alone', + 'along', + 'aloof', + 'aloud', + 'alpha', + 'altar', + 'alter', + 'amass', + 'amaze', + 'amber', + 'amble', + 'amend', + 'amiss', + 'amity', + 'among', + 'ample', + 'amply', + 'amuse', + 'angel', + 'anger', + 'angle', + 'angry', + 'angst', + 'anime', + 'ankle', + 'annex', + 'annoy', + 'annul', + 'anode', + 'antic', + 'anvil', + 'aorta', + 'apart', + 'aphid', + 'aping', + 'apnea', + 'apple', + 'apply', + 'apron', + 'aptly', + 'arbor', + 'ardor', + 'arena', + 'argue', + 'arise', + 'armor', + 'aroma', + 'arose', + 'array', + 'arrow', + 'arson', + 'artsy', + 'ascot', + 'ashen', + 'aside', + 'askew', + 'assay', + 'asset', + 'atoll', + 'atone', + 'attic', + 'audio', + 'audit', + 'augur', + 'aunty', + 'avail', + 'avert', + 'avian', + 'avoid', + 'await', + 'awake', + 'award', + 'aware', + 'awash', + 'awful', + 'awoke', + 'axial', + 'axiom', + 'axion', + 'azure', + 'bacon', + 'badge', + 'badly', + 'bagel', + 'baggy', + 'baker', + 'baler', + 'balmy', + 'banal', + 'banjo', + 'barge', + 'baron', + 'basal', + 'basic', + 'basil', + 'basin', + 'basis', + 'baste', + 'batch', + 'bathe', + 'baton', + 'batty', + 'bawdy', + 'bayou', + 'beach', + 'beady', + 'beard', + 'beast', + 'beech', + 'beefy', + 'befit', + 'began', + 'begat', + 'beget', + 'begin', + 'begun', + 'being', + 'belch', + 'belie', + 'belle', + 'belly', + 'below', + 'bench', + 'beret', + 'berry', + 'berth', + 'beset', + 'betel', + 'bevel', + 'bezel', + 'bible', + 'bicep', + 'biddy', + 'bigot', + 'bilge', + 'billy', + 'binge', + 'bingo', + 'biome', + 'birch', + 'birth', + 'bison', + 'bitty', + 'black', + 'blade', + 'blame', + 'bland', + 'blank', + 'blare', + 'blast', + 'blaze', + 'bleak', + 'bleat', + 'bleed', + 'bleep', + 'blend', + 'bless', + 'blimp', + 'blind', + 'blink', + 'bliss', + 'blitz', + 'bloat', + 'block', + 'bloke', + 'blond', + 'blood', + 'bloom', + 'blown', + 'bluer', + 'bluff', + 'blunt', + 'blurb', + 'blurt', + 'blush', + 'board', + 'boast', + 'bobby', + 'boney', + 'bongo', + 'bonus', + 'booby', + 'boost', + 'booth', + 'booty', + 'booze', + 'boozy', + 'borax', + 'borne', + 'bosom', + 'bossy', + 'botch', + 'bough', + 'boule', + 'bound', + 'bowel', + 'boxer', + 'brace', + 'braid', + 'brain', + 'brake', + 'brand', + 'brash', + 'brass', + 'brave', + 'bravo', + 'brawl', + 'brawn', + 'bread', + 'break', + 'breed', + 'briar', + 'bribe', + 'brick', + 'bride', + 'brief', + 'brine', + 'bring', + 'brink', + 'briny', + 'brisk', + 'broad', + 'broil', + 'broke', + 'brood', + 'brook', + 'broom', + 'broth', + 'brown', + 'brunt', + 'brush', + 'brute', + 'buddy', + 'budge', + 'buggy', + 'bugle', + 'build', + 'built', + 'bulge', + 'bulky', + 'bully', + 'bunch', + 'bunny', + 'burly', + 'burnt', + 'burst', + 'bused', + 'bushy', + 'butch', + 'butte', + 'buxom', + 'buyer', + 'bylaw', + 'cabal', + 'cabby', + 'cabin', + 'cable', + 'cacao', + 'cache', + 'cacti', + 'caddy', + 'cadet', + 'cagey', + 'cairn', + 'camel', + 'cameo', + 'canal', + 'candy', + 'canny', + 'canoe', + 'canon', + 'caper', + 'caput', + 'carat', + 'cargo', + 'carol', + 'carry', + 'carve', + 'caste', + 'catch', + 'cater', + 'catty', + 'caulk', + 'cause', + 'cavil', + 'cease', + 'cedar', + 'cello', + 'chafe', + 'chaff', + 'chain', + 'chair', + 'chalk', + 'champ', + 'chant', + 'chaos', + 'chard', + 'charm', + 'chart', + 'chase', + 'chasm', + 'cheap', + 'cheat', + 'check', + 'cheek', + 'cheer', + 'chess', + 'chest', + 'chick', + 'chide', + 'chief', + 'child', + 'chili', + 'chill', + 'chime', + 'china', + 'chirp', + 'chock', + 'choir', + 'choke', + 'chord', + 'chore', + 'chose', + 'chuck', + 'chump', + 'chunk', + 'churn', + 'chute', + 'cider', + 'cigar', + 'cinch', + 'circa', + 'civic', + 'civil', + 'clack', + 'claim', + 'clamp', + 'clang', + 'clank', + 'clash', + 'clasp', + 'class', + 'clean', + 'clear', + 'cleat', + 'cleft', + 'clerk', + 'click', + 'cliff', + 'climb', + 'cling', + 'clink', + 'cloak', + 'clock', + 'clone', + 'close', + 'cloth', + 'cloud', + 'clout', + 'clove', + 'clown', + 'cluck', + 'clued', + 'clump', + 'clung', + 'coach', + 'coast', + 'cobra', + 'cocoa', + 'colon', + 'color', + 'comet', + 'comfy', + 'comic', + 'comma', + 'conch', + 'condo', + 'conic', + 'copse', + 'coral', + 'corer', + 'corny', + 'couch', + 'cough', + 'could', + 'count', + 'coupe', + 'court', + 'coven', + 'cover', + 'covet', + 'covey', + 'cower', + 'coyly', + 'crack', + 'craft', + 'cramp', + 'crane', + 'crank', + 'crash', + 'crass', + 'crate', + 'crave', + 'crawl', + 'craze', + 'crazy', + 'creak', + 'cream', + 'credo', + 'creed', + 'creek', + 'creep', + 'creme', + 'crepe', + 'crept', + 'cress', + 'crest', + 'crick', + 'cried', + 'crier', + 'crime', + 'crimp', + 'crisp', + 'croak', + 'crock', + 'crone', + 'crony', + 'crook', + 'cross', + 'croup', + 'crowd', + 'crown', + 'crude', + 'cruel', + 'crumb', + 'crump', + 'crush', + 'crust', + 'crypt', + 'cubic', + 'cumin', + 'curio', + 'curly', + 'curry', + 'curse', + 'curve', + 'curvy', + 'cutie', + 'cyber', + 'cycle', + 'cynic', + 'daddy', + 'daily', + 'dairy', + 'daisy', + 'dally', + 'dance', + 'dandy', + 'datum', + 'daunt', + 'dealt', + 'death', + 'debar', + 'debit', + 'debug', + 'debut', + 'decal', + 'decay', + 'decor', + 'decoy', + 'decry', + 'defer', + 'deign', + 'deity', + 'delay', + 'delta', + 'delve', + 'demon', + 'demur', + 'denim', + 'dense', + 'depot', + 'depth', + 'derby', + 'deter', + 'detox', + 'deuce', + 'devil', + 'diary', + 'dicey', + 'digit', + 'dilly', + 'dimly', + 'diner', + 'dingo', + 'dingy', + 'diode', + 'dirge', + 'dirty', + 'disco', + 'ditch', + 'ditto', + 'ditty', + 'diver', + 'dizzy', + 'dodge', + 'dodgy', + 'dogma', + 'doing', + 'dolly', + 'donor', + 'donut', + 'dopey', + 'doubt', + 'dough', + 'dowdy', + 'dowel', + 'downy', + 'dowry', + 'dozen', + 'draft', + 'drain', + 'drake', + 'drama', + 'drank', + 'drape', + 'drawl', + 'drawn', + 'dread', + 'dream', + 'dress', + 'dried', + 'drier', + 'drift', + 'drill', + 'drink', + 'drive', + 'droit', + 'droll', + 'drone', + 'drool', + 'droop', + 'dross', + 'drove', + 'drown', + 'druid', + 'drunk', + 'dryer', + 'dryly', + 'duchy', + 'dully', + 'dummy', + 'dumpy', + 'dunce', + 'dusky', + 'dusty', + 'dutch', + 'duvet', + 'dwarf', + 'dwell', + 'dwelt', + 'dying', + 'eager', + 'eagle', + 'early', + 'earth', + 'easel', + 'eaten', + 'eater', + 'ebony', + 'eclat', + 'edict', + 'edify', + 'eerie', + 'egret', + 'eight', + 'eject', + 'eking', + 'elate', + 'elbow', + 'elder', + 'elect', + 'elegy', + 'elfin', + 'elide', + 'elite', + 'elope', + 'elude', + 'email', + 'embed', + 'ember', + 'emcee', + 'empty', + 'enact', + 'endow', + 'enema', + 'enemy', + 'enjoy', + 'ennui', + 'ensue', + 'enter', + 'entry', + 'envoy', + 'epoch', + 'epoxy', + 'equal', + 'equip', + 'erase', + 'erect', + 'erode', + 'error', + 'erupt', + 'essay', + 'ester', + 'ether', + 'ethic', + 'ethos', + 'etude', + 'evade', + 'event', + 'every', + 'evict', + 'evoke', + 'exact', + 'exalt', + 'excel', + 'exert', + 'exile', + 'exist', + 'expel', + 'extol', + 'extra', + 'exult', + 'eying', + 'fable', + 'facet', + 'faint', + 'fairy', + 'faith', + 'false', + 'fancy', + 'fanny', + 'farce', + 'fatal', + 'fatty', + 'fault', + 'fauna', + 'favor', + 'feast', + 'fecal', + 'feign', + 'fella', + 'felon', + 'femme', + 'femur', + 'fence', + 'feral', + 'ferry', + 'fetal', + 'fetch', + 'fetid', + 'fetus', + 'fever', + 'fewer', + 'fiber', + 'fibre', + 'ficus', + 'field', + 'fiend', + 'fiery', + 'fifth', + 'fifty', + 'fight', + 'filer', + 'filet', + 'filly', + 'filmy', + 'filth', + 'final', + 'finch', + 'finer', + 'first', + 'fishy', + 'fixer', + 'fizzy', + 'fjord', + 'flack', + 'flail', + 'flair', + 'flake', + 'flaky', + 'flame', + 'flank', + 'flare', + 'flash', + 'flask', + 'fleck', + 'fleet', + 'flesh', + 'flick', + 'flier', + 'fling', + 'flint', + 'flirt', + 'float', + 'flock', + 'flood', + 'floor', + 'flora', + 'floss', + 'flour', + 'flout', + 'flown', + 'fluff', + 'fluid', + 'fluke', + 'flume', + 'flung', + 'flunk', + 'flush', + 'flute', + 'flyer', + 'foamy', + 'focal', + 'focus', + 'foggy', + 'foist', + 'folio', + 'folly', + 'foray', + 'force', + 'forge', + 'forgo', + 'forte', + 'forth', + 'forty', + 'forum', + 'found', + 'foyer', + 'frail', + 'frame', + 'frank', + 'fraud', + 'freak', + 'freed', + 'freer', + 'fresh', + 'friar', + 'fried', + 'frill', + 'frisk', + 'fritz', + 'frock', + 'frond', + 'front', + 'frost', + 'froth', + 'frown', + 'froze', + 'fruit', + 'fudge', + 'fugue', + 'fully', + 'fungi', + 'funky', + 'funny', + 'furor', + 'furry', + 'fussy', + 'fuzzy', + 'gaffe', + 'gaily', + 'gamer', + 'gamma', + 'gamut', + 'gassy', + 'gaudy', + 'gauge', + 'gaunt', + 'gauze', + 'gavel', + 'gawky', + 'gayer', + 'gayly', + 'gazer', + 'gecko', + 'geeky', + 'geese', + 'genie', + 'genre', + 'ghost', + 'ghoul', + 'giant', + 'giddy', + 'gipsy', + 'girly', + 'girth', + 'given', + 'giver', + 'glade', + 'gland', + 'glare', + 'glass', + 'glaze', + 'gleam', + 'glean', + 'glide', + 'glint', + 'gloat', + 'globe', + 'gloom', + 'glory', + 'gloss', + 'glove', + 'glyph', + 'gnash', + 'gnome', + 'godly', + 'going', + 'golem', + 'golly', + 'gonad', + 'goner', + 'goody', + 'gooey', + 'goofy', + 'goose', + 'gorge', + 'gouge', + 'gourd', + 'grace', + 'grade', + 'graft', + 'grail', + 'grain', + 'grand', + 'grant', + 'grape', + 'graph', + 'grasp', + 'grass', + 'grate', + 'grave', + 'gravy', + 'graze', + 'great', + 'greed', + 'green', + 'greet', + 'grief', + 'grill', + 'grime', + 'grimy', + 'grind', + 'gripe', + 'groan', + 'groin', + 'groom', + 'grope', + 'gross', + 'group', + 'grout', + 'grove', + 'growl', + 'grown', + 'gruel', + 'gruff', + 'grunt', + 'guard', + 'guava', + 'guess', + 'guest', + 'guide', + 'guild', + 'guile', + 'guilt', + 'guise', + 'gulch', + 'gully', + 'gumbo', + 'gummy', + 'guppy', + 'gusto', + 'gusty', + 'gypsy', + 'habit', + 'hairy', + 'halve', + 'handy', + 'happy', + 'hardy', + 'harem', + 'harpy', + 'harry', + 'harsh', + 'haste', + 'hasty', + 'hatch', + 'hater', + 'haunt', + 'haute', + 'haven', + 'havoc', + 'hazel', + 'heady', + 'heard', + 'heart', + 'heath', + 'heave', + 'heavy', + 'hedge', + 'hefty', + 'heist', + 'helix', + 'hello', + 'hence', + 'heron', + 'hilly', + 'hinge', + 'hippo', + 'hippy', + 'hitch', + 'hoard', + 'hobby', + 'hoist', + 'holly', + 'homer', + 'honey', + 'honor', + 'horde', + 'horny', + 'horse', + 'hotel', + 'hotly', + 'hound', + 'house', + 'hovel', + 'hover', + 'howdy', + 'human', + 'humid', + 'humor', + 'humph', + 'humus', + 'hunch', + 'hunky', + 'hurry', + 'husky', + 'hussy', + 'hutch', + 'hydro', + 'hyena', + 'hymen', + 'hyper', + 'icily', + 'icing', + 'ideal', + 'idiom', + 'idiot', + 'idler', + 'idyll', + 'igloo', + 'iliac', + 'image', + 'imbue', + 'impel', + 'imply', + 'inane', + 'inbox', + 'incur', + 'index', + 'inept', + 'inert', + 'infer', + 'ingot', + 'inlay', + 'inlet', + 'inner', + 'input', + 'inter', + 'intro', + 'ionic', + 'irate', + 'irony', + 'islet', + 'issue', + 'itchy', + 'ivory', + 'jaunt', + 'jazzy', + 'jelly', + 'jerky', + 'jetty', + 'jewel', + 'jiffy', + 'joint', + 'joist', + 'joker', + 'jolly', + 'joust', + 'judge', + 'juice', + 'juicy', + 'jumbo', + 'jumpy', + 'junta', + 'junto', + 'juror', + 'kappa', + 'karma', + 'kayak', + 'kebab', + 'khaki', + 'kinky', + 'kiosk', + 'kitty', + 'knack', + 'knave', + 'knead', + 'kneed', + 'kneel', + 'knelt', + 'knife', + 'knock', + 'knoll', + 'known', + 'koala', + 'krill', + 'label', + 'labor', + 'laden', + 'ladle', + 'lager', + 'lance', + 'lanky', + 'lapel', + 'lapse', + 'large', + 'larva', + 'lasso', + 'latch', + 'later', + 'lathe', + 'latte', + 'laugh', + 'layer', + 'leach', + 'leafy', + 'leaky', + 'leant', + 'leapt', + 'learn', + 'lease', + 'leash', + 'least', + 'leave', + 'ledge', + 'leech', + 'leery', + 'lefty', + 'legal', + 'leggy', + 'lemon', + 'lemur', + 'leper', + 'level', + 'lever', + 'libel', + 'liege', + 'light', + 'liken', + 'lilac', + 'limbo', + 'limit', + 'linen', + 'liner', + 'lingo', + 'lipid', + 'lithe', + 'liver', + 'livid', + 'llama', + 'loamy', + 'loath', + 'lobby', + 'local', + 'locus', + 'lodge', + 'lofty', + 'logic', + 'login', + 'loopy', + 'loose', + 'lorry', + 'loser', + 'louse', + 'lousy', + 'lover', + 'lower', + 'lowly', + 'loyal', + 'lucid', + 'lucky', + 'lumen', + 'lumpy', + 'lunar', + 'lunch', + 'lunge', + 'lupus', + 'lurch', + 'lurid', + 'lusty', + 'lying', + 'lymph', + 'lynch', + 'lyric', + 'macaw', + 'macho', + 'macro', + 'madam', + 'madly', + 'mafia', + 'magic', + 'magma', + 'maize', + 'major', + 'maker', + 'mambo', + 'mamma', + 'mammy', + 'manga', + 'mange', + 'mango', + 'mangy', + 'mania', + 'manic', + 'manly', + 'manor', + 'maple', + 'march', + 'marry', + 'marsh', + 'mason', + 'masse', + 'match', + 'matey', + 'mauve', + 'maxim', + 'maybe', + 'mayor', + 'mealy', + 'meant', + 'meaty', + 'mecca', + 'medal', + 'media', + 'medic', + 'melee', + 'melon', + 'mercy', + 'merge', + 'merit', + 'merry', + 'metal', + 'meter', + 'metro', + 'micro', + 'midge', + 'midst', + 'might', + 'milky', + 'mimic', + 'mince', + 'miner', + 'minim', + 'minor', + 'minty', + 'minus', + 'mirth', + 'miser', + 'missy', + 'mocha', + 'modal', + 'model', + 'modem', + 'mogul', + 'moist', + 'molar', + 'moldy', + 'money', + 'month', + 'moody', + 'moose', + 'moral', + 'moron', + 'morph', + 'mossy', + 'motel', + 'motif', + 'motor', + 'motto', + 'moult', + 'mound', + 'mount', + 'mourn', + 'mouse', + 'mouth', + 'mover', + 'movie', + 'mower', + 'mucky', + 'mucus', + 'muddy', + 'mulch', + 'mummy', + 'munch', + 'mural', + 'murky', + 'mushy', + 'music', + 'musky', + 'musty', + 'myrrh', + 'nadir', + 'naive', + 'nanny', + 'nasal', + 'nasty', + 'natal', + 'naval', + 'navel', + 'needy', + 'neigh', + 'nerdy', + 'nerve', + 'never', + 'newer', + 'newly', + 'nicer', + 'niche', + 'niece', + 'night', + 'ninja', + 'ninny', + 'ninth', + 'noble', + 'nobly', + 'noise', + 'noisy', + 'nomad', + 'noose', + 'north', + 'nosey', + 'notch', + 'novel', + 'nudge', + 'nurse', + 'nutty', + 'nylon', + 'nymph', + 'oaken', + 'obese', + 'occur', + 'ocean', + 'octal', + 'octet', + 'odder', + 'oddly', + 'offal', + 'offer', + 'often', + 'olden', + 'older', + 'olive', + 'ombre', + 'omega', + 'onion', + 'onset', + 'opera', + 'opine', + 'opium', + 'optic', + 'orbit', + 'order', + 'organ', + 'other', + 'otter', + 'ought', + 'ounce', + 'outdo', + 'outer', + 'outgo', + 'ovary', + 'ovate', + 'overt', + 'ovine', + 'ovoid', + 'owing', + 'owner', + 'oxide', + 'ozone', + 'paddy', + 'pagan', + 'paint', + 'paler', + 'palsy', + 'panel', + 'panic', + 'pansy', + 'papal', + 'paper', + 'parer', + 'parka', + 'parry', + 'parse', + 'party', + 'pasta', + 'paste', + 'pasty', + 'patch', + 'patio', + 'patsy', + 'patty', + 'pause', + 'payee', + 'payer', + 'peace', + 'peach', + 'pearl', + 'pecan', + 'pedal', + 'penal', + 'pence', + 'penne', + 'penny', + 'perch', + 'peril', + 'perky', + 'pesky', + 'pesto', + 'petal', + 'petty', + 'phase', + 'phone', + 'phony', + 'photo', + 'piano', + 'picky', + 'piece', + 'piety', + 'piggy', + 'pilot', + 'pinch', + 'piney', + 'pinky', + 'pinto', + 'piper', + 'pique', + 'pitch', + 'pithy', + 'pivot', + 'pixel', + 'pixie', + 'pizza', + 'place', + 'plaid', + 'plain', + 'plait', + 'plane', + 'plank', + 'plant', + 'plate', + 'plaza', + 'plead', + 'pleat', + 'plied', + 'plier', + 'pluck', + 'plumb', + 'plume', + 'plump', + 'plunk', + 'plush', + 'poesy', + 'point', + 'poise', + 'poker', + 'polar', + 'polka', + 'polyp', + 'pooch', + 'poppy', + 'porch', + 'poser', + 'posit', + 'posse', + 'pouch', + 'pound', + 'pouty', + 'power', + 'prank', + 'prawn', + 'preen', + 'press', + 'price', + 'prick', + 'pride', + 'pried', + 'prime', + 'primo', + 'print', + 'prior', + 'prism', + 'privy', + 'prize', + 'probe', + 'prone', + 'prong', + 'proof', + 'prose', + 'proud', + 'prove', + 'prowl', + 'proxy', + 'prude', + 'prune', + 'psalm', + 'pubic', + 'pudgy', + 'puffy', + 'pulpy', + 'pulse', + 'punch', + 'pupal', + 'pupil', + 'puppy', + 'puree', + 'purer', + 'purge', + 'purse', + 'pushy', + 'putty', + 'pygmy', + 'quack', + 'quail', + 'quake', + 'qualm', + 'quark', + 'quart', + 'quash', + 'quasi', + 'queen', + 'queer', + 'quell', + 'query', + 'quest', + 'queue', + 'quick', + 'quiet', + 'quill', + 'quilt', + 'quirk', + 'quite', + 'quota', + 'quote', + 'quoth', + 'rabbi', + 'rabid', + 'racer', + 'radar', + 'radii', + 'radio', + 'rainy', + 'raise', + 'rajah', + 'rally', + 'ralph', + 'ramen', + 'ranch', + 'randy', + 'range', + 'rapid', + 'rarer', + 'raspy', + 'ratio', + 'ratty', + 'raven', + 'rayon', + 'razor', + 'reach', + 'react', + 'ready', + 'realm', + 'rearm', + 'rebar', + 'rebel', + 'rebus', + 'rebut', + 'recap', + 'recur', + 'recut', + 'reedy', + 'refer', + 'refit', + 'regal', + 'rehab', + 'reign', + 'relax', + 'relay', + 'relic', + 'remit', + 'renal', + 'renew', + 'repay', + 'repel', + 'reply', + 'rerun', + 'reset', + 'resin', + 'retch', + 'retro', + 'retry', + 'reuse', + 'revel', + 'revue', + 'rhino', + 'rhyme', + 'rider', + 'ridge', + 'rifle', + 'right', + 'rigid', + 'rigor', + 'rinse', + 'ripen', + 'riper', + 'risen', + 'riser', + 'risky', + 'rival', + 'river', + 'rivet', + 'roach', + 'roast', + 'robin', + 'robot', + 'rocky', + 'rodeo', + 'roger', + 'rogue', + 'roomy', + 'roost', + 'rotor', + 'rouge', + 'rough', + 'round', + 'rouse', + 'route', + 'rover', + 'rowdy', + 'rower', + 'royal', + 'ruddy', + 'ruder', + 'rugby', + 'ruler', + 'rumba', + 'rumor', + 'rupee', + 'rural', + 'rusty', + 'sadly', + 'safer', + 'saint', + 'salad', + 'sally', + 'salon', + 'salsa', + 'salty', + 'salve', + 'salvo', + 'sandy', + 'saner', + 'sappy', + 'sassy', + 'satin', + 'satyr', + 'sauce', + 'saucy', + 'sauna', + 'saute', + 'savor', + 'savoy', + 'savvy', + 'scald', + 'scale', + 'scalp', + 'scaly', + 'scamp', + 'scant', + 'scare', + 'scarf', + 'scary', + 'scene', + 'scent', + 'scion', + 'scoff', + 'scold', + 'scone', + 'scoop', + 'scope', + 'score', + 'scorn', + 'scour', + 'scout', + 'scowl', + 'scram', + 'scrap', + 'scree', + 'screw', + 'scrub', + 'scrum', + 'scuba', + 'sedan', + 'seedy', + 'segue', + 'seize', + 'semen', + 'sense', + 'sepia', + 'serif', + 'serum', + 'serve', + 'setup', + 'seven', + 'sever', + 'sewer', + 'shack', + 'shade', + 'shady', + 'shaft', + 'shake', + 'shaky', + 'shale', + 'shall', + 'shalt', + 'shame', + 'shank', + 'shape', + 'shard', + 'share', + 'shark', + 'sharp', + 'shave', + 'shawl', + 'shear', + 'sheen', + 'sheep', + 'sheer', + 'sheet', + 'sheik', + 'shelf', + 'shell', + 'shied', + 'shift', + 'shine', + 'shiny', + 'shire', + 'shirk', + 'shirt', + 'shoal', + 'shock', + 'shone', + 'shook', + 'shoot', + 'shore', + 'shorn', + 'short', + 'shout', + 'shove', + 'shown', + 'showy', + 'shrew', + 'shrub', + 'shrug', + 'shuck', + 'shunt', + 'shush', + 'shyly', + 'siege', + 'sieve', + 'sight', + 'sigma', + 'silky', + 'silly', + 'since', + 'sinew', + 'singe', + 'siren', + 'sissy', + 'sixth', + 'sixty', + 'skate', + 'skier', + 'skiff', + 'skill', + 'skimp', + 'skirt', + 'skulk', + 'skull', + 'skunk', + 'slack', + 'slain', + 'slang', + 'slant', + 'slash', + 'slate', + 'slave', + 'sleek', + 'sleep', + 'sleet', + 'slept', + 'slice', + 'slick', + 'slide', + 'slime', + 'slimy', + 'sling', + 'slink', + 'sloop', + 'slope', + 'slosh', + 'sloth', + 'slump', + 'slung', + 'slunk', + 'slurp', + 'slush', + 'slyly', + 'smack', + 'small', + 'smart', + 'smash', + 'smear', + 'smell', + 'smelt', + 'smile', + 'smirk', + 'smite', + 'smith', + 'smock', + 'smoke', + 'smoky', + 'smote', + 'snack', + 'snail', + 'snake', + 'snaky', + 'snare', + 'snarl', + 'sneak', + 'sneer', + 'snide', + 'sniff', + 'snipe', + 'snoop', + 'snore', + 'snort', + 'snout', + 'snowy', + 'snuck', + 'snuff', + 'soapy', + 'sober', + 'soggy', + 'solar', + 'solid', + 'solve', + 'sonar', + 'sonic', + 'sooth', + 'sooty', + 'sorry', + 'sound', + 'south', + 'sower', + 'space', + 'spade', + 'spank', + 'spare', + 'spark', + 'spasm', + 'spawn', + 'speak', + 'spear', + 'speck', + 'speed', + 'spell', + 'spelt', + 'spend', + 'spent', + 'sperm', + 'spice', + 'spicy', + 'spied', + 'spiel', + 'spike', + 'spiky', + 'spill', + 'spilt', + 'spine', + 'spiny', + 'spire', + 'spite', + 'splat', + 'split', + 'spoil', + 'spoke', + 'spoof', + 'spook', + 'spool', + 'spoon', + 'spore', + 'sport', + 'spout', + 'spray', + 'spree', + 'sprig', + 'spunk', + 'spurn', + 'spurt', + 'squad', + 'squat', + 'squib', + 'stack', + 'staff', + 'stage', + 'staid', + 'stain', + 'stair', + 'stake', + 'stale', + 'stalk', + 'stall', + 'stamp', + 'stand', + 'stank', + 'stare', + 'stark', + 'start', + 'stash', + 'state', + 'stave', + 'stead', + 'steak', + 'steal', + 'steam', + 'steed', + 'steel', + 'steep', + 'steer', + 'stein', + 'stern', + 'stick', + 'stiff', + 'still', + 'stilt', + 'sting', + 'stink', + 'stint', + 'stock', + 'stoic', + 'stoke', + 'stole', + 'stomp', + 'stone', + 'stony', + 'stood', + 'stool', + 'stoop', + 'store', + 'stork', + 'storm', + 'story', + 'stout', + 'stove', + 'strap', + 'straw', + 'stray', + 'strip', + 'strut', + 'stuck', + 'study', + 'stuff', + 'stump', + 'stung', + 'stunk', + 'stunt', + 'style', + 'suave', + 'sugar', + 'suing', + 'suite', + 'sulky', + 'sully', + 'sumac', + 'sunny', + 'super', + 'surer', + 'surge', + 'surly', + 'sushi', + 'swami', + 'swamp', + 'swarm', + 'swash', + 'swath', + 'swear', + 'sweat', + 'sweep', + 'sweet', + 'swell', + 'swept', + 'swift', + 'swill', + 'swine', + 'swing', + 'swirl', + 'swish', + 'swoon', + 'swoop', + 'sword', + 'swore', + 'sworn', + 'swung', + 'synod', + 'syrup', + 'tabby', + 'table', + 'taboo', + 'tacit', + 'tacky', + 'taffy', + 'taint', + 'taken', + 'taker', + 'tally', + 'talon', + 'tamer', + 'tango', + 'tangy', + 'taper', + 'tapir', + 'tardy', + 'tarot', + 'taste', + 'tasty', + 'tatty', + 'taunt', + 'tawny', + 'teach', + 'teary', + 'tease', + 'teddy', + 'teeth', + 'tempo', + 'tenet', + 'tenor', + 'tense', + 'tenth', + 'tepee', + 'tepid', + 'terra', + 'terse', + 'testy', + 'thank', + 'theft', + 'their', + 'theme', + 'there', + 'these', + 'theta', + 'thick', + 'thief', + 'thigh', + 'thing', + 'think', + 'third', + 'thong', + 'thorn', + 'those', + 'three', + 'threw', + 'throb', + 'throw', + 'thrum', + 'thumb', + 'thump', + 'thyme', + 'tiara', + 'tibia', + 'tidal', + 'tiger', + 'tight', + 'tilde', + 'timer', + 'timid', + 'tipsy', + 'titan', + 'tithe', + 'title', + 'toast', + 'today', + 'toddy', + 'token', + 'tonal', + 'tonga', + 'tonic', + 'tooth', + 'topaz', + 'topic', + 'torch', + 'torso', + 'torus', + 'total', + 'totem', + 'touch', + 'tough', + 'towel', + 'tower', + 'toxic', + 'toxin', + 'trace', + 'track', + 'tract', + 'trade', + 'trail', + 'train', + 'trait', + 'tramp', + 'trash', + 'trawl', + 'tread', + 'treat', + 'trend', + 'triad', + 'trial', + 'tribe', + 'trice', + 'trick', + 'tried', + 'tripe', + 'trite', + 'troll', + 'troop', + 'trope', + 'trout', + 'trove', + 'truce', + 'truck', + 'truer', + 'truly', + 'trump', + 'trunk', + 'truss', + 'trust', + 'truth', + 'tryst', + 'tubal', + 'tuber', + 'tulip', + 'tulle', + 'tumor', + 'tunic', + 'turbo', + 'tutor', + 'twang', + 'tweak', + 'tweed', + 'tweet', + 'twice', + 'twine', + 'twirl', + 'twist', + 'twixt', + 'tying', + 'udder', + 'ulcer', + 'ultra', + 'umbra', + 'uncle', + 'uncut', + 'under', + 'undid', + 'undue', + 'unfed', + 'unfit', + 'unify', + 'union', + 'unite', + 'unity', + 'unlit', + 'unmet', + 'unset', + 'untie', + 'until', + 'unwed', + 'unzip', + 'upper', + 'upset', + 'urban', + 'urine', + 'usage', + 'usher', + 'using', + 'usual', + 'usurp', + 'utile', + 'utter', + 'vague', + 'valet', + 'valid', + 'valor', + 'value', + 'valve', + 'vapid', + 'vapor', + 'vault', + 'vaunt', + 'vegan', + 'venom', + 'venue', + 'verge', + 'verse', + 'verso', + 'verve', + 'vicar', + 'video', + 'vigil', + 'vigor', + 'villa', + 'vinyl', + 'viola', + 'viper', + 'viral', + 'virus', + 'visit', + 'visor', + 'vista', + 'vital', + 'vivid', + 'vixen', + 'vocal', + 'vodka', + 'vogue', + 'voice', + 'voila', + 'vomit', + 'voter', + 'vouch', + 'vowel', + 'vying', + 'wacky', + 'wafer', + 'wager', + 'wagon', + 'waist', + 'waive', + 'waltz', + 'warty', + 'waste', + 'watch', + 'water', + 'waver', + 'waxen', + 'weary', + 'weave', + 'wedge', + 'weedy', + 'weigh', + 'weird', + 'welch', + 'welsh', + 'wench', + 'whack', + 'whale', + 'wharf', + 'wheat', + 'wheel', + 'whelp', + 'where', + 'which', + 'whiff', + 'while', + 'whine', + 'whiny', + 'whirl', + 'whisk', + 'white', + 'whole', + 'whoop', + 'whose', + 'widen', + 'wider', + 'widow', + 'width', + 'wield', + 'wight', + 'willy', + 'wimpy', + 'wince', + 'winch', + 'windy', + 'wiser', + 'wispy', + 'witch', + 'witty', + 'woken', + 'woman', + 'women', + 'woody', + 'wooer', + 'wooly', + 'woozy', + 'wordy', + 'world', + 'worry', + 'worse', + 'worst', + 'worth', + 'would', + 'wound', + 'woven', + 'wrack', + 'wrath', + 'wreak', + 'wreck', + 'wrest', + 'wring', + 'wrist', + 'write', + 'wrong', + 'wrote', + 'wrung', + 'wryly', + 'yacht', + 'yearn', + 'yeast', + 'yield', + 'young', + 'youth', + 'zebra', + 'zesty', + 'zonal' +]; + +/** The list of valid guesses, of which the list of possible words is a subset */ +export const allowed = new Set([ + ...words, + 'aahed', + 'aalii', + 'aargh', + 'aarti', + 'abaca', + 'abaci', + 'abacs', + 'abaft', + 'abaka', + 'abamp', + 'aband', + 'abash', + 'abask', + 'abaya', + 'abbas', + 'abbed', + 'abbes', + 'abcee', + 'abeam', + 'abear', + 'abele', + 'abers', + 'abets', + 'abies', + 'abler', + 'ables', + 'ablet', + 'ablow', + 'abmho', + 'abohm', + 'aboil', + 'aboma', + 'aboon', + 'abord', + 'abore', + 'abram', + 'abray', + 'abrim', + 'abrin', + 'abris', + 'absey', + 'absit', + 'abuna', + 'abune', + 'abuts', + 'abuzz', + 'abyes', + 'abysm', + 'acais', + 'acari', + 'accas', + 'accoy', + 'acerb', + 'acers', + 'aceta', + 'achar', + 'ached', + 'aches', + 'achoo', + 'acids', + 'acidy', + 'acing', + 'acini', + 'ackee', + 'acker', + 'acmes', + 'acmic', + 'acned', + 'acnes', + 'acock', + 'acold', + 'acred', + 'acres', + 'acros', + 'acted', + 'actin', + 'acton', + 'acyls', + 'adaws', + 'adays', + 'adbot', + 'addax', + 'added', + 'adder', + 'addio', + 'addle', + 'adeem', + 'adhan', + 'adieu', + 'adios', + 'adits', + 'adman', + 'admen', + 'admix', + 'adobo', + 'adown', + 'adoze', + 'adrad', + 'adred', + 'adsum', + 'aduki', + 'adunc', + 'adust', + 'advew', + 'adyta', + 'adzed', + 'adzes', + 'aecia', + 'aedes', + 'aegis', + 'aeons', + 'aerie', + 'aeros', + 'aesir', + 'afald', + 'afara', + 'afars', + 'afear', + 'aflaj', + 'afore', + 'afrit', + 'afros', + 'agama', + 'agami', + 'agars', + 'agast', + 'agave', + 'agaze', + 'agene', + 'agers', + 'agger', + 'aggie', + 'aggri', + 'aggro', + 'aggry', + 'aghas', + 'agila', + 'agios', + 'agism', + 'agist', + 'agita', + 'aglee', + 'aglet', + 'agley', + 'agloo', + 'aglus', + 'agmas', + 'agoge', + 'agone', + 'agons', + 'agood', + 'agria', + 'agrin', + 'agros', + 'agued', + 'agues', + 'aguna', + 'aguti', + 'aheap', + 'ahent', + 'ahigh', + 'ahind', + 'ahing', + 'ahint', + 'ahold', + 'ahull', + 'ahuru', + 'aidas', + 'aided', + 'aides', + 'aidoi', + 'aidos', + 'aiery', + 'aigas', + 'aight', + 'ailed', + 'aimed', + 'aimer', + 'ainee', + 'ainga', + 'aioli', + 'aired', + 'airer', + 'airns', + 'airth', + 'airts', + 'aitch', + 'aitus', + 'aiver', + 'aiyee', + 'aizle', + 'ajies', + 'ajiva', + 'ajuga', + 'ajwan', + 'akees', + 'akela', + 'akene', + 'aking', + 'akita', + 'akkas', + 'alaap', + 'alack', + 'alamo', + 'aland', + 'alane', + 'alang', + 'alans', + 'alant', + 'alapa', + 'alaps', + 'alary', + 'alate', + 'alays', + 'albas', + 'albee', + 'alcid', + 'alcos', + 'aldea', + 'alder', + 'aldol', + 'aleck', + 'alecs', + 'alefs', + 'aleft', + 'aleph', + 'alews', + 'aleye', + 'alfas', + 'algal', + 'algas', + 'algid', + 'algin', + 'algor', + 'algum', + 'alias', + 'alifs', + 'aline', + 'alist', + 'aliya', + 'alkie', + 'alkos', + 'alkyd', + 'alkyl', + 'allee', + 'allel', + 'allis', + 'allod', + 'allyl', + 'almah', + 'almas', + 'almeh', + 'almes', + 'almud', + 'almug', + 'alods', + 'aloed', + 'aloes', + 'aloha', + 'aloin', + 'aloos', + 'alowe', + 'altho', + 'altos', + 'alula', + 'alums', + 'alure', + 'alvar', + 'alway', + 'amahs', + 'amain', + 'amate', + 'amaut', + 'amban', + 'ambit', + 'ambos', + 'ambry', + 'ameba', + 'ameer', + 'amene', + 'amens', + 'ament', + 'amias', + 'amice', + 'amici', + 'amide', + 'amido', + 'amids', + 'amies', + 'amiga', + 'amigo', + 'amine', + 'amino', + 'amins', + 'amirs', + 'amlas', + 'amman', + 'ammon', + 'ammos', + 'amnia', + 'amnic', + 'amnio', + 'amoks', + 'amole', + 'amort', + 'amour', + 'amove', + 'amowt', + 'amped', + 'ampul', + 'amrit', + 'amuck', + 'amyls', + 'anana', + 'anata', + 'ancho', + 'ancle', + 'ancon', + 'andro', + 'anear', + 'anele', + 'anent', + 'angas', + 'anglo', + 'anigh', + 'anile', + 'anils', + 'anima', + 'animi', + 'anion', + 'anise', + 'anker', + 'ankhs', + 'ankus', + 'anlas', + 'annal', + 'annas', + 'annat', + 'anoas', + 'anole', + 'anomy', + 'ansae', + 'antae', + 'antar', + 'antas', + 'anted', + 'antes', + 'antis', + 'antra', + 'antre', + 'antsy', + 'anura', + 'anyon', + 'apace', + 'apage', + 'apaid', + 'apayd', + 'apays', + 'apeak', + 'apeek', + 'apers', + 'apert', + 'apery', + 'apgar', + 'aphis', + 'apian', + 'apiol', + 'apish', + 'apism', + 'apode', + 'apods', + 'apoop', + 'aport', + 'appal', + 'appay', + 'appel', + 'appro', + 'appui', + 'appuy', + 'apres', + 'apses', + 'apsis', + 'apsos', + 'apted', + 'apter', + 'aquae', + 'aquas', + 'araba', + 'araks', + 'arame', + 'arars', + 'arbas', + 'arced', + 'archi', + 'arcos', + 'arcus', + 'ardeb', + 'ardri', + 'aread', + 'areae', + 'areal', + 'arear', + 'areas', + 'areca', + 'aredd', + 'arede', + 'arefy', + 'areic', + 'arene', + 'arepa', + 'arere', + 'arete', + 'arets', + 'arett', + 'argal', + 'argan', + 'argil', + 'argle', + 'argol', + 'argon', + 'argot', + 'argus', + 'arhat', + 'arias', + 'ariel', + 'ariki', + 'arils', + 'ariot', + 'arish', + 'arked', + 'arled', + 'arles', + 'armed', + 'armer', + 'armet', + 'armil', + 'arnas', + 'arnut', + 'aroba', + 'aroha', + 'aroid', + 'arpas', + 'arpen', + 'arrah', + 'arras', + 'arret', + 'arris', + 'arroz', + 'arsed', + 'arses', + 'arsey', + 'arsis', + 'artal', + 'artel', + 'artic', + 'artis', + 'aruhe', + 'arums', + 'arval', + 'arvee', + 'arvos', + 'aryls', + 'asana', + 'ascon', + 'ascus', + 'asdic', + 'ashed', + 'ashes', + 'ashet', + 'asked', + 'asker', + 'askoi', + 'askos', + 'aspen', + 'asper', + 'aspic', + 'aspie', + 'aspis', + 'aspro', + 'assai', + 'assam', + 'asses', + 'assez', + 'assot', + 'aster', + 'astir', + 'astun', + 'asura', + 'asway', + 'aswim', + 'asyla', + 'ataps', + 'ataxy', + 'atigi', + 'atilt', + 'atimy', + 'atlas', + 'atman', + 'atmas', + 'atmos', + 'atocs', + 'atoke', + 'atoks', + 'atoms', + 'atomy', + 'atony', + 'atopy', + 'atria', + 'atrip', + 'attap', + 'attar', + 'atuas', + 'audad', + 'auger', + 'aught', + 'aulas', + 'aulic', + 'auloi', + 'aulos', + 'aumil', + 'aunes', + 'aunts', + 'aurae', + 'aural', + 'aurar', + 'auras', + 'aurei', + 'aures', + 'auric', + 'auris', + 'aurum', + 'autos', + 'auxin', + 'avale', + 'avant', + 'avast', + 'avels', + 'avens', + 'avers', + 'avgas', + 'avine', + 'avion', + 'avise', + 'aviso', + 'avize', + 'avows', + 'avyze', + 'awarn', + 'awato', + 'awave', + 'aways', + 'awdls', + 'aweel', + 'aweto', + 'awing', + 'awmry', + 'awned', + 'awner', + 'awols', + 'awork', + 'axels', + 'axile', + 'axils', + 'axing', + 'axite', + 'axled', + 'axles', + 'axman', + 'axmen', + 'axoid', + 'axone', + 'axons', + 'ayahs', + 'ayaya', + 'ayelp', + 'aygre', + 'ayins', + 'ayont', + 'ayres', + 'ayrie', + 'azans', + 'azide', + 'azido', + 'azine', + 'azlon', + 'azoic', + 'azole', + 'azons', + 'azote', + 'azoth', + 'azuki', + 'azurn', + 'azury', + 'azygy', + 'azyme', + 'azyms', + 'baaed', + 'baals', + 'babas', + 'babel', + 'babes', + 'babka', + 'baboo', + 'babul', + 'babus', + 'bacca', + 'bacco', + 'baccy', + 'bacha', + 'bachs', + 'backs', + 'baddy', + 'baels', + 'baffs', + 'baffy', + 'bafts', + 'baghs', + 'bagie', + 'bahts', + 'bahus', + 'bahut', + 'bails', + 'bairn', + 'baisa', + 'baith', + 'baits', + 'baiza', + 'baize', + 'bajan', + 'bajra', + 'bajri', + 'bajus', + 'baked', + 'baken', + 'bakes', + 'bakra', + 'balas', + 'balds', + 'baldy', + 'baled', + 'bales', + 'balks', + 'balky', + 'balls', + 'bally', + 'balms', + 'baloo', + 'balsa', + 'balti', + 'balun', + 'balus', + 'bambi', + 'banak', + 'banco', + 'bancs', + 'banda', + 'bandh', + 'bands', + 'bandy', + 'baned', + 'banes', + 'bangs', + 'bania', + 'banks', + 'banns', + 'bants', + 'bantu', + 'banty', + 'banya', + 'bapus', + 'barbe', + 'barbs', + 'barby', + 'barca', + 'barde', + 'bardo', + 'bards', + 'bardy', + 'bared', + 'barer', + 'bares', + 'barfi', + 'barfs', + 'baric', + 'barks', + 'barky', + 'barms', + 'barmy', + 'barns', + 'barny', + 'barps', + 'barra', + 'barre', + 'barro', + 'barry', + 'barye', + 'basan', + 'based', + 'basen', + 'baser', + 'bases', + 'basho', + 'basij', + 'basks', + 'bason', + 'basse', + 'bassi', + 'basso', + 'bassy', + 'basta', + 'basti', + 'basto', + 'basts', + 'bated', + 'bates', + 'baths', + 'batik', + 'batta', + 'batts', + 'battu', + 'bauds', + 'bauks', + 'baulk', + 'baurs', + 'bavin', + 'bawds', + 'bawks', + 'bawls', + 'bawns', + 'bawrs', + 'bawty', + 'bayed', + 'bayer', + 'bayes', + 'bayle', + 'bayts', + 'bazar', + 'bazoo', + 'beads', + 'beaks', + 'beaky', + 'beals', + 'beams', + 'beamy', + 'beano', + 'beans', + 'beany', + 'beare', + 'bears', + 'beath', + 'beats', + 'beaty', + 'beaus', + 'beaut', + 'beaux', + 'bebop', + 'becap', + 'becke', + 'becks', + 'bedad', + 'bedel', + 'bedes', + 'bedew', + 'bedim', + 'bedye', + 'beedi', + 'beefs', + 'beeps', + 'beers', + 'beery', + 'beets', + 'befog', + 'begad', + 'begar', + 'begem', + 'begot', + 'begum', + 'beige', + 'beigy', + 'beins', + 'bekah', + 'belah', + 'belar', + 'belay', + 'belee', + 'belga', + 'bells', + 'belon', + 'belts', + 'bemad', + 'bemas', + 'bemix', + 'bemud', + 'bends', + 'bendy', + 'benes', + 'benet', + 'benga', + 'benis', + 'benne', + 'benni', + 'benny', + 'bento', + 'bents', + 'benty', + 'bepat', + 'beray', + 'beres', + 'bergs', + 'berko', + 'berks', + 'berme', + 'berms', + 'berob', + 'beryl', + 'besat', + 'besaw', + 'besee', + 'beses', + 'besit', + 'besom', + 'besot', + 'besti', + 'bests', + 'betas', + 'beted', + 'betes', + 'beths', + 'betid', + 'beton', + 'betta', + 'betty', + 'bever', + 'bevor', + 'bevue', + 'bevvy', + 'bewet', + 'bewig', + 'bezes', + 'bezil', + 'bezzy', + 'bhais', + 'bhaji', + 'bhang', + 'bhats', + 'bhels', + 'bhoot', + 'bhuna', + 'bhuts', + 'biach', + 'biali', + 'bialy', + 'bibbs', + 'bibes', + 'biccy', + 'bices', + 'bided', + 'bider', + 'bides', + 'bidet', + 'bidis', + 'bidon', + 'bield', + 'biers', + 'biffo', + 'biffs', + 'biffy', + 'bifid', + 'bigae', + 'biggs', + 'biggy', + 'bigha', + 'bight', + 'bigly', + 'bigos', + 'bijou', + 'biked', + 'biker', + 'bikes', + 'bikie', + 'bilbo', + 'bilby', + 'biled', + 'biles', + 'bilgy', + 'bilks', + 'bills', + 'bimah', + 'bimas', + 'bimbo', + 'binal', + 'bindi', + 'binds', + 'biner', + 'bines', + 'bings', + 'bingy', + 'binit', + 'binks', + 'bints', + 'biogs', + 'biont', + 'biota', + 'biped', + 'bipod', + 'birds', + 'birks', + 'birle', + 'birls', + 'biros', + 'birrs', + 'birse', + 'birsy', + 'bises', + 'bisks', + 'bisom', + 'bitch', + 'biter', + 'bites', + 'bitos', + 'bitou', + 'bitsy', + 'bitte', + 'bitts', + 'bivia', + 'bivvy', + 'bizes', + 'bizzo', + 'bizzy', + 'blabs', + 'blads', + 'blady', + 'blaer', + 'blaes', + 'blaff', + 'blags', + 'blahs', + 'blain', + 'blams', + 'blart', + 'blase', + 'blash', + 'blate', + 'blats', + 'blatt', + 'blaud', + 'blawn', + 'blaws', + 'blays', + 'blear', + 'blebs', + 'blech', + 'blees', + 'blent', + 'blert', + 'blest', + 'blets', + 'bleys', + 'blimy', + 'bling', + 'blini', + 'blins', + 'bliny', + 'blips', + 'blist', + 'blite', + 'blits', + 'blive', + 'blobs', + 'blocs', + 'blogs', + 'blook', + 'bloop', + 'blore', + 'blots', + 'blows', + 'blowy', + 'blubs', + 'blude', + 'bluds', + 'bludy', + 'blued', + 'blues', + 'bluet', + 'bluey', + 'bluid', + 'blume', + 'blunk', + 'blurs', + 'blype', + 'boabs', + 'boaks', + 'boars', + 'boart', + 'boats', + 'bobac', + 'bobak', + 'bobas', + 'bobol', + 'bobos', + 'bocca', + 'bocce', + 'bocci', + 'boche', + 'bocks', + 'boded', + 'bodes', + 'bodge', + 'bodhi', + 'bodle', + 'boeps', + 'boets', + 'boeuf', + 'boffo', + 'boffs', + 'bogan', + 'bogey', + 'boggy', + 'bogie', + 'bogle', + 'bogue', + 'bogus', + 'bohea', + 'bohos', + 'boils', + 'boing', + 'boink', + 'boite', + 'boked', + 'bokeh', + 'bokes', + 'bokos', + 'bolar', + 'bolas', + 'bolds', + 'boles', + 'bolix', + 'bolls', + 'bolos', + 'bolts', + 'bolus', + 'bomas', + 'bombe', + 'bombo', + 'bombs', + 'bonce', + 'bonds', + 'boned', + 'boner', + 'bones', + 'bongs', + 'bonie', + 'bonks', + 'bonne', + 'bonny', + 'bonza', + 'bonze', + 'booai', + 'booay', + 'boobs', + 'boody', + 'booed', + 'boofy', + 'boogy', + 'boohs', + 'books', + 'booky', + 'bools', + 'booms', + 'boomy', + 'boong', + 'boons', + 'boord', + 'boors', + 'boose', + 'boots', + 'boppy', + 'borak', + 'boral', + 'boras', + 'borde', + 'bords', + 'bored', + 'boree', + 'borel', + 'borer', + 'bores', + 'borgo', + 'boric', + 'borks', + 'borms', + 'borna', + 'boron', + 'borts', + 'borty', + 'bortz', + 'bosie', + 'bosks', + 'bosky', + 'boson', + 'bosun', + 'botas', + 'botel', + 'botes', + 'bothy', + 'botte', + 'botts', + 'botty', + 'bouge', + 'bouks', + 'boult', + 'bouns', + 'bourd', + 'bourg', + 'bourn', + 'bouse', + 'bousy', + 'bouts', + 'bovid', + 'bowat', + 'bowed', + 'bower', + 'bowes', + 'bowet', + 'bowie', + 'bowls', + 'bowne', + 'bowrs', + 'bowse', + 'boxed', + 'boxen', + 'boxes', + 'boxla', + 'boxty', + 'boyar', + 'boyau', + 'boyed', + 'boyfs', + 'boygs', + 'boyla', + 'boyos', + 'boysy', + 'bozos', + 'braai', + 'brach', + 'brack', + 'bract', + 'brads', + 'braes', + 'brags', + 'brail', + 'braks', + 'braky', + 'brame', + 'brane', + 'brank', + 'brans', + 'brant', + 'brast', + 'brats', + 'brava', + 'bravi', + 'braws', + 'braxy', + 'brays', + 'braza', + 'braze', + 'bream', + 'brede', + 'breds', + 'breem', + 'breer', + 'brees', + 'breid', + 'breis', + 'breme', + 'brens', + 'brent', + 'brere', + 'brers', + 'breve', + 'brews', + 'breys', + 'brier', + 'bries', + 'brigs', + 'briki', + 'briks', + 'brill', + 'brims', + 'brins', + 'brios', + 'brise', + 'briss', + 'brith', + 'brits', + 'britt', + 'brize', + 'broch', + 'brock', + 'brods', + 'brogh', + 'brogs', + 'brome', + 'bromo', + 'bronc', + 'brond', + 'brool', + 'broos', + 'brose', + 'brosy', + 'brows', + 'brugh', + 'bruin', + 'bruit', + 'brule', + 'brume', + 'brung', + 'brusk', + 'brust', + 'bruts', + 'buats', + 'buaze', + 'bubal', + 'bubas', + 'bubba', + 'bubbe', + 'bubby', + 'bubus', + 'buchu', + 'bucko', + 'bucks', + 'bucku', + 'budas', + 'budis', + 'budos', + 'buffa', + 'buffe', + 'buffi', + 'buffo', + 'buffs', + 'buffy', + 'bufos', + 'bufty', + 'buhls', + 'buhrs', + 'buiks', + 'buist', + 'bukes', + 'bulbs', + 'bulgy', + 'bulks', + 'bulla', + 'bulls', + 'bulse', + 'bumbo', + 'bumfs', + 'bumph', + 'bumps', + 'bumpy', + 'bunas', + 'bunce', + 'bunco', + 'bunde', + 'bundh', + 'bunds', + 'bundt', + 'bundu', + 'bundy', + 'bungs', + 'bungy', + 'bunia', + 'bunje', + 'bunjy', + 'bunko', + 'bunks', + 'bunns', + 'bunts', + 'bunty', + 'bunya', + 'buoys', + 'buppy', + 'buran', + 'buras', + 'burbs', + 'burds', + 'buret', + 'burfi', + 'burgh', + 'burgs', + 'burin', + 'burka', + 'burke', + 'burks', + 'burls', + 'burns', + 'buroo', + 'burps', + 'burqa', + 'burro', + 'burrs', + 'burry', + 'bursa', + 'burse', + 'busby', + 'buses', + 'busks', + 'busky', + 'bussu', + 'busti', + 'busts', + 'busty', + 'buteo', + 'butes', + 'butle', + 'butoh', + 'butts', + 'butty', + 'butut', + 'butyl', + 'buzzy', + 'bwana', + 'bwazi', + 'byded', + 'bydes', + 'byked', + 'bykes', + 'byres', + 'byrls', + 'byssi', + 'bytes', + 'byway', + 'caaed', + 'cabas', + 'caber', + 'cabob', + 'caboc', + 'cabre', + 'cacas', + 'cacks', + 'cacky', + 'cadee', + 'cades', + 'cadge', + 'cadgy', + 'cadie', + 'cadis', + 'cadre', + 'caeca', + 'caese', + 'cafes', + 'caffs', + 'caged', + 'cager', + 'cages', + 'cagot', + 'cahow', + 'caids', + 'cains', + 'caird', + 'cajon', + 'cajun', + 'caked', + 'cakes', + 'cakey', + 'calfs', + 'calid', + 'calif', + 'calix', + 'calks', + 'calla', + 'calls', + 'calms', + 'calmy', + 'calos', + 'calpa', + 'calps', + 'calve', + 'calyx', + 'caman', + 'camas', + 'cames', + 'camis', + 'camos', + 'campi', + 'campo', + 'camps', + 'campy', + 'camus', + 'caned', + 'caneh', + 'caner', + 'canes', + 'cangs', + 'canid', + 'canna', + 'canns', + 'canso', + 'canst', + 'canto', + 'cants', + 'canty', + 'capas', + 'caped', + 'capes', + 'capex', + 'caphs', + 'capiz', + 'caple', + 'capon', + 'capos', + 'capot', + 'capri', + 'capul', + 'carap', + 'carbo', + 'carbs', + 'carby', + 'cardi', + 'cards', + 'cardy', + 'cared', + 'carer', + 'cares', + 'caret', + 'carex', + 'carks', + 'carle', + 'carls', + 'carns', + 'carny', + 'carob', + 'carom', + 'caron', + 'carpi', + 'carps', + 'carrs', + 'carse', + 'carta', + 'carte', + 'carts', + 'carvy', + 'casas', + 'casco', + 'cased', + 'cases', + 'casks', + 'casky', + 'casts', + 'casus', + 'cates', + 'cauda', + 'cauks', + 'cauld', + 'cauls', + 'caums', + 'caups', + 'cauri', + 'causa', + 'cavas', + 'caved', + 'cavel', + 'caver', + 'caves', + 'cavie', + 'cawed', + 'cawks', + 'caxon', + 'ceaze', + 'cebid', + 'cecal', + 'cecum', + 'ceded', + 'ceder', + 'cedes', + 'cedis', + 'ceiba', + 'ceili', + 'ceils', + 'celeb', + 'cella', + 'celli', + 'cells', + 'celom', + 'celts', + 'cense', + 'cento', + 'cents', + 'centu', + 'ceorl', + 'cepes', + 'cerci', + 'cered', + 'ceres', + 'cerge', + 'ceria', + 'ceric', + 'cerne', + 'ceroc', + 'ceros', + 'certs', + 'certy', + 'cesse', + 'cesta', + 'cesti', + 'cetes', + 'cetyl', + 'cezve', + 'chace', + 'chack', + 'chaco', + 'chado', + 'chads', + 'chaft', + 'chais', + 'chals', + 'chams', + 'chana', + 'chang', + 'chank', + 'chape', + 'chaps', + 'chapt', + 'chara', + 'chare', + 'chark', + 'charr', + 'chars', + 'chary', + 'chats', + 'chave', + 'chavs', + 'chawk', + 'chaws', + 'chaya', + 'chays', + 'cheep', + 'chefs', + 'cheka', + 'chela', + 'chelp', + 'chemo', + 'chems', + 'chere', + 'chert', + 'cheth', + 'chevy', + 'chews', + 'chewy', + 'chiao', + 'chias', + 'chibs', + 'chica', + 'chich', + 'chico', + 'chics', + 'chiel', + 'chiks', + 'chile', + 'chimb', + 'chimo', + 'chimp', + 'chine', + 'ching', + 'chink', + 'chino', + 'chins', + 'chips', + 'chirk', + 'chirl', + 'chirm', + 'chiro', + 'chirr', + 'chirt', + 'chiru', + 'chits', + 'chive', + 'chivs', + 'chivy', + 'chizz', + 'choco', + 'chocs', + 'chode', + 'chogs', + 'choil', + 'choko', + 'choky', + 'chola', + 'choli', + 'cholo', + 'chomp', + 'chons', + 'choof', + 'chook', + 'choom', + 'choon', + 'chops', + 'chota', + 'chott', + 'chout', + 'choux', + 'chowk', + 'chows', + 'chubs', + 'chufa', + 'chuff', + 'chugs', + 'chums', + 'churl', + 'churr', + 'chuse', + 'chuts', + 'chyle', + 'chyme', + 'chynd', + 'cibol', + 'cided', + 'cides', + 'ciels', + 'ciggy', + 'cilia', + 'cills', + 'cimar', + 'cimex', + 'cinct', + 'cines', + 'cinqs', + 'cions', + 'cippi', + 'circs', + 'cires', + 'cirls', + 'cirri', + 'cisco', + 'cissy', + 'cists', + 'cital', + 'cited', + 'citer', + 'cites', + 'cives', + 'civet', + 'civie', + 'civvy', + 'clach', + 'clade', + 'clads', + 'claes', + 'clags', + 'clame', + 'clams', + 'clans', + 'claps', + 'clapt', + 'claro', + 'clart', + 'clary', + 'clast', + 'clats', + 'claut', + 'clave', + 'clavi', + 'claws', + 'clays', + 'cleck', + 'cleek', + 'cleep', + 'clefs', + 'clegs', + 'cleik', + 'clems', + 'clepe', + 'clept', + 'cleve', + 'clews', + 'clied', + 'clies', + 'clift', + 'clime', + 'cline', + 'clint', + 'clipe', + 'clips', + 'clipt', + 'clits', + 'cloam', + 'clods', + 'cloff', + 'clogs', + 'cloke', + 'clomb', + 'clomp', + 'clonk', + 'clons', + 'cloop', + 'cloot', + 'clops', + 'clote', + 'clots', + 'clour', + 'clous', + 'clows', + 'cloye', + 'cloys', + 'cloze', + 'clubs', + 'clues', + 'cluey', + 'clunk', + 'clype', + 'cnida', + 'coact', + 'coady', + 'coala', + 'coals', + 'coaly', + 'coapt', + 'coarb', + 'coate', + 'coati', + 'coats', + 'cobbs', + 'cobby', + 'cobia', + 'coble', + 'cobza', + 'cocas', + 'cocci', + 'cocco', + 'cocks', + 'cocky', + 'cocos', + 'codas', + 'codec', + 'coded', + 'coden', + 'coder', + 'codes', + 'codex', + 'codon', + 'coeds', + 'coffs', + 'cogie', + 'cogon', + 'cogue', + 'cohab', + 'cohen', + 'cohoe', + 'cohog', + 'cohos', + 'coifs', + 'coign', + 'coils', + 'coins', + 'coirs', + 'coits', + 'coked', + 'cokes', + 'colas', + 'colby', + 'colds', + 'coled', + 'coles', + 'coley', + 'colic', + 'colin', + 'colls', + 'colly', + 'colog', + 'colts', + 'colza', + 'comae', + 'comal', + 'comas', + 'combe', + 'combi', + 'combo', + 'combs', + 'comby', + 'comer', + 'comes', + 'comix', + 'commo', + 'comms', + 'commy', + 'compo', + 'comps', + 'compt', + 'comte', + 'comus', + 'coned', + 'cones', + 'coney', + 'confs', + 'conga', + 'conge', + 'congo', + 'conia', + 'conin', + 'conks', + 'conky', + 'conne', + 'conns', + 'conte', + 'conto', + 'conus', + 'convo', + 'cooch', + 'cooed', + 'cooee', + 'cooer', + 'cooey', + 'coofs', + 'cooks', + 'cooky', + 'cools', + 'cooly', + 'coomb', + 'cooms', + 'coomy', + 'coons', + 'coops', + 'coopt', + 'coost', + 'coots', + 'cooze', + 'copal', + 'copay', + 'coped', + 'copen', + 'coper', + 'copes', + 'coppy', + 'copra', + 'copsy', + 'coqui', + 'coram', + 'corbe', + 'corby', + 'cords', + 'cored', + 'cores', + 'corey', + 'corgi', + 'coria', + 'corks', + 'corky', + 'corms', + 'corni', + 'corno', + 'corns', + 'cornu', + 'corps', + 'corse', + 'corso', + 'cosec', + 'cosed', + 'coses', + 'coset', + 'cosey', + 'cosie', + 'costa', + 'coste', + 'costs', + 'cotan', + 'coted', + 'cotes', + 'coths', + 'cotta', + 'cotts', + 'coude', + 'coups', + 'courb', + 'courd', + 'coure', + 'cours', + 'couta', + 'couth', + 'coved', + 'coves', + 'covin', + 'cowal', + 'cowan', + 'cowed', + 'cowks', + 'cowls', + 'cowps', + 'cowry', + 'coxae', + 'coxal', + 'coxed', + 'coxes', + 'coxib', + 'coyau', + 'coyed', + 'coyer', + 'coypu', + 'cozed', + 'cozen', + 'cozes', + 'cozey', + 'cozie', + 'craal', + 'crabs', + 'crags', + 'craic', + 'craig', + 'crake', + 'crame', + 'crams', + 'crans', + 'crape', + 'craps', + 'crapy', + 'crare', + 'craws', + 'crays', + 'creds', + 'creel', + 'crees', + 'crems', + 'crena', + 'creps', + 'crepy', + 'crewe', + 'crews', + 'crias', + 'cribs', + 'cries', + 'crims', + 'crine', + 'crios', + 'cripe', + 'crips', + 'crise', + 'crith', + 'crits', + 'croci', + 'crocs', + 'croft', + 'crogs', + 'cromb', + 'crome', + 'cronk', + 'crons', + 'crool', + 'croon', + 'crops', + 'crore', + 'crost', + 'crout', + 'crows', + 'croze', + 'cruck', + 'crudo', + 'cruds', + 'crudy', + 'crues', + 'cruet', + 'cruft', + 'crunk', + 'cruor', + 'crura', + 'cruse', + 'crusy', + 'cruve', + 'crwth', + 'cryer', + 'ctene', + 'cubby', + 'cubeb', + 'cubed', + 'cuber', + 'cubes', + 'cubit', + 'cuddy', + 'cuffo', + 'cuffs', + 'cuifs', + 'cuing', + 'cuish', + 'cuits', + 'cukes', + 'culch', + 'culet', + 'culex', + 'culls', + 'cully', + 'culms', + 'culpa', + 'culti', + 'cults', + 'culty', + 'cumec', + 'cundy', + 'cunei', + 'cunit', + 'cunts', + 'cupel', + 'cupid', + 'cuppa', + 'cuppy', + 'curat', + 'curbs', + 'curch', + 'curds', + 'curdy', + 'cured', + 'curer', + 'cures', + 'curet', + 'curfs', + 'curia', + 'curie', + 'curli', + 'curls', + 'curns', + 'curny', + 'currs', + 'cursi', + 'curst', + 'cusec', + 'cushy', + 'cusks', + 'cusps', + 'cuspy', + 'cusso', + 'cusum', + 'cutch', + 'cuter', + 'cutes', + 'cutey', + 'cutin', + 'cutis', + 'cutto', + 'cutty', + 'cutup', + 'cuvee', + 'cuzes', + 'cwtch', + 'cyano', + 'cyans', + 'cycad', + 'cycas', + 'cyclo', + 'cyder', + 'cylix', + 'cymae', + 'cymar', + 'cymas', + 'cymes', + 'cymol', + 'cysts', + 'cytes', + 'cyton', + 'czars', + 'daals', + 'dabba', + 'daces', + 'dacha', + 'dacks', + 'dadah', + 'dadas', + 'dados', + 'daffs', + 'daffy', + 'dagga', + 'daggy', + 'dagos', + 'dahls', + 'daiko', + 'daine', + 'daint', + 'daker', + 'daled', + 'dales', + 'dalis', + 'dalle', + 'dalts', + 'daman', + 'damar', + 'dames', + 'damme', + 'damns', + 'damps', + 'dampy', + 'dancy', + 'dangs', + 'danio', + 'danks', + 'danny', + 'dants', + 'daraf', + 'darbs', + 'darcy', + 'dared', + 'darer', + 'dares', + 'darga', + 'dargs', + 'daric', + 'daris', + 'darks', + 'darky', + 'darns', + 'darre', + 'darts', + 'darzi', + 'dashi', + 'dashy', + 'datal', + 'dated', + 'dater', + 'dates', + 'datos', + 'datto', + 'daube', + 'daubs', + 'dauby', + 'dauds', + 'dault', + 'daurs', + 'dauts', + 'daven', + 'davit', + 'dawah', + 'dawds', + 'dawed', + 'dawen', + 'dawks', + 'dawns', + 'dawts', + 'dayan', + 'daych', + 'daynt', + 'dazed', + 'dazer', + 'dazes', + 'deads', + 'deair', + 'deals', + 'deans', + 'deare', + 'dearn', + 'dears', + 'deary', + 'deash', + 'deave', + 'deaws', + 'deawy', + 'debag', + 'debby', + 'debel', + 'debes', + 'debts', + 'debud', + 'debur', + 'debus', + 'debye', + 'decad', + 'decaf', + 'decan', + 'decko', + 'decks', + 'decos', + 'dedal', + 'deeds', + 'deedy', + 'deely', + 'deems', + 'deens', + 'deeps', + 'deere', + 'deers', + 'deets', + 'deeve', + 'deevs', + 'defat', + 'deffo', + 'defis', + 'defog', + 'degas', + 'degum', + 'degus', + 'deice', + 'deids', + 'deify', + 'deils', + 'deism', + 'deist', + 'deked', + 'dekes', + 'dekko', + 'deled', + 'deles', + 'delfs', + 'delft', + 'delis', + 'dells', + 'delly', + 'delos', + 'delph', + 'delts', + 'deman', + 'demes', + 'demic', + 'demit', + 'demob', + 'demoi', + 'demos', + 'dempt', + 'denar', + 'denay', + 'dench', + 'denes', + 'denet', + 'denis', + 'dents', + 'deoxy', + 'derat', + 'deray', + 'dered', + 'deres', + 'derig', + 'derma', + 'derms', + 'derns', + 'derny', + 'deros', + 'derro', + 'derry', + 'derth', + 'dervs', + 'desex', + 'deshi', + 'desis', + 'desks', + 'desse', + 'devas', + 'devel', + 'devis', + 'devon', + 'devos', + 'devot', + 'dewan', + 'dewar', + 'dewax', + 'dewed', + 'dexes', + 'dexie', + 'dhaba', + 'dhaks', + 'dhals', + 'dhikr', + 'dhobi', + 'dhole', + 'dholl', + 'dhols', + 'dhoti', + 'dhows', + 'dhuti', + 'diact', + 'dials', + 'diane', + 'diazo', + 'dibbs', + 'diced', + 'dicer', + 'dices', + 'dicht', + 'dicks', + 'dicky', + 'dicot', + 'dicta', + 'dicts', + 'dicty', + 'diddy', + 'didie', + 'didos', + 'didst', + 'diebs', + 'diels', + 'diene', + 'diets', + 'diffs', + 'dight', + 'dikas', + 'diked', + 'diker', + 'dikes', + 'dikey', + 'dildo', + 'dilli', + 'dills', + 'dimbo', + 'dimer', + 'dimes', + 'dimps', + 'dinar', + 'dined', + 'dines', + 'dinge', + 'dings', + 'dinic', + 'dinks', + 'dinky', + 'dinna', + 'dinos', + 'dints', + 'diols', + 'diota', + 'dippy', + 'dipso', + 'diram', + 'direr', + 'dirke', + 'dirks', + 'dirls', + 'dirts', + 'disas', + 'disci', + 'discs', + 'dishy', + 'disks', + 'disme', + 'dital', + 'ditas', + 'dited', + 'dites', + 'ditsy', + 'ditts', + 'ditzy', + 'divan', + 'divas', + 'dived', + 'dives', + 'divis', + 'divna', + 'divos', + 'divot', + 'divvy', + 'diwan', + 'dixie', + 'dixit', + 'diyas', + 'dizen', + 'djinn', + 'djins', + 'doabs', + 'doats', + 'dobby', + 'dobes', + 'dobie', + 'dobla', + 'dobra', + 'dobro', + 'docht', + 'docks', + 'docos', + 'docus', + 'doddy', + 'dodos', + 'doeks', + 'doers', + 'doest', + 'doeth', + 'doffs', + 'dogan', + 'doges', + 'dogey', + 'doggo', + 'doggy', + 'dogie', + 'dohyo', + 'doilt', + 'doily', + 'doits', + 'dojos', + 'dolce', + 'dolci', + 'doled', + 'doles', + 'dolia', + 'dolls', + 'dolma', + 'dolor', + 'dolos', + 'dolts', + 'domal', + 'domed', + 'domes', + 'domic', + 'donah', + 'donas', + 'donee', + 'doner', + 'donga', + 'dongs', + 'donko', + 'donna', + 'donne', + 'donny', + 'donsy', + 'doobs', + 'dooce', + 'doody', + 'dooks', + 'doole', + 'dools', + 'dooly', + 'dooms', + 'doomy', + 'doona', + 'doorn', + 'doors', + 'doozy', + 'dopas', + 'doped', + 'doper', + 'dopes', + 'dorad', + 'dorba', + 'dorbs', + 'doree', + 'dores', + 'doric', + 'doris', + 'dorks', + 'dorky', + 'dorms', + 'dormy', + 'dorps', + 'dorrs', + 'dorsa', + 'dorse', + 'dorts', + 'dorty', + 'dosai', + 'dosas', + 'dosed', + 'doseh', + 'doser', + 'doses', + 'dosha', + 'dotal', + 'doted', + 'doter', + 'dotes', + 'dotty', + 'douar', + 'douce', + 'doucs', + 'douks', + 'doula', + 'douma', + 'doums', + 'doups', + 'doura', + 'douse', + 'douts', + 'doved', + 'doven', + 'dover', + 'doves', + 'dovie', + 'dowar', + 'dowds', + 'dowed', + 'dower', + 'dowie', + 'dowle', + 'dowls', + 'dowly', + 'downa', + 'downs', + 'dowps', + 'dowse', + 'dowts', + 'doxed', + 'doxes', + 'doxie', + 'doyen', + 'doyly', + 'dozed', + 'dozer', + 'dozes', + 'drabs', + 'drack', + 'draco', + 'draff', + 'drags', + 'drail', + 'drams', + 'drant', + 'draps', + 'drats', + 'drave', + 'draws', + 'drays', + 'drear', + 'dreck', + 'dreed', + 'dreer', + 'drees', + 'dregs', + 'dreks', + 'drent', + 'drere', + 'drest', + 'dreys', + 'dribs', + 'drice', + 'dries', + 'drily', + 'drips', + 'dript', + 'droid', + 'droil', + 'droke', + 'drole', + 'drome', + 'drony', + 'droob', + 'droog', + 'drook', + 'drops', + 'dropt', + 'drouk', + 'drows', + 'drubs', + 'drugs', + 'drums', + 'drupe', + 'druse', + 'drusy', + 'druxy', + 'dryad', + 'dryas', + 'dsobo', + 'dsomo', + 'duads', + 'duals', + 'duans', + 'duars', + 'dubbo', + 'ducal', + 'ducat', + 'duces', + 'ducks', + 'ducky', + 'ducts', + 'duddy', + 'duded', + 'dudes', + 'duels', + 'duets', + 'duett', + 'duffs', + 'dufus', + 'duing', + 'duits', + 'dukas', + 'duked', + 'dukes', + 'dukka', + 'dulce', + 'dules', + 'dulia', + 'dulls', + 'dulse', + 'dumas', + 'dumbo', + 'dumbs', + 'dumka', + 'dumky', + 'dumps', + 'dunam', + 'dunch', + 'dunes', + 'dungs', + 'dungy', + 'dunks', + 'dunno', + 'dunny', + 'dunsh', + 'dunts', + 'duomi', + 'duomo', + 'duped', + 'duper', + 'dupes', + 'duple', + 'duply', + 'duppy', + 'dural', + 'duras', + 'dured', + 'dures', + 'durgy', + 'durns', + 'duroc', + 'duros', + 'duroy', + 'durra', + 'durrs', + 'durry', + 'durst', + 'durum', + 'durzi', + 'dusks', + 'dusts', + 'duxes', + 'dwaal', + 'dwale', + 'dwalm', + 'dwams', + 'dwang', + 'dwaum', + 'dweeb', + 'dwile', + 'dwine', + 'dyads', + 'dyers', + 'dyked', + 'dykes', + 'dykey', + 'dykon', + 'dynel', + 'dynes', + 'dzhos', + 'eagre', + 'ealed', + 'eales', + 'eaned', + 'eards', + 'eared', + 'earls', + 'earns', + 'earnt', + 'earst', + 'eased', + 'easer', + 'eases', + 'easle', + 'easts', + 'eathe', + 'eaved', + 'eaves', + 'ebbed', + 'ebbet', + 'ebons', + 'ebook', + 'ecads', + 'eched', + 'eches', + 'echos', + 'ecrus', + 'edema', + 'edged', + 'edger', + 'edges', + 'edile', + 'edits', + 'educe', + 'educt', + 'eejit', + 'eensy', + 'eeven', + 'eevns', + 'effed', + 'egads', + 'egers', + 'egest', + 'eggar', + 'egged', + 'egger', + 'egmas', + 'ehing', + 'eider', + 'eidos', + 'eigne', + 'eiked', + 'eikon', + 'eilds', + 'eisel', + 'ejido', + 'ekkas', + 'elain', + 'eland', + 'elans', + 'elchi', + 'eldin', + 'elemi', + 'elfed', + 'eliad', + 'elint', + 'elmen', + 'eloge', + 'elogy', + 'eloin', + 'elops', + 'elpee', + 'elsin', + 'elute', + 'elvan', + 'elven', + 'elver', + 'elves', + 'emacs', + 'embar', + 'embay', + 'embog', + 'embow', + 'embox', + 'embus', + 'emeer', + 'emend', + 'emerg', + 'emery', + 'emeus', + 'emics', + 'emirs', + 'emits', + 'emmas', + 'emmer', + 'emmet', + 'emmew', + 'emmys', + 'emoji', + 'emong', + 'emote', + 'emove', + 'empts', + 'emule', + 'emure', + 'emyde', + 'emyds', + 'enarm', + 'enate', + 'ended', + 'ender', + 'endew', + 'endue', + 'enews', + 'enfix', + 'eniac', + 'enlit', + 'enmew', + 'ennog', + 'enoki', + 'enols', + 'enorm', + 'enows', + 'enrol', + 'ensew', + 'ensky', + 'entia', + 'enure', + 'enurn', + 'envoi', + 'enzym', + 'eorls', + 'eosin', + 'epact', + 'epees', + 'ephah', + 'ephas', + 'ephod', + 'ephor', + 'epics', + 'epode', + 'epopt', + 'epris', + 'eques', + 'equid', + 'erbia', + 'erevs', + 'ergon', + 'ergos', + 'ergot', + 'erhus', + 'erica', + 'erick', + 'erics', + 'ering', + 'erned', + 'ernes', + 'erose', + 'erred', + 'erses', + 'eruct', + 'erugo', + 'eruvs', + 'erven', + 'ervil', + 'escar', + 'escot', + 'esile', + 'eskar', + 'esker', + 'esnes', + 'esses', + 'estoc', + 'estop', + 'estro', + 'etage', + 'etape', + 'etats', + 'etens', + 'ethal', + 'ethne', + 'ethyl', + 'etics', + 'etnas', + 'ettin', + 'ettle', + 'etuis', + 'etwee', + 'etyma', + 'eughs', + 'euked', + 'eupad', + 'euros', + 'eusol', + 'evens', + 'evert', + 'evets', + 'evhoe', + 'evils', + 'evite', + 'evohe', + 'ewers', + 'ewest', + 'ewhow', + 'ewked', + 'exams', + 'exeat', + 'execs', + 'exeem', + 'exeme', + 'exfil', + 'exies', + 'exine', + 'exing', + 'exits', + 'exode', + 'exome', + 'exons', + 'expat', + 'expos', + 'exude', + 'exuls', + 'exurb', + 'eyass', + 'eyers', + 'eyots', + 'eyras', + 'eyres', + 'eyrie', + 'eyrir', + 'ezine', + 'fabby', + 'faced', + 'facer', + 'faces', + 'facia', + 'facta', + 'facts', + 'faddy', + 'faded', + 'fader', + 'fades', + 'fadge', + 'fados', + 'faena', + 'faery', + 'faffs', + 'faffy', + 'faggy', + 'fagin', + 'fagot', + 'faiks', + 'fails', + 'faine', + 'fains', + 'fairs', + 'faked', + 'faker', + 'fakes', + 'fakey', + 'fakie', + 'fakir', + 'falaj', + 'falls', + 'famed', + 'fames', + 'fanal', + 'fands', + 'fanes', + 'fanga', + 'fango', + 'fangs', + 'fanks', + 'fanon', + 'fanos', + 'fanum', + 'faqir', + 'farad', + 'farci', + 'farcy', + 'fards', + 'fared', + 'farer', + 'fares', + 'farle', + 'farls', + 'farms', + 'faros', + 'farro', + 'farse', + 'farts', + 'fasci', + 'fasti', + 'fasts', + 'fated', + 'fates', + 'fatly', + 'fatso', + 'fatwa', + 'faugh', + 'fauld', + 'fauns', + 'faurd', + 'fauts', + 'fauve', + 'favas', + 'favel', + 'faver', + 'faves', + 'favus', + 'fawns', + 'fawny', + 'faxed', + 'faxes', + 'fayed', + 'fayer', + 'fayne', + 'fayre', + 'fazed', + 'fazes', + 'feals', + 'feare', + 'fears', + 'feart', + 'fease', + 'feats', + 'feaze', + 'feces', + 'fecht', + 'fecit', + 'fecks', + 'fedex', + 'feebs', + 'feeds', + 'feels', + 'feens', + 'feers', + 'feese', + 'feeze', + 'fehme', + 'feint', + 'feist', + 'felch', + 'felid', + 'fells', + 'felly', + 'felts', + 'felty', + 'femal', + 'femes', + 'femmy', + 'fends', + 'fendy', + 'fenis', + 'fenks', + 'fenny', + 'fents', + 'feods', + 'feoff', + 'ferer', + 'feres', + 'feria', + 'ferly', + 'fermi', + 'ferms', + 'ferns', + 'ferny', + 'fesse', + 'festa', + 'fests', + 'festy', + 'fetas', + 'feted', + 'fetes', + 'fetor', + 'fetta', + 'fetts', + 'fetwa', + 'feuar', + 'feuds', + 'feued', + 'feyed', + 'feyer', + 'feyly', + 'fezes', + 'fezzy', + 'fiars', + 'fiats', + 'fibro', + 'fices', + 'fiche', + 'fichu', + 'ficin', + 'ficos', + 'fides', + 'fidge', + 'fidos', + 'fiefs', + 'fient', + 'fiere', + 'fiers', + 'fiest', + 'fifed', + 'fifer', + 'fifes', + 'fifis', + 'figgy', + 'figos', + 'fiked', + 'fikes', + 'filar', + 'filch', + 'filed', + 'files', + 'filii', + 'filks', + 'fille', + 'fillo', + 'fills', + 'filmi', + 'films', + 'filos', + 'filum', + 'finca', + 'finds', + 'fined', + 'fines', + 'finis', + 'finks', + 'finny', + 'finos', + 'fiord', + 'fiqhs', + 'fique', + 'fired', + 'firer', + 'fires', + 'firie', + 'firks', + 'firms', + 'firns', + 'firry', + 'firth', + 'fiscs', + 'fisks', + 'fists', + 'fisty', + 'fitch', + 'fitly', + 'fitna', + 'fitte', + 'fitts', + 'fiver', + 'fives', + 'fixed', + 'fixes', + 'fixit', + 'fjeld', + 'flabs', + 'flaff', + 'flags', + 'flaks', + 'flamm', + 'flams', + 'flamy', + 'flane', + 'flans', + 'flaps', + 'flary', + 'flats', + 'flava', + 'flawn', + 'flaws', + 'flawy', + 'flaxy', + 'flays', + 'fleam', + 'fleas', + 'fleek', + 'fleer', + 'flees', + 'flegs', + 'fleme', + 'fleur', + 'flews', + 'flexi', + 'flexo', + 'fleys', + 'flics', + 'flied', + 'flies', + 'flimp', + 'flims', + 'flips', + 'flirs', + 'flisk', + 'flite', + 'flits', + 'flitt', + 'flobs', + 'flocs', + 'floes', + 'flogs', + 'flong', + 'flops', + 'flors', + 'flory', + 'flosh', + 'flota', + 'flote', + 'flows', + 'flubs', + 'flued', + 'flues', + 'fluey', + 'fluky', + 'flump', + 'fluor', + 'flurr', + 'fluty', + 'fluyt', + 'flyby', + 'flype', + 'flyte', + 'foals', + 'foams', + 'foehn', + 'fogey', + 'fogie', + 'fogle', + 'fogou', + 'fohns', + 'foids', + 'foils', + 'foins', + 'folds', + 'foley', + 'folia', + 'folic', + 'folie', + 'folks', + 'folky', + 'fomes', + 'fonda', + 'fonds', + 'fondu', + 'fones', + 'fonly', + 'fonts', + 'foods', + 'foody', + 'fools', + 'foots', + 'footy', + 'foram', + 'forbs', + 'forby', + 'fordo', + 'fords', + 'forel', + 'fores', + 'forex', + 'forks', + 'forky', + 'forme', + 'forms', + 'forts', + 'forza', + 'forze', + 'fossa', + 'fosse', + 'fouat', + 'fouds', + 'fouer', + 'fouet', + 'foule', + 'fouls', + 'fount', + 'fours', + 'fouth', + 'fovea', + 'fowls', + 'fowth', + 'foxed', + 'foxes', + 'foxie', + 'foyle', + 'foyne', + 'frabs', + 'frack', + 'fract', + 'frags', + 'fraim', + 'franc', + 'frape', + 'fraps', + 'frass', + 'frate', + 'frati', + 'frats', + 'fraus', + 'frays', + 'frees', + 'freet', + 'freit', + 'fremd', + 'frena', + 'freon', + 'frere', + 'frets', + 'fribs', + 'frier', + 'fries', + 'frigs', + 'frise', + 'frist', + 'frith', + 'frits', + 'fritt', + 'frize', + 'frizz', + 'froes', + 'frogs', + 'frons', + 'frore', + 'frorn', + 'frory', + 'frosh', + 'frows', + 'frowy', + 'frugs', + 'frump', + 'frush', + 'frust', + 'fryer', + 'fubar', + 'fubby', + 'fubsy', + 'fucks', + 'fucus', + 'fuddy', + 'fudgy', + 'fuels', + 'fuero', + 'fuffs', + 'fuffy', + 'fugal', + 'fuggy', + 'fugie', + 'fugio', + 'fugle', + 'fugly', + 'fugus', + 'fujis', + 'fulls', + 'fumed', + 'fumer', + 'fumes', + 'fumet', + 'fundi', + 'funds', + 'fundy', + 'fungo', + 'fungs', + 'funks', + 'fural', + 'furan', + 'furca', + 'furls', + 'furol', + 'furrs', + 'furth', + 'furze', + 'furzy', + 'fused', + 'fusee', + 'fusel', + 'fuses', + 'fusil', + 'fusks', + 'fusts', + 'fusty', + 'futon', + 'fuzed', + 'fuzee', + 'fuzes', + 'fuzil', + 'fyces', + 'fyked', + 'fykes', + 'fyles', + 'fyrds', + 'fytte', + 'gabba', + 'gabby', + 'gable', + 'gaddi', + 'gades', + 'gadge', + 'gadid', + 'gadis', + 'gadje', + 'gadjo', + 'gadso', + 'gaffs', + 'gaged', + 'gager', + 'gages', + 'gaids', + 'gains', + 'gairs', + 'gaita', + 'gaits', + 'gaitt', + 'gajos', + 'galah', + 'galas', + 'galax', + 'galea', + 'galed', + 'gales', + 'galls', + 'gally', + 'galop', + 'galut', + 'galvo', + 'gamas', + 'gamay', + 'gamba', + 'gambe', + 'gambo', + 'gambs', + 'gamed', + 'games', + 'gamey', + 'gamic', + 'gamin', + 'gamme', + 'gammy', + 'gamps', + 'ganch', + 'gandy', + 'ganef', + 'ganev', + 'gangs', + 'ganja', + 'ganof', + 'gants', + 'gaols', + 'gaped', + 'gaper', + 'gapes', + 'gapos', + 'gappy', + 'garbe', + 'garbo', + 'garbs', + 'garda', + 'gares', + 'garis', + 'garms', + 'garni', + 'garre', + 'garth', + 'garum', + 'gases', + 'gasps', + 'gaspy', + 'gasts', + 'gatch', + 'gated', + 'gater', + 'gates', + 'gaths', + 'gator', + 'gauch', + 'gaucy', + 'gauds', + 'gauje', + 'gault', + 'gaums', + 'gaumy', + 'gaups', + 'gaurs', + 'gauss', + 'gauzy', + 'gavot', + 'gawcy', + 'gawds', + 'gawks', + 'gawps', + 'gawsy', + 'gayal', + 'gazal', + 'gazar', + 'gazed', + 'gazes', + 'gazon', + 'gazoo', + 'geals', + 'geans', + 'geare', + 'gears', + 'geats', + 'gebur', + 'gecks', + 'geeks', + 'geeps', + 'geest', + 'geist', + 'geits', + 'gelds', + 'gelee', + 'gelid', + 'gelly', + 'gelts', + 'gemel', + 'gemma', + 'gemmy', + 'gemot', + 'genal', + 'genas', + 'genes', + 'genet', + 'genic', + 'genii', + 'genip', + 'genny', + 'genoa', + 'genom', + 'genro', + 'gents', + 'genty', + 'genua', + 'genus', + 'geode', + 'geoid', + 'gerah', + 'gerbe', + 'geres', + 'gerle', + 'germs', + 'germy', + 'gerne', + 'gesse', + 'gesso', + 'geste', + 'gests', + 'getas', + 'getup', + 'geums', + 'geyan', + 'geyer', + 'ghast', + 'ghats', + 'ghaut', + 'ghazi', + 'ghees', + 'ghest', + 'ghyll', + 'gibed', + 'gibel', + 'giber', + 'gibes', + 'gibli', + 'gibus', + 'gifts', + 'gigas', + 'gighe', + 'gigot', + 'gigue', + 'gilas', + 'gilds', + 'gilet', + 'gills', + 'gilly', + 'gilpy', + 'gilts', + 'gimel', + 'gimme', + 'gimps', + 'gimpy', + 'ginch', + 'ginge', + 'gings', + 'ginks', + 'ginny', + 'ginzo', + 'gipon', + 'gippo', + 'gippy', + 'girds', + 'girls', + 'girns', + 'giron', + 'giros', + 'girrs', + 'girsh', + 'girts', + 'gismo', + 'gisms', + 'gists', + 'gitch', + 'gites', + 'giust', + 'gived', + 'gives', + 'gizmo', + 'glace', + 'glads', + 'glady', + 'glaik', + 'glair', + 'glams', + 'glans', + 'glary', + 'glaum', + 'glaur', + 'glazy', + 'gleba', + 'glebe', + 'gleby', + 'glede', + 'gleds', + 'gleed', + 'gleek', + 'glees', + 'gleet', + 'gleis', + 'glens', + 'glent', + 'gleys', + 'glial', + 'glias', + 'glibs', + 'gliff', + 'glift', + 'glike', + 'glime', + 'glims', + 'glisk', + 'glits', + 'glitz', + 'gloam', + 'globi', + 'globs', + 'globy', + 'glode', + 'glogg', + 'gloms', + 'gloop', + 'glops', + 'glost', + 'glout', + 'glows', + 'gloze', + 'glued', + 'gluer', + 'glues', + 'gluey', + 'glugs', + 'glume', + 'glums', + 'gluon', + 'glute', + 'gluts', + 'gnarl', + 'gnarr', + 'gnars', + 'gnats', + 'gnawn', + 'gnaws', + 'gnows', + 'goads', + 'goafs', + 'goals', + 'goary', + 'goats', + 'goaty', + 'goban', + 'gobar', + 'gobbi', + 'gobbo', + 'gobby', + 'gobis', + 'gobos', + 'godet', + 'godso', + 'goels', + 'goers', + 'goest', + 'goeth', + 'goety', + 'gofer', + 'goffs', + 'gogga', + 'gogos', + 'goier', + 'gojis', + 'golds', + 'goldy', + 'goles', + 'golfs', + 'golpe', + 'golps', + 'gombo', + 'gomer', + 'gompa', + 'gonch', + 'gonef', + 'gongs', + 'gonia', + 'gonif', + 'gonks', + 'gonna', + 'gonof', + 'gonys', + 'gonzo', + 'gooby', + 'goods', + 'goofs', + 'googs', + 'gooks', + 'gooky', + 'goold', + 'gools', + 'gooly', + 'goons', + 'goony', + 'goops', + 'goopy', + 'goors', + 'goory', + 'goosy', + 'gopak', + 'gopik', + 'goral', + 'goras', + 'gored', + 'gores', + 'goris', + 'gorms', + 'gormy', + 'gorps', + 'gorse', + 'gorsy', + 'gosht', + 'gosse', + 'gotch', + 'goths', + 'gothy', + 'gotta', + 'gouch', + 'gouks', + 'goura', + 'gouts', + 'gouty', + 'gowan', + 'gowds', + 'gowfs', + 'gowks', + 'gowls', + 'gowns', + 'goxes', + 'goyim', + 'goyle', + 'graal', + 'grabs', + 'grads', + 'graff', + 'graip', + 'grama', + 'grame', + 'gramp', + 'grams', + 'grana', + 'grans', + 'grapy', + 'gravs', + 'grays', + 'grebe', + 'grebo', + 'grece', + 'greek', + 'grees', + 'grege', + 'grego', + 'grein', + 'grens', + 'grese', + 'greve', + 'grews', + 'greys', + 'grice', + 'gride', + 'grids', + 'griff', + 'grift', + 'grigs', + 'grike', + 'grins', + 'griot', + 'grips', + 'gript', + 'gripy', + 'grise', + 'grist', + 'grisy', + 'grith', + 'grits', + 'grize', + 'groat', + 'grody', + 'grogs', + 'groks', + 'groma', + 'grone', + 'groof', + 'grosz', + 'grots', + 'grouf', + 'grovy', + 'grows', + 'grrls', + 'grrrl', + 'grubs', + 'grued', + 'grues', + 'grufe', + 'grume', + 'grump', + 'grund', + 'gryce', + 'gryde', + 'gryke', + 'grype', + 'grypt', + 'guaco', + 'guana', + 'guano', + 'guans', + 'guars', + 'gucks', + 'gucky', + 'gudes', + 'guffs', + 'gugas', + 'guids', + 'guimp', + 'guiro', + 'gulag', + 'gular', + 'gulas', + 'gules', + 'gulet', + 'gulfs', + 'gulfy', + 'gulls', + 'gulph', + 'gulps', + 'gulpy', + 'gumma', + 'gummi', + 'gumps', + 'gundy', + 'gunge', + 'gungy', + 'gunks', + 'gunky', + 'gunny', + 'guqin', + 'gurdy', + 'gurge', + 'gurls', + 'gurly', + 'gurns', + 'gurry', + 'gursh', + 'gurus', + 'gushy', + 'gusla', + 'gusle', + 'gusli', + 'gussy', + 'gusts', + 'gutsy', + 'gutta', + 'gutty', + 'guyed', + 'guyle', + 'guyot', + 'guyse', + 'gwine', + 'gyals', + 'gyans', + 'gybed', + 'gybes', + 'gyeld', + 'gymps', + 'gynae', + 'gynie', + 'gynny', + 'gynos', + 'gyoza', + 'gypos', + 'gyppo', + 'gyppy', + 'gyral', + 'gyred', + 'gyres', + 'gyron', + 'gyros', + 'gyrus', + 'gytes', + 'gyved', + 'gyves', + 'haafs', + 'haars', + 'hable', + 'habus', + 'hacek', + 'hacks', + 'hadal', + 'haded', + 'hades', + 'hadji', + 'hadst', + 'haems', + 'haets', + 'haffs', + 'hafiz', + 'hafts', + 'haggs', + 'hahas', + 'haick', + 'haika', + 'haiks', + 'haiku', + 'hails', + 'haily', + 'hains', + 'haint', + 'hairs', + 'haith', + 'hajes', + 'hajis', + 'hajji', + 'hakam', + 'hakas', + 'hakea', + 'hakes', + 'hakim', + 'hakus', + 'halal', + 'haled', + 'haler', + 'hales', + 'halfa', + 'halfs', + 'halid', + 'hallo', + 'halls', + 'halma', + 'halms', + 'halon', + 'halos', + 'halse', + 'halts', + 'halva', + 'halwa', + 'hamal', + 'hamba', + 'hamed', + 'hames', + 'hammy', + 'hamza', + 'hanap', + 'hance', + 'hanch', + 'hands', + 'hangi', + 'hangs', + 'hanks', + 'hanky', + 'hansa', + 'hanse', + 'hants', + 'haole', + 'haoma', + 'hapax', + 'haply', + 'happi', + 'hapus', + 'haram', + 'hards', + 'hared', + 'hares', + 'harim', + 'harks', + 'harls', + 'harms', + 'harns', + 'haros', + 'harps', + 'harts', + 'hashy', + 'hasks', + 'hasps', + 'hasta', + 'hated', + 'hates', + 'hatha', + 'hauds', + 'haufs', + 'haugh', + 'hauld', + 'haulm', + 'hauls', + 'hault', + 'hauns', + 'hause', + 'haver', + 'haves', + 'hawed', + 'hawks', + 'hawms', + 'hawse', + 'hayed', + 'hayer', + 'hayey', + 'hayle', + 'hazan', + 'hazed', + 'hazer', + 'hazes', + 'heads', + 'heald', + 'heals', + 'heame', + 'heaps', + 'heapy', + 'heare', + 'hears', + 'heast', + 'heats', + 'heben', + 'hebes', + 'hecht', + 'hecks', + 'heder', + 'hedgy', + 'heeds', + 'heedy', + 'heels', + 'heeze', + 'hefte', + 'hefts', + 'heids', + 'heigh', + 'heils', + 'heirs', + 'hejab', + 'hejra', + 'heled', + 'heles', + 'helio', + 'hells', + 'helms', + 'helos', + 'helot', + 'helps', + 'helve', + 'hemal', + 'hemes', + 'hemic', + 'hemin', + 'hemps', + 'hempy', + 'hench', + 'hends', + 'henge', + 'henna', + 'henny', + 'henry', + 'hents', + 'hepar', + 'herbs', + 'herby', + 'herds', + 'heres', + 'herls', + 'herma', + 'herms', + 'herns', + 'heros', + 'herry', + 'herse', + 'hertz', + 'herye', + 'hesps', + 'hests', + 'hetes', + 'heths', + 'heuch', + 'heugh', + 'hevea', + 'hewed', + 'hewer', + 'hewgh', + 'hexad', + 'hexed', + 'hexer', + 'hexes', + 'hexyl', + 'heyed', + 'hiant', + 'hicks', + 'hided', + 'hider', + 'hides', + 'hiems', + 'highs', + 'hight', + 'hijab', + 'hijra', + 'hiked', + 'hiker', + 'hikes', + 'hikoi', + 'hilar', + 'hilch', + 'hillo', + 'hills', + 'hilts', + 'hilum', + 'hilus', + 'himbo', + 'hinau', + 'hinds', + 'hings', + 'hinky', + 'hinny', + 'hints', + 'hiois', + 'hiply', + 'hired', + 'hiree', + 'hirer', + 'hires', + 'hissy', + 'hists', + 'hithe', + 'hived', + 'hiver', + 'hives', + 'hizen', + 'hoaed', + 'hoagy', + 'hoars', + 'hoary', + 'hoast', + 'hobos', + 'hocks', + 'hocus', + 'hodad', + 'hodja', + 'hoers', + 'hogan', + 'hogen', + 'hoggs', + 'hoghs', + 'hohed', + 'hoick', + 'hoied', + 'hoiks', + 'hoing', + 'hoise', + 'hokas', + 'hoked', + 'hokes', + 'hokey', + 'hokis', + 'hokku', + 'hokum', + 'holds', + 'holed', + 'holes', + 'holey', + 'holks', + 'holla', + 'hollo', + 'holme', + 'holms', + 'holon', + 'holos', + 'holts', + 'homas', + 'homed', + 'homes', + 'homey', + 'homie', + 'homme', + 'homos', + 'honan', + 'honda', + 'honds', + 'honed', + 'honer', + 'hones', + 'hongi', + 'hongs', + 'honks', + 'honky', + 'hooch', + 'hoods', + 'hoody', + 'hooey', + 'hoofs', + 'hooka', + 'hooks', + 'hooky', + 'hooly', + 'hoons', + 'hoops', + 'hoord', + 'hoors', + 'hoosh', + 'hoots', + 'hooty', + 'hoove', + 'hopak', + 'hoped', + 'hoper', + 'hopes', + 'hoppy', + 'horah', + 'horal', + 'horas', + 'horis', + 'horks', + 'horme', + 'horns', + 'horst', + 'horsy', + 'hosed', + 'hosel', + 'hosen', + 'hoser', + 'hoses', + 'hosey', + 'hosta', + 'hosts', + 'hotch', + 'hoten', + 'hotty', + 'houff', + 'houfs', + 'hough', + 'houri', + 'hours', + 'houts', + 'hovea', + 'hoved', + 'hoven', + 'hoves', + 'howbe', + 'howes', + 'howff', + 'howfs', + 'howks', + 'howls', + 'howre', + 'howso', + 'hoxed', + 'hoxes', + 'hoyas', + 'hoyed', + 'hoyle', + 'hubby', + 'hucks', + 'hudna', + 'hudud', + 'huers', + 'huffs', + 'huffy', + 'huger', + 'huggy', + 'huhus', + 'huias', + 'hulas', + 'hules', + 'hulks', + 'hulky', + 'hullo', + 'hulls', + 'hully', + 'humas', + 'humfs', + 'humic', + 'humps', + 'humpy', + 'hunks', + 'hunts', + 'hurds', + 'hurls', + 'hurly', + 'hurra', + 'hurst', + 'hurts', + 'hushy', + 'husks', + 'husos', + 'hutia', + 'huzza', + 'huzzy', + 'hwyls', + 'hydra', + 'hyens', + 'hygge', + 'hying', + 'hykes', + 'hylas', + 'hyleg', + 'hyles', + 'hylic', + 'hymns', + 'hynde', + 'hyoid', + 'hyped', + 'hypes', + 'hypha', + 'hyphy', + 'hypos', + 'hyrax', + 'hyson', + 'hythe', + 'iambi', + 'iambs', + 'ibrik', + 'icers', + 'iched', + 'iches', + 'ichor', + 'icier', + 'icker', + 'ickle', + 'icons', + 'ictal', + 'ictic', + 'ictus', + 'idant', + 'ideas', + 'idees', + 'ident', + 'idled', + 'idles', + 'idola', + 'idols', + 'idyls', + 'iftar', + 'igapo', + 'igged', + 'iglus', + 'ihram', + 'ikans', + 'ikats', + 'ikons', + 'ileac', + 'ileal', + 'ileum', + 'ileus', + 'iliad', + 'ilial', + 'ilium', + 'iller', + 'illth', + 'imago', + 'imams', + 'imari', + 'imaum', + 'imbar', + 'imbed', + 'imide', + 'imido', + 'imids', + 'imine', + 'imino', + 'immew', + 'immit', + 'immix', + 'imped', + 'impis', + 'impot', + 'impro', + 'imshi', + 'imshy', + 'inapt', + 'inarm', + 'inbye', + 'incel', + 'incle', + 'incog', + 'incus', + 'incut', + 'indew', + 'india', + 'indie', + 'indol', + 'indow', + 'indri', + 'indue', + 'inerm', + 'infix', + 'infos', + 'infra', + 'ingan', + 'ingle', + 'inion', + 'inked', + 'inker', + 'inkle', + 'inned', + 'innit', + 'inorb', + 'inrun', + 'inset', + 'inspo', + 'intel', + 'intil', + 'intis', + 'intra', + 'inula', + 'inure', + 'inurn', + 'inust', + 'invar', + 'inwit', + 'iodic', + 'iodid', + 'iodin', + 'iotas', + 'ippon', + 'irade', + 'irids', + 'iring', + 'irked', + 'iroko', + 'irone', + 'irons', + 'isbas', + 'ishes', + 'isled', + 'isles', + 'isnae', + 'issei', + 'istle', + 'items', + 'ither', + 'ivied', + 'ivies', + 'ixias', + 'ixnay', + 'ixora', + 'ixtle', + 'izard', + 'izars', + 'izzat', + 'jaaps', + 'jabot', + 'jacal', + 'jacks', + 'jacky', + 'jaded', + 'jades', + 'jafas', + 'jaffa', + 'jagas', + 'jager', + 'jaggs', + 'jaggy', + 'jagir', + 'jagra', + 'jails', + 'jaker', + 'jakes', + 'jakey', + 'jalap', + 'jalop', + 'jambe', + 'jambo', + 'jambs', + 'jambu', + 'james', + 'jammy', + 'jamon', + 'janes', + 'janns', + 'janny', + 'janty', + 'japan', + 'japed', + 'japer', + 'japes', + 'jarks', + 'jarls', + 'jarps', + 'jarta', + 'jarul', + 'jasey', + 'jaspe', + 'jasps', + 'jatos', + 'jauks', + 'jaups', + 'javas', + 'javel', + 'jawan', + 'jawed', + 'jaxie', + 'jeans', + 'jeats', + 'jebel', + 'jedis', + 'jeels', + 'jeely', + 'jeeps', + 'jeers', + 'jeeze', + 'jefes', + 'jeffs', + 'jehad', + 'jehus', + 'jelab', + 'jello', + 'jells', + 'jembe', + 'jemmy', + 'jenny', + 'jeons', + 'jerid', + 'jerks', + 'jerry', + 'jesse', + 'jests', + 'jesus', + 'jetes', + 'jeton', + 'jeune', + 'jewed', + 'jewie', + 'jhala', + 'jiaos', + 'jibba', + 'jibbs', + 'jibed', + 'jiber', + 'jibes', + 'jiffs', + 'jiggy', + 'jigot', + 'jihad', + 'jills', + 'jilts', + 'jimmy', + 'jimpy', + 'jingo', + 'jinks', + 'jinne', + 'jinni', + 'jinns', + 'jirds', + 'jirga', + 'jirre', + 'jisms', + 'jived', + 'jiver', + 'jives', + 'jivey', + 'jnana', + 'jobed', + 'jobes', + 'jocko', + 'jocks', + 'jocky', + 'jocos', + 'jodel', + 'joeys', + 'johns', + 'joins', + 'joked', + 'jokes', + 'jokey', + 'jokol', + 'joled', + 'joles', + 'jolls', + 'jolts', + 'jolty', + 'jomon', + 'jomos', + 'jones', + 'jongs', + 'jonty', + 'jooks', + 'joram', + 'jorum', + 'jotas', + 'jotty', + 'jotun', + 'joual', + 'jougs', + 'jouks', + 'joule', + 'jours', + 'jowar', + 'jowed', + 'jowls', + 'jowly', + 'joyed', + 'jubas', + 'jubes', + 'jucos', + 'judas', + 'judgy', + 'judos', + 'jugal', + 'jugum', + 'jujus', + 'juked', + 'jukes', + 'jukus', + 'julep', + 'jumar', + 'jumby', + 'jumps', + 'junco', + 'junks', + 'junky', + 'jupes', + 'jupon', + 'jural', + 'jurat', + 'jurel', + 'jures', + 'justs', + 'jutes', + 'jutty', + 'juves', + 'juvie', + 'kaama', + 'kabab', + 'kabar', + 'kabob', + 'kacha', + 'kacks', + 'kadai', + 'kades', + 'kadis', + 'kafir', + 'kagos', + 'kagus', + 'kahal', + 'kaiak', + 'kaids', + 'kaies', + 'kaifs', + 'kaika', + 'kaiks', + 'kails', + 'kaims', + 'kaing', + 'kains', + 'kakas', + 'kakis', + 'kalam', + 'kales', + 'kalif', + 'kalis', + 'kalpa', + 'kamas', + 'kames', + 'kamik', + 'kamis', + 'kamme', + 'kanae', + 'kanas', + 'kandy', + 'kaneh', + 'kanes', + 'kanga', + 'kangs', + 'kanji', + 'kants', + 'kanzu', + 'kaons', + 'kapas', + 'kaphs', + 'kapok', + 'kapow', + 'kapus', + 'kaput', + 'karas', + 'karat', + 'karks', + 'karns', + 'karoo', + 'karos', + 'karri', + 'karst', + 'karsy', + 'karts', + 'karzy', + 'kasha', + 'kasme', + 'katal', + 'katas', + 'katis', + 'katti', + 'kaugh', + 'kauri', + 'kauru', + 'kaury', + 'kaval', + 'kavas', + 'kawas', + 'kawau', + 'kawed', + 'kayle', + 'kayos', + 'kazis', + 'kazoo', + 'kbars', + 'kebar', + 'kebob', + 'kecks', + 'kedge', + 'kedgy', + 'keech', + 'keefs', + 'keeks', + 'keels', + 'keema', + 'keeno', + 'keens', + 'keeps', + 'keets', + 'keeve', + 'kefir', + 'kehua', + 'keirs', + 'kelep', + 'kelim', + 'kells', + 'kelly', + 'kelps', + 'kelpy', + 'kelts', + 'kelty', + 'kembo', + 'kembs', + 'kemps', + 'kempt', + 'kempy', + 'kenaf', + 'kench', + 'kendo', + 'kenos', + 'kente', + 'kents', + 'kepis', + 'kerbs', + 'kerel', + 'kerfs', + 'kerky', + 'kerma', + 'kerne', + 'kerns', + 'keros', + 'kerry', + 'kerve', + 'kesar', + 'kests', + 'ketas', + 'ketch', + 'ketes', + 'ketol', + 'kevel', + 'kevil', + 'kexes', + 'keyed', + 'keyer', + 'khadi', + 'khafs', + 'khans', + 'khaph', + 'khats', + 'khaya', + 'khazi', + 'kheda', + 'kheth', + 'khets', + 'khoja', + 'khors', + 'khoum', + 'khuds', + 'kiaat', + 'kiack', + 'kiang', + 'kibbe', + 'kibbi', + 'kibei', + 'kibes', + 'kibla', + 'kicks', + 'kicky', + 'kiddo', + 'kiddy', + 'kidel', + 'kidge', + 'kiefs', + 'kiers', + 'kieve', + 'kievs', + 'kight', + 'kikes', + 'kikoi', + 'kiley', + 'kilim', + 'kills', + 'kilns', + 'kilos', + 'kilps', + 'kilts', + 'kilty', + 'kimbo', + 'kinas', + 'kinda', + 'kinds', + 'kindy', + 'kines', + 'kings', + 'kinin', + 'kinks', + 'kinos', + 'kiore', + 'kipes', + 'kippa', + 'kipps', + 'kirby', + 'kirks', + 'kirns', + 'kirri', + 'kisan', + 'kissy', + 'kists', + 'kited', + 'kiter', + 'kites', + 'kithe', + 'kiths', + 'kitul', + 'kivas', + 'kiwis', + 'klang', + 'klaps', + 'klett', + 'klick', + 'klieg', + 'kliks', + 'klong', + 'kloof', + 'kluge', + 'klutz', + 'knags', + 'knaps', + 'knarl', + 'knars', + 'knaur', + 'knawe', + 'knees', + 'knell', + 'knish', + 'knits', + 'knive', + 'knobs', + 'knops', + 'knosp', + 'knots', + 'knout', + 'knowe', + 'knows', + 'knubs', + 'knurl', + 'knurr', + 'knurs', + 'knuts', + 'koans', + 'koaps', + 'koban', + 'kobos', + 'koels', + 'koffs', + 'kofta', + 'kogal', + 'kohas', + 'kohen', + 'kohls', + 'koine', + 'kojis', + 'kokam', + 'kokas', + 'koker', + 'kokra', + 'kokum', + 'kolas', + 'kolos', + 'kombu', + 'konbu', + 'kondo', + 'konks', + 'kooks', + 'kooky', + 'koori', + 'kopek', + 'kophs', + 'kopje', + 'koppa', + 'korai', + 'koras', + 'korat', + 'kores', + 'korma', + 'koros', + 'korun', + 'korus', + 'koses', + 'kotch', + 'kotos', + 'kotow', + 'koura', + 'kraal', + 'krabs', + 'kraft', + 'krais', + 'krait', + 'krang', + 'krans', + 'kranz', + 'kraut', + 'krays', + 'kreep', + 'kreng', + 'krewe', + 'krona', + 'krone', + 'kroon', + 'krubi', + 'krunk', + 'ksars', + 'kubie', + 'kudos', + 'kudus', + 'kudzu', + 'kufis', + 'kugel', + 'kuias', + 'kukri', + 'kukus', + 'kulak', + 'kulan', + 'kulas', + 'kulfi', + 'kumis', + 'kumys', + 'kuris', + 'kurre', + 'kurta', + 'kurus', + 'kusso', + 'kutas', + 'kutch', + 'kutis', + 'kutus', + 'kuzus', + 'kvass', + 'kvell', + 'kwela', + 'kyack', + 'kyaks', + 'kyang', + 'kyars', + 'kyats', + 'kybos', + 'kydst', + 'kyles', + 'kylie', + 'kylin', + 'kylix', + 'kyloe', + 'kynde', + 'kynds', + 'kypes', + 'kyrie', + 'kytes', + 'kythe', + 'laari', + 'labda', + 'labia', + 'labis', + 'labra', + 'laced', + 'lacer', + 'laces', + 'lacet', + 'lacey', + 'lacks', + 'laddy', + 'laded', + 'lader', + 'lades', + 'laers', + 'laevo', + 'lagan', + 'lahal', + 'lahar', + 'laich', + 'laics', + 'laids', + 'laigh', + 'laika', + 'laiks', + 'laird', + 'lairs', + 'lairy', + 'laith', + 'laity', + 'laked', + 'laker', + 'lakes', + 'lakhs', + 'lakin', + 'laksa', + 'laldy', + 'lalls', + 'lamas', + 'lambs', + 'lamby', + 'lamed', + 'lamer', + 'lames', + 'lamia', + 'lammy', + 'lamps', + 'lanai', + 'lanas', + 'lanch', + 'lande', + 'lands', + 'lanes', + 'lanks', + 'lants', + 'lapin', + 'lapis', + 'lapje', + 'larch', + 'lards', + 'lardy', + 'laree', + 'lares', + 'largo', + 'laris', + 'larks', + 'larky', + 'larns', + 'larnt', + 'larum', + 'lased', + 'laser', + 'lases', + 'lassi', + 'lassu', + 'lassy', + 'lasts', + 'latah', + 'lated', + 'laten', + 'latex', + 'lathi', + 'laths', + 'lathy', + 'latke', + 'latus', + 'lauan', + 'lauch', + 'lauds', + 'laufs', + 'laund', + 'laura', + 'laval', + 'lavas', + 'laved', + 'laver', + 'laves', + 'lavra', + 'lavvy', + 'lawed', + 'lawer', + 'lawin', + 'lawks', + 'lawns', + 'lawny', + 'laxed', + 'laxer', + 'laxes', + 'laxly', + 'layed', + 'layin', + 'layup', + 'lazar', + 'lazed', + 'lazes', + 'lazos', + 'lazzi', + 'lazzo', + 'leads', + 'leady', + 'leafs', + 'leaks', + 'leams', + 'leans', + 'leany', + 'leaps', + 'leare', + 'lears', + 'leary', + 'leats', + 'leavy', + 'leaze', + 'leben', + 'leccy', + 'ledes', + 'ledgy', + 'ledum', + 'leear', + 'leeks', + 'leeps', + 'leers', + 'leese', + 'leets', + 'leeze', + 'lefte', + 'lefts', + 'leger', + 'leges', + 'legge', + 'leggo', + 'legit', + 'lehrs', + 'lehua', + 'leirs', + 'leish', + 'leman', + 'lemed', + 'lemel', + 'lemes', + 'lemma', + 'lemme', + 'lends', + 'lenes', + 'lengs', + 'lenis', + 'lenos', + 'lense', + 'lenti', + 'lento', + 'leone', + 'lepid', + 'lepra', + 'lepta', + 'lered', + 'leres', + 'lerps', + 'lesbo', + 'leses', + 'lests', + 'letch', + 'lethe', + 'letup', + 'leuch', + 'leuco', + 'leuds', + 'leugh', + 'levas', + 'levee', + 'leves', + 'levin', + 'levis', + 'lewis', + 'lexes', + 'lexis', + 'lezes', + 'lezza', + 'lezzy', + 'liana', + 'liane', + 'liang', + 'liard', + 'liars', + 'liart', + 'liber', + 'libra', + 'libri', + 'lichi', + 'licht', + 'licit', + 'licks', + 'lidar', + 'lidos', + 'liefs', + 'liens', + 'liers', + 'lieus', + 'lieve', + 'lifer', + 'lifes', + 'lifts', + 'ligan', + 'liger', + 'ligge', + 'ligne', + 'liked', + 'liker', + 'likes', + 'likin', + 'lills', + 'lilos', + 'lilts', + 'liman', + 'limas', + 'limax', + 'limba', + 'limbi', + 'limbs', + 'limby', + 'limed', + 'limen', + 'limes', + 'limey', + 'limma', + 'limns', + 'limos', + 'limpa', + 'limps', + 'linac', + 'linch', + 'linds', + 'lindy', + 'lined', + 'lines', + 'liney', + 'linga', + 'lings', + 'lingy', + 'linin', + 'links', + 'linky', + 'linns', + 'linny', + 'linos', + 'lints', + 'linty', + 'linum', + 'linux', + 'lions', + 'lipas', + 'lipes', + 'lipin', + 'lipos', + 'lippy', + 'liras', + 'lirks', + 'lirot', + 'lisks', + 'lisle', + 'lisps', + 'lists', + 'litai', + 'litas', + 'lited', + 'liter', + 'lites', + 'litho', + 'liths', + 'litre', + 'lived', + 'liven', + 'lives', + 'livor', + 'livre', + 'llano', + 'loach', + 'loads', + 'loafs', + 'loams', + 'loans', + 'loast', + 'loave', + 'lobar', + 'lobed', + 'lobes', + 'lobos', + 'lobus', + 'loche', + 'lochs', + 'locie', + 'locis', + 'locks', + 'locos', + 'locum', + 'loden', + 'lodes', + 'loess', + 'lofts', + 'logan', + 'loges', + 'loggy', + 'logia', + 'logie', + 'logoi', + 'logon', + 'logos', + 'lohan', + 'loids', + 'loins', + 'loipe', + 'loirs', + 'lokes', + 'lolls', + 'lolly', + 'lolog', + 'lomas', + 'lomed', + 'lomes', + 'loner', + 'longa', + 'longe', + 'longs', + 'looby', + 'looed', + 'looey', + 'loofa', + 'loofs', + 'looie', + 'looks', + 'looky', + 'looms', + 'loons', + 'loony', + 'loops', + 'loord', + 'loots', + 'loped', + 'loper', + 'lopes', + 'loppy', + 'loral', + 'loran', + 'lords', + 'lordy', + 'lorel', + 'lores', + 'loric', + 'loris', + 'losed', + 'losel', + 'losen', + 'loses', + 'lossy', + 'lotah', + 'lotas', + 'lotes', + 'lotic', + 'lotos', + 'lotsa', + 'lotta', + 'lotte', + 'lotto', + 'lotus', + 'loued', + 'lough', + 'louie', + 'louis', + 'louma', + 'lound', + 'louns', + 'loupe', + 'loups', + 'loure', + 'lours', + 'loury', + 'louts', + 'lovat', + 'loved', + 'loves', + 'lovey', + 'lovie', + 'lowan', + 'lowed', + 'lowes', + 'lownd', + 'lowne', + 'lowns', + 'lowps', + 'lowry', + 'lowse', + 'lowts', + 'loxed', + 'loxes', + 'lozen', + 'luach', + 'luaus', + 'lubed', + 'lubes', + 'lubra', + 'luces', + 'lucks', + 'lucre', + 'ludes', + 'ludic', + 'ludos', + 'luffa', + 'luffs', + 'luged', + 'luger', + 'luges', + 'lulls', + 'lulus', + 'lumas', + 'lumbi', + 'lumme', + 'lummy', + 'lumps', + 'lunas', + 'lunes', + 'lunet', + 'lungi', + 'lungs', + 'lunks', + 'lunts', + 'lupin', + 'lured', + 'lurer', + 'lures', + 'lurex', + 'lurgi', + 'lurgy', + 'lurks', + 'lurry', + 'lurve', + 'luser', + 'lushy', + 'lusks', + 'lusts', + 'lusus', + 'lutea', + 'luted', + 'luter', + 'lutes', + 'luvvy', + 'luxed', + 'luxer', + 'luxes', + 'lweis', + 'lyams', + 'lyard', + 'lyart', + 'lyase', + 'lycea', + 'lycee', + 'lycra', + 'lymes', + 'lynes', + 'lyres', + 'lysed', + 'lyses', + 'lysin', + 'lysis', + 'lysol', + 'lyssa', + 'lyted', + 'lytes', + 'lythe', + 'lytic', + 'lytta', + 'maaed', + 'maare', + 'maars', + 'mabes', + 'macas', + 'maced', + 'macer', + 'maces', + 'mache', + 'machi', + 'machs', + 'macks', + 'macle', + 'macon', + 'madge', + 'madid', + 'madre', + 'maerl', + 'mafic', + 'mages', + 'maggs', + 'magot', + 'magus', + 'mahoe', + 'mahua', + 'mahwa', + 'maids', + 'maiko', + 'maiks', + 'maile', + 'maill', + 'mails', + 'maims', + 'mains', + 'maire', + 'mairs', + 'maise', + 'maist', + 'makar', + 'makes', + 'makis', + 'makos', + 'malam', + 'malar', + 'malas', + 'malax', + 'males', + 'malic', + 'malik', + 'malis', + 'malls', + 'malms', + 'malmy', + 'malts', + 'malty', + 'malus', + 'malva', + 'malwa', + 'mamas', + 'mamba', + 'mamee', + 'mamey', + 'mamie', + 'manas', + 'manat', + 'mandi', + 'maneb', + 'maned', + 'maneh', + 'manes', + 'manet', + 'mangs', + 'manis', + 'manky', + 'manna', + 'manos', + 'manse', + 'manta', + 'manto', + 'manty', + 'manul', + 'manus', + 'mapau', + 'maqui', + 'marae', + 'marah', + 'maras', + 'marcs', + 'mardy', + 'mares', + 'marge', + 'margs', + 'maria', + 'marid', + 'marka', + 'marks', + 'marle', + 'marls', + 'marly', + 'marms', + 'maron', + 'maror', + 'marra', + 'marri', + 'marse', + 'marts', + 'marvy', + 'masas', + 'mased', + 'maser', + 'mases', + 'mashy', + 'masks', + 'massa', + 'massy', + 'masts', + 'masty', + 'masus', + 'matai', + 'mated', + 'mater', + 'mates', + 'maths', + 'matin', + 'matlo', + 'matte', + 'matts', + 'matza', + 'matzo', + 'mauby', + 'mauds', + 'mauls', + 'maund', + 'mauri', + 'mausy', + 'mauts', + 'mauzy', + 'maven', + 'mavie', + 'mavin', + 'mavis', + 'mawed', + 'mawks', + 'mawky', + 'mawns', + 'mawrs', + 'maxed', + 'maxes', + 'maxis', + 'mayan', + 'mayas', + 'mayed', + 'mayos', + 'mayst', + 'mazed', + 'mazer', + 'mazes', + 'mazey', + 'mazut', + 'mbira', + 'meads', + 'meals', + 'meane', + 'means', + 'meany', + 'meare', + 'mease', + 'meath', + 'meats', + 'mebos', + 'mechs', + 'mecks', + 'medii', + 'medle', + 'meeds', + 'meers', + 'meets', + 'meffs', + 'meins', + 'meint', + 'meiny', + 'meith', + 'mekka', + 'melas', + 'melba', + 'melds', + 'melic', + 'melik', + 'mells', + 'melts', + 'melty', + 'memes', + 'memos', + 'menad', + 'mends', + 'mened', + 'menes', + 'menge', + 'mengs', + 'mensa', + 'mense', + 'mensh', + 'menta', + 'mento', + 'menus', + 'meous', + 'meows', + 'merch', + 'mercs', + 'merde', + 'mered', + 'merel', + 'merer', + 'meres', + 'meril', + 'meris', + 'merks', + 'merle', + 'merls', + 'merse', + 'mesal', + 'mesas', + 'mesel', + 'meses', + 'meshy', + 'mesic', + 'mesne', + 'meson', + 'messy', + 'mesto', + 'meted', + 'metes', + 'metho', + 'meths', + 'metic', + 'metif', + 'metis', + 'metol', + 'metre', + 'meuse', + 'meved', + 'meves', + 'mewed', + 'mewls', + 'meynt', + 'mezes', + 'mezze', + 'mezzo', + 'mhorr', + 'miaou', + 'miaow', + 'miasm', + 'miaul', + 'micas', + 'miche', + 'micht', + 'micks', + 'micky', + 'micos', + 'micra', + 'middy', + 'midgy', + 'midis', + 'miens', + 'mieve', + 'miffs', + 'miffy', + 'mifty', + 'miggs', + 'mihas', + 'mihis', + 'miked', + 'mikes', + 'mikra', + 'mikva', + 'milch', + 'milds', + 'miler', + 'miles', + 'milfs', + 'milia', + 'milko', + 'milks', + 'mille', + 'mills', + 'milor', + 'milos', + 'milpa', + 'milts', + 'milty', + 'miltz', + 'mimed', + 'mimeo', + 'mimer', + 'mimes', + 'mimsy', + 'minae', + 'minar', + 'minas', + 'mincy', + 'minds', + 'mined', + 'mines', + 'minge', + 'mings', + 'mingy', + 'minis', + 'minke', + 'minks', + 'minny', + 'minos', + 'mints', + 'mired', + 'mires', + 'mirex', + 'mirid', + 'mirin', + 'mirks', + 'mirky', + 'mirly', + 'miros', + 'mirvs', + 'mirza', + 'misch', + 'misdo', + 'mises', + 'misgo', + 'misos', + 'missa', + 'mists', + 'misty', + 'mitch', + 'miter', + 'mites', + 'mitis', + 'mitre', + 'mitts', + 'mixed', + 'mixen', + 'mixer', + 'mixes', + 'mixte', + 'mixup', + 'mizen', + 'mizzy', + 'mneme', + 'moans', + 'moats', + 'mobby', + 'mobes', + 'mobey', + 'mobie', + 'moble', + 'mochi', + 'mochs', + 'mochy', + 'mocks', + 'moder', + 'modes', + 'modge', + 'modii', + 'modus', + 'moers', + 'mofos', + 'moggy', + 'mohel', + 'mohos', + 'mohrs', + 'mohua', + 'mohur', + 'moile', + 'moils', + 'moira', + 'moire', + 'moits', + 'mojos', + 'mokes', + 'mokis', + 'mokos', + 'molal', + 'molas', + 'molds', + 'moled', + 'moles', + 'molla', + 'molls', + 'molly', + 'molto', + 'molts', + 'molys', + 'momes', + 'momma', + 'mommy', + 'momus', + 'monad', + 'monal', + 'monas', + 'monde', + 'mondo', + 'moner', + 'mongo', + 'mongs', + 'monic', + 'monie', + 'monks', + 'monos', + 'monte', + 'monty', + 'moobs', + 'mooch', + 'moods', + 'mooed', + 'mooks', + 'moola', + 'mooli', + 'mools', + 'mooly', + 'moong', + 'moons', + 'moony', + 'moops', + 'moors', + 'moory', + 'moots', + 'moove', + 'moped', + 'moper', + 'mopes', + 'mopey', + 'moppy', + 'mopsy', + 'mopus', + 'morae', + 'moras', + 'morat', + 'moray', + 'morel', + 'mores', + 'moria', + 'morne', + 'morns', + 'morra', + 'morro', + 'morse', + 'morts', + 'mosed', + 'moses', + 'mosey', + 'mosks', + 'mosso', + 'moste', + 'mosts', + 'moted', + 'moten', + 'motes', + 'motet', + 'motey', + 'moths', + 'mothy', + 'motis', + 'motte', + 'motts', + 'motty', + 'motus', + 'motza', + 'mouch', + 'moues', + 'mould', + 'mouls', + 'moups', + 'moust', + 'mousy', + 'moved', + 'moves', + 'mowas', + 'mowed', + 'mowra', + 'moxas', + 'moxie', + 'moyas', + 'moyle', + 'moyls', + 'mozed', + 'mozes', + 'mozos', + 'mpret', + 'mucho', + 'mucic', + 'mucid', + 'mucin', + 'mucks', + 'mucor', + 'mucro', + 'mudge', + 'mudir', + 'mudra', + 'muffs', + 'mufti', + 'mugga', + 'muggs', + 'muggy', + 'muhly', + 'muids', + 'muils', + 'muirs', + 'muist', + 'mujik', + 'mulct', + 'muled', + 'mules', + 'muley', + 'mulga', + 'mulie', + 'mulla', + 'mulls', + 'mulse', + 'mulsh', + 'mumms', + 'mumps', + 'mumsy', + 'mumus', + 'munga', + 'munge', + 'mungo', + 'mungs', + 'munis', + 'munts', + 'muntu', + 'muons', + 'muras', + 'mured', + 'mures', + 'murex', + 'murid', + 'murks', + 'murls', + 'murly', + 'murra', + 'murre', + 'murri', + 'murrs', + 'murry', + 'murti', + 'murva', + 'musar', + 'musca', + 'mused', + 'muser', + 'muses', + 'muset', + 'musha', + 'musit', + 'musks', + 'musos', + 'musse', + 'mussy', + 'musth', + 'musts', + 'mutch', + 'muted', + 'muter', + 'mutes', + 'mutha', + 'mutis', + 'muton', + 'mutts', + 'muxed', + 'muxes', + 'muzak', + 'muzzy', + 'mvule', + 'myall', + 'mylar', + 'mynah', + 'mynas', + 'myoid', + 'myoma', + 'myope', + 'myops', + 'myopy', + 'mysid', + 'mythi', + 'myths', + 'mythy', + 'myxos', + 'mzees', + 'naams', + 'naans', + 'nabes', + 'nabis', + 'nabks', + 'nabla', + 'nabob', + 'nache', + 'nacho', + 'nacre', + 'nadas', + 'naeve', + 'naevi', + 'naffs', + 'nagas', + 'naggy', + 'nagor', + 'nahal', + 'naiad', + 'naifs', + 'naiks', + 'nails', + 'naira', + 'nairu', + 'naked', + 'naker', + 'nakfa', + 'nalas', + 'naled', + 'nalla', + 'named', + 'namer', + 'names', + 'namma', + 'namus', + 'nanas', + 'nance', + 'nancy', + 'nandu', + 'nanna', + 'nanos', + 'nanua', + 'napas', + 'naped', + 'napes', + 'napoo', + 'nappa', + 'nappe', + 'nappy', + 'naras', + 'narco', + 'narcs', + 'nards', + 'nares', + 'naric', + 'naris', + 'narks', + 'narky', + 'narre', + 'nashi', + 'natch', + 'nates', + 'natis', + 'natty', + 'nauch', + 'naunt', + 'navar', + 'naves', + 'navew', + 'navvy', + 'nawab', + 'nazes', + 'nazir', + 'nazis', + 'nduja', + 'neafe', + 'neals', + 'neaps', + 'nears', + 'neath', + 'neats', + 'nebek', + 'nebel', + 'necks', + 'neddy', + 'needs', + 'neeld', + 'neele', + 'neemb', + 'neems', + 'neeps', + 'neese', + 'neeze', + 'negro', + 'negus', + 'neifs', + 'neist', + 'neive', + 'nelis', + 'nelly', + 'nemas', + 'nemns', + 'nempt', + 'nenes', + 'neons', + 'neper', + 'nepit', + 'neral', + 'nerds', + 'nerka', + 'nerks', + 'nerol', + 'nerts', + 'nertz', + 'nervy', + 'nests', + 'netes', + 'netop', + 'netts', + 'netty', + 'neuks', + 'neume', + 'neums', + 'nevel', + 'neves', + 'nevus', + 'newbs', + 'newed', + 'newel', + 'newie', + 'newsy', + 'newts', + 'nexts', + 'nexus', + 'ngaio', + 'ngana', + 'ngati', + 'ngoma', + 'ngwee', + 'nicad', + 'nicht', + 'nicks', + 'nicol', + 'nidal', + 'nided', + 'nides', + 'nidor', + 'nidus', + 'niefs', + 'nieve', + 'nifes', + 'niffs', + 'niffy', + 'nifty', + 'niger', + 'nighs', + 'nihil', + 'nikab', + 'nikah', + 'nikau', + 'nills', + 'nimbi', + 'nimbs', + 'nimps', + 'niner', + 'nines', + 'ninon', + 'nipas', + 'nippy', + 'niqab', + 'nirls', + 'nirly', + 'nisei', + 'nisse', + 'nisus', + 'niter', + 'nites', + 'nitid', + 'niton', + 'nitre', + 'nitro', + 'nitry', + 'nitty', + 'nival', + 'nixed', + 'nixer', + 'nixes', + 'nixie', + 'nizam', + 'nkosi', + 'noahs', + 'nobby', + 'nocks', + 'nodal', + 'noddy', + 'nodes', + 'nodus', + 'noels', + 'noggs', + 'nohow', + 'noils', + 'noily', + 'noint', + 'noirs', + 'noles', + 'nolls', + 'nolos', + 'nomas', + 'nomen', + 'nomes', + 'nomic', + 'nomoi', + 'nomos', + 'nonas', + 'nonce', + 'nones', + 'nonet', + 'nongs', + 'nonis', + 'nonny', + 'nonyl', + 'noobs', + 'nooit', + 'nooks', + 'nooky', + 'noons', + 'noops', + 'nopal', + 'noria', + 'noris', + 'norks', + 'norma', + 'norms', + 'nosed', + 'noser', + 'noses', + 'notal', + 'noted', + 'noter', + 'notes', + 'notum', + 'nould', + 'noule', + 'nouls', + 'nouns', + 'nouny', + 'noups', + 'novae', + 'novas', + 'novum', + 'noway', + 'nowed', + 'nowls', + 'nowts', + 'nowty', + 'noxal', + 'noxes', + 'noyau', + 'noyed', + 'noyes', + 'nubby', + 'nubia', + 'nucha', + 'nuddy', + 'nuder', + 'nudes', + 'nudie', + 'nudzh', + 'nuffs', + 'nugae', + 'nuked', + 'nukes', + 'nulla', + 'nulls', + 'numbs', + 'numen', + 'nummy', + 'nunny', + 'nurds', + 'nurdy', + 'nurls', + 'nurrs', + 'nutso', + 'nutsy', + 'nyaff', + 'nyala', + 'nying', + 'nyssa', + 'oaked', + 'oaker', + 'oakum', + 'oared', + 'oases', + 'oasis', + 'oasts', + 'oaten', + 'oater', + 'oaths', + 'oaves', + 'obang', + 'obeah', + 'obeli', + 'obeys', + 'obias', + 'obied', + 'obiit', + 'obits', + 'objet', + 'oboes', + 'obole', + 'oboli', + 'obols', + 'occam', + 'ocher', + 'oches', + 'ochre', + 'ochry', + 'ocker', + 'ocrea', + 'octad', + 'octan', + 'octas', + 'octyl', + 'oculi', + 'odahs', + 'odals', + 'odeon', + 'odeum', + 'odism', + 'odist', + 'odium', + 'odors', + 'odour', + 'odyle', + 'odyls', + 'ofays', + 'offed', + 'offie', + 'oflag', + 'ofter', + 'ogams', + 'ogeed', + 'ogees', + 'oggin', + 'ogham', + 'ogive', + 'ogled', + 'ogler', + 'ogles', + 'ogmic', + 'ogres', + 'ohias', + 'ohing', + 'ohmic', + 'ohone', + 'oidia', + 'oiled', + 'oiler', + 'oinks', + 'oints', + 'ojime', + 'okapi', + 'okays', + 'okehs', + 'okras', + 'oktas', + 'oldie', + 'oleic', + 'olein', + 'olent', + 'oleos', + 'oleum', + 'olios', + 'ollas', + 'ollav', + 'oller', + 'ollie', + 'ology', + 'olpae', + 'olpes', + 'omasa', + 'omber', + 'ombus', + 'omens', + 'omers', + 'omits', + 'omlah', + 'omovs', + 'omrah', + 'oncer', + 'onces', + 'oncet', + 'oncus', + 'onely', + 'oners', + 'onery', + 'onium', + 'onkus', + 'onlay', + 'onned', + 'ontic', + 'oobit', + 'oohed', + 'oomph', + 'oonts', + 'ooped', + 'oorie', + 'ooses', + 'ootid', + 'oozed', + 'oozes', + 'opahs', + 'opals', + 'opens', + 'opepe', + 'oping', + 'oppos', + 'opsin', + 'opted', + 'opter', + 'orach', + 'oracy', + 'orals', + 'orang', + 'orant', + 'orate', + 'orbed', + 'orcas', + 'orcin', + 'ordos', + 'oread', + 'orfes', + 'orgia', + 'orgic', + 'orgue', + 'oribi', + 'oriel', + 'orixa', + 'orles', + 'orlon', + 'orlop', + 'ormer', + 'ornis', + 'orpin', + 'orris', + 'ortho', + 'orval', + 'orzos', + 'oscar', + 'oshac', + 'osier', + 'osmic', + 'osmol', + 'ossia', + 'ostia', + 'otaku', + 'otary', + 'ottar', + 'ottos', + 'oubit', + 'oucht', + 'ouens', + 'ouija', + 'oulks', + 'oumas', + 'oundy', + 'oupas', + 'ouped', + 'ouphe', + 'ouphs', + 'ourie', + 'ousel', + 'ousts', + 'outby', + 'outed', + 'outre', + 'outro', + 'outta', + 'ouzel', + 'ouzos', + 'ovals', + 'ovels', + 'ovens', + 'overs', + 'ovist', + 'ovoli', + 'ovolo', + 'ovule', + 'owche', + 'owies', + 'owled', + 'owler', + 'owlet', + 'owned', + 'owres', + 'owrie', + 'owsen', + 'oxbow', + 'oxers', + 'oxeye', + 'oxids', + 'oxies', + 'oxime', + 'oxims', + 'oxlip', + 'oxter', + 'oyers', + 'ozeki', + 'ozzie', + 'paals', + 'paans', + 'pacas', + 'paced', + 'pacer', + 'paces', + 'pacey', + 'pacha', + 'packs', + 'pacos', + 'pacta', + 'pacts', + 'padis', + 'padle', + 'padma', + 'padre', + 'padri', + 'paean', + 'paedo', + 'paeon', + 'paged', + 'pager', + 'pages', + 'pagle', + 'pagod', + 'pagri', + 'paiks', + 'pails', + 'pains', + 'paire', + 'pairs', + 'paisa', + 'paise', + 'pakka', + 'palas', + 'palay', + 'palea', + 'paled', + 'pales', + 'palet', + 'palis', + 'palki', + 'palla', + 'palls', + 'pally', + 'palms', + 'palmy', + 'palpi', + 'palps', + 'palsa', + 'pampa', + 'panax', + 'pance', + 'panda', + 'pands', + 'pandy', + 'paned', + 'panes', + 'panga', + 'pangs', + 'panim', + 'panko', + 'panne', + 'panni', + 'panto', + 'pants', + 'panty', + 'paoli', + 'paolo', + 'papas', + 'papaw', + 'papes', + 'pappi', + 'pappy', + 'parae', + 'paras', + 'parch', + 'pardi', + 'pards', + 'pardy', + 'pared', + 'paren', + 'pareo', + 'pares', + 'pareu', + 'parev', + 'parge', + 'pargo', + 'paris', + 'parki', + 'parks', + 'parky', + 'parle', + 'parly', + 'parma', + 'parol', + 'parps', + 'parra', + 'parrs', + 'parti', + 'parts', + 'parve', + 'parvo', + 'paseo', + 'pases', + 'pasha', + 'pashm', + 'paska', + 'paspy', + 'passe', + 'pasts', + 'pated', + 'paten', + 'pater', + 'pates', + 'paths', + 'patin', + 'patka', + 'patly', + 'patte', + 'patus', + 'pauas', + 'pauls', + 'pavan', + 'paved', + 'paven', + 'paver', + 'paves', + 'pavid', + 'pavin', + 'pavis', + 'pawas', + 'pawaw', + 'pawed', + 'pawer', + 'pawks', + 'pawky', + 'pawls', + 'pawns', + 'paxes', + 'payed', + 'payor', + 'paysd', + 'peage', + 'peags', + 'peaks', + 'peaky', + 'peals', + 'peans', + 'peare', + 'pears', + 'peart', + 'pease', + 'peats', + 'peaty', + 'peavy', + 'peaze', + 'pebas', + 'pechs', + 'pecke', + 'pecks', + 'pecky', + 'pedes', + 'pedis', + 'pedro', + 'peece', + 'peeks', + 'peels', + 'peens', + 'peeoy', + 'peepe', + 'peeps', + 'peers', + 'peery', + 'peeve', + 'peggy', + 'peghs', + 'peins', + 'peise', + 'peize', + 'pekan', + 'pekes', + 'pekin', + 'pekoe', + 'pelas', + 'pelau', + 'peles', + 'pelfs', + 'pells', + 'pelma', + 'pelon', + 'pelta', + 'pelts', + 'pends', + 'pendu', + 'pened', + 'penes', + 'pengo', + 'penie', + 'penis', + 'penks', + 'penna', + 'penni', + 'pents', + 'peons', + 'peony', + 'pepla', + 'pepos', + 'peppy', + 'pepsi', + 'perai', + 'perce', + 'percs', + 'perdu', + 'perdy', + 'perea', + 'peres', + 'peris', + 'perks', + 'perms', + 'perns', + 'perog', + 'perps', + 'perry', + 'perse', + 'perst', + 'perts', + 'perve', + 'pervo', + 'pervs', + 'pervy', + 'pesos', + 'pests', + 'pesty', + 'petar', + 'peter', + 'petit', + 'petre', + 'petri', + 'petti', + 'petto', + 'pewee', + 'pewit', + 'peyse', + 'phage', + 'phang', + 'phare', + 'pharm', + 'pheer', + 'phene', + 'pheon', + 'phese', + 'phial', + 'phish', + 'phizz', + 'phlox', + 'phoca', + 'phono', + 'phons', + 'phots', + 'phpht', + 'phuts', + 'phyla', + 'phyle', + 'piani', + 'pians', + 'pibal', + 'pical', + 'picas', + 'piccy', + 'picks', + 'picot', + 'picra', + 'picul', + 'piend', + 'piers', + 'piert', + 'pieta', + 'piets', + 'piezo', + 'pight', + 'pigmy', + 'piing', + 'pikas', + 'pikau', + 'piked', + 'piker', + 'pikes', + 'pikey', + 'pikis', + 'pikul', + 'pilae', + 'pilaf', + 'pilao', + 'pilar', + 'pilau', + 'pilaw', + 'pilch', + 'pilea', + 'piled', + 'pilei', + 'piler', + 'piles', + 'pilis', + 'pills', + 'pilow', + 'pilum', + 'pilus', + 'pimas', + 'pimps', + 'pinas', + 'pined', + 'pines', + 'pingo', + 'pings', + 'pinko', + 'pinks', + 'pinna', + 'pinny', + 'pinon', + 'pinot', + 'pinta', + 'pints', + 'pinup', + 'pions', + 'piony', + 'pious', + 'pioye', + 'pioys', + 'pipal', + 'pipas', + 'piped', + 'pipes', + 'pipet', + 'pipis', + 'pipit', + 'pippy', + 'pipul', + 'pirai', + 'pirls', + 'pirns', + 'pirog', + 'pisco', + 'pises', + 'pisky', + 'pisos', + 'pissy', + 'piste', + 'pitas', + 'piths', + 'piton', + 'pitot', + 'pitta', + 'piums', + 'pixes', + 'pized', + 'pizes', + 'plaas', + 'plack', + 'plage', + 'plans', + 'plaps', + 'plash', + 'plasm', + 'plast', + 'plats', + 'platt', + 'platy', + 'playa', + 'plays', + 'pleas', + 'plebe', + 'plebs', + 'plena', + 'pleon', + 'plesh', + 'plews', + 'plica', + 'plies', + 'plims', + 'pling', + 'plink', + 'ploat', + 'plods', + 'plong', + 'plonk', + 'plook', + 'plops', + 'plots', + 'plotz', + 'plouk', + 'plows', + 'ploye', + 'ploys', + 'plues', + 'pluff', + 'plugs', + 'plums', + 'plumy', + 'pluot', + 'pluto', + 'plyer', + 'poach', + 'poaka', + 'poake', + 'poboy', + 'pocks', + 'pocky', + 'podal', + 'poddy', + 'podex', + 'podge', + 'podgy', + 'podia', + 'poems', + 'poeps', + 'poets', + 'pogey', + 'pogge', + 'pogos', + 'pohed', + 'poilu', + 'poind', + 'pokal', + 'poked', + 'pokes', + 'pokey', + 'pokie', + 'poled', + 'poler', + 'poles', + 'poley', + 'polio', + 'polis', + 'polje', + 'polks', + 'polls', + 'polly', + 'polos', + 'polts', + 'polys', + 'pombe', + 'pomes', + 'pommy', + 'pomos', + 'pomps', + 'ponce', + 'poncy', + 'ponds', + 'pones', + 'poney', + 'ponga', + 'pongo', + 'pongs', + 'pongy', + 'ponks', + 'ponts', + 'ponty', + 'ponzu', + 'poods', + 'pooed', + 'poofs', + 'poofy', + 'poohs', + 'pooja', + 'pooka', + 'pooks', + 'pools', + 'poons', + 'poops', + 'poopy', + 'poori', + 'poort', + 'poots', + 'poove', + 'poovy', + 'popes', + 'poppa', + 'popsy', + 'porae', + 'poral', + 'pored', + 'porer', + 'pores', + 'porge', + 'porgy', + 'porin', + 'porks', + 'porky', + 'porno', + 'porns', + 'porny', + 'porta', + 'ports', + 'porty', + 'posed', + 'poses', + 'posey', + 'posho', + 'posts', + 'potae', + 'potch', + 'poted', + 'potes', + 'potin', + 'potoo', + 'potsy', + 'potto', + 'potts', + 'potty', + 'pouff', + 'poufs', + 'pouke', + 'pouks', + 'poule', + 'poulp', + 'poult', + 'poupe', + 'poupt', + 'pours', + 'pouts', + 'powan', + 'powin', + 'pownd', + 'powns', + 'powny', + 'powre', + 'poxed', + 'poxes', + 'poynt', + 'poyou', + 'poyse', + 'pozzy', + 'praam', + 'prads', + 'prahu', + 'prams', + 'prana', + 'prang', + 'praos', + 'prase', + 'prate', + 'prats', + 'pratt', + 'praty', + 'praus', + 'prays', + 'predy', + 'preed', + 'prees', + 'preif', + 'prems', + 'premy', + 'prent', + 'preon', + 'preop', + 'preps', + 'presa', + 'prese', + 'prest', + 'preve', + 'prexy', + 'preys', + 'prial', + 'pricy', + 'prief', + 'prier', + 'pries', + 'prigs', + 'prill', + 'prima', + 'primi', + 'primp', + 'prims', + 'primy', + 'prink', + 'prion', + 'prise', + 'priss', + 'proas', + 'probs', + 'prods', + 'proem', + 'profs', + 'progs', + 'proin', + 'proke', + 'prole', + 'proll', + 'promo', + 'proms', + 'pronk', + 'props', + 'prore', + 'proso', + 'pross', + 'prost', + 'prosy', + 'proto', + 'proul', + 'prows', + 'proyn', + 'prunt', + 'pruta', + 'pryer', + 'pryse', + 'pseud', + 'pshaw', + 'psion', + 'psoae', + 'psoai', + 'psoas', + 'psora', + 'psych', + 'psyop', + 'pubco', + 'pubes', + 'pubis', + 'pucan', + 'pucer', + 'puces', + 'pucka', + 'pucks', + 'puddy', + 'pudge', + 'pudic', + 'pudor', + 'pudsy', + 'pudus', + 'puers', + 'puffa', + 'puffs', + 'puggy', + 'pugil', + 'puhas', + 'pujah', + 'pujas', + 'pukas', + 'puked', + 'puker', + 'pukes', + 'pukey', + 'pukka', + 'pukus', + 'pulao', + 'pulas', + 'puled', + 'puler', + 'pules', + 'pulik', + 'pulis', + 'pulka', + 'pulks', + 'pulli', + 'pulls', + 'pully', + 'pulmo', + 'pulps', + 'pulus', + 'pumas', + 'pumie', + 'pumps', + 'punas', + 'punce', + 'punga', + 'pungs', + 'punji', + 'punka', + 'punks', + 'punky', + 'punny', + 'punto', + 'punts', + 'punty', + 'pupae', + 'pupas', + 'pupus', + 'purda', + 'pured', + 'pures', + 'purin', + 'puris', + 'purls', + 'purpy', + 'purrs', + 'pursy', + 'purty', + 'puses', + 'pusle', + 'pussy', + 'putid', + 'puton', + 'putti', + 'putto', + 'putts', + 'puzel', + 'pwned', + 'pyats', + 'pyets', + 'pygal', + 'pyins', + 'pylon', + 'pyned', + 'pynes', + 'pyoid', + 'pyots', + 'pyral', + 'pyran', + 'pyres', + 'pyrex', + 'pyric', + 'pyros', + 'pyxed', + 'pyxes', + 'pyxie', + 'pyxis', + 'pzazz', + 'qadis', + 'qaids', + 'qajaq', + 'qanat', + 'qapik', + 'qibla', + 'qophs', + 'qorma', + 'quads', + 'quaff', + 'quags', + 'quair', + 'quais', + 'quaky', + 'quale', + 'quant', + 'quare', + 'quass', + 'quate', + 'quats', + 'quayd', + 'quays', + 'qubit', + 'quean', + 'queme', + 'quena', + 'quern', + 'queyn', + 'queys', + 'quich', + 'quids', + 'quiff', + 'quims', + 'quina', + 'quine', + 'quino', + 'quins', + 'quint', + 'quipo', + 'quips', + 'quipu', + 'quire', + 'quirt', + 'quist', + 'quits', + 'quoad', + 'quods', + 'quoif', + 'quoin', + 'quoit', + 'quoll', + 'quonk', + 'quops', + 'qursh', + 'quyte', + 'rabat', + 'rabic', + 'rabis', + 'raced', + 'races', + 'rache', + 'racks', + 'racon', + 'radge', + 'radix', + 'radon', + 'raffs', + 'rafts', + 'ragas', + 'ragde', + 'raged', + 'ragee', + 'rager', + 'rages', + 'ragga', + 'raggs', + 'raggy', + 'ragis', + 'ragus', + 'rahed', + 'rahui', + 'raias', + 'raids', + 'raiks', + 'raile', + 'rails', + 'raine', + 'rains', + 'raird', + 'raita', + 'raits', + 'rajas', + 'rajes', + 'raked', + 'rakee', + 'raker', + 'rakes', + 'rakia', + 'rakis', + 'rakus', + 'rales', + 'ramal', + 'ramee', + 'ramet', + 'ramie', + 'ramin', + 'ramis', + 'rammy', + 'ramps', + 'ramus', + 'ranas', + 'rance', + 'rands', + 'ranee', + 'ranga', + 'rangi', + 'rangs', + 'rangy', + 'ranid', + 'ranis', + 'ranke', + 'ranks', + 'rants', + 'raped', + 'raper', + 'rapes', + 'raphe', + 'rappe', + 'rared', + 'raree', + 'rares', + 'rarks', + 'rased', + 'raser', + 'rases', + 'rasps', + 'rasse', + 'rasta', + 'ratal', + 'ratan', + 'ratas', + 'ratch', + 'rated', + 'ratel', + 'rater', + 'rates', + 'ratha', + 'rathe', + 'raths', + 'ratoo', + 'ratos', + 'ratus', + 'rauns', + 'raupo', + 'raved', + 'ravel', + 'raver', + 'raves', + 'ravey', + 'ravin', + 'rawer', + 'rawin', + 'rawly', + 'rawns', + 'raxed', + 'raxes', + 'rayah', + 'rayas', + 'rayed', + 'rayle', + 'rayne', + 'razed', + 'razee', + 'razer', + 'razes', + 'razoo', + 'readd', + 'reads', + 'reais', + 'reaks', + 'realo', + 'reals', + 'reame', + 'reams', + 'reamy', + 'reans', + 'reaps', + 'rears', + 'reast', + 'reata', + 'reate', + 'reave', + 'rebbe', + 'rebec', + 'rebid', + 'rebit', + 'rebop', + 'rebuy', + 'recal', + 'recce', + 'recco', + 'reccy', + 'recit', + 'recks', + 'recon', + 'recta', + 'recti', + 'recto', + 'redan', + 'redds', + 'reddy', + 'reded', + 'redes', + 'redia', + 'redid', + 'redip', + 'redly', + 'redon', + 'redos', + 'redox', + 'redry', + 'redub', + 'redux', + 'redye', + 'reech', + 'reede', + 'reeds', + 'reefs', + 'reefy', + 'reeks', + 'reeky', + 'reels', + 'reens', + 'reest', + 'reeve', + 'refed', + 'refel', + 'reffo', + 'refis', + 'refix', + 'refly', + 'refry', + 'regar', + 'reges', + 'reggo', + 'regie', + 'regma', + 'regna', + 'regos', + 'regur', + 'rehem', + 'reifs', + 'reify', + 'reiki', + 'reiks', + 'reink', + 'reins', + 'reird', + 'reist', + 'reive', + 'rejig', + 'rejon', + 'reked', + 'rekes', + 'rekey', + 'relet', + 'relie', + 'relit', + 'rello', + 'reman', + 'remap', + 'remen', + 'remet', + 'remex', + 'remix', + 'renay', + 'rends', + 'reney', + 'renga', + 'renig', + 'renin', + 'renne', + 'renos', + 'rente', + 'rents', + 'reoil', + 'reorg', + 'repeg', + 'repin', + 'repla', + 'repos', + 'repot', + 'repps', + 'repro', + 'reran', + 'rerig', + 'resat', + 'resaw', + 'resay', + 'resee', + 'reses', + 'resew', + 'resid', + 'resit', + 'resod', + 'resow', + 'resto', + 'rests', + 'resty', + 'resus', + 'retag', + 'retax', + 'retem', + 'retia', + 'retie', + 'retox', + 'revet', + 'revie', + 'rewan', + 'rewax', + 'rewed', + 'rewet', + 'rewin', + 'rewon', + 'rewth', + 'rexes', + 'rezes', + 'rheas', + 'rheme', + 'rheum', + 'rhies', + 'rhime', + 'rhine', + 'rhody', + 'rhomb', + 'rhone', + 'rhumb', + 'rhyne', + 'rhyta', + 'riads', + 'rials', + 'riant', + 'riata', + 'ribas', + 'ribby', + 'ribes', + 'riced', + 'ricer', + 'rices', + 'ricey', + 'richt', + 'ricin', + 'ricks', + 'rides', + 'ridgy', + 'ridic', + 'riels', + 'riems', + 'rieve', + 'rifer', + 'riffs', + 'rifte', + 'rifts', + 'rifty', + 'riggs', + 'rigol', + 'riled', + 'riles', + 'riley', + 'rille', + 'rills', + 'rimae', + 'rimed', + 'rimer', + 'rimes', + 'rimus', + 'rinds', + 'rindy', + 'rines', + 'rings', + 'rinks', + 'rioja', + 'riots', + 'riped', + 'ripes', + 'ripps', + 'rises', + 'rishi', + 'risks', + 'risps', + 'risus', + 'rites', + 'ritts', + 'ritzy', + 'rivas', + 'rived', + 'rivel', + 'riven', + 'rives', + 'riyal', + 'rizas', + 'roads', + 'roams', + 'roans', + 'roars', + 'roary', + 'roate', + 'robed', + 'robes', + 'roble', + 'rocks', + 'roded', + 'rodes', + 'roguy', + 'rohes', + 'roids', + 'roils', + 'roily', + 'roins', + 'roist', + 'rojak', + 'rojis', + 'roked', + 'roker', + 'rokes', + 'rolag', + 'roles', + 'rolfs', + 'rolls', + 'romal', + 'roman', + 'romeo', + 'romps', + 'ronde', + 'rondo', + 'roneo', + 'rones', + 'ronin', + 'ronne', + 'ronte', + 'ronts', + 'roods', + 'roofs', + 'roofy', + 'rooks', + 'rooky', + 'rooms', + 'roons', + 'roops', + 'roopy', + 'roosa', + 'roose', + 'roots', + 'rooty', + 'roped', + 'roper', + 'ropes', + 'ropey', + 'roque', + 'roral', + 'rores', + 'roric', + 'rorid', + 'rorie', + 'rorts', + 'rorty', + 'rosed', + 'roses', + 'roset', + 'roshi', + 'rosin', + 'rosit', + 'rosti', + 'rosts', + 'rotal', + 'rotan', + 'rotas', + 'rotch', + 'roted', + 'rotes', + 'rotis', + 'rotls', + 'roton', + 'rotos', + 'rotte', + 'rouen', + 'roues', + 'roule', + 'rouls', + 'roums', + 'roups', + 'roupy', + 'roust', + 'routh', + 'routs', + 'roved', + 'roven', + 'roves', + 'rowan', + 'rowed', + 'rowel', + 'rowen', + 'rowie', + 'rowme', + 'rownd', + 'rowth', + 'rowts', + 'royne', + 'royst', + 'rozet', + 'rozit', + 'ruana', + 'rubai', + 'rubby', + 'rubel', + 'rubes', + 'rubin', + 'ruble', + 'rubli', + 'rubus', + 'ruche', + 'rucks', + 'rudas', + 'rudds', + 'rudes', + 'rudie', + 'rudis', + 'rueda', + 'ruers', + 'ruffe', + 'ruffs', + 'rugae', + 'rugal', + 'ruggy', + 'ruing', + 'ruins', + 'rukhs', + 'ruled', + 'rules', + 'rumal', + 'rumbo', + 'rumen', + 'rumes', + 'rumly', + 'rummy', + 'rumpo', + 'rumps', + 'rumpy', + 'runch', + 'runds', + 'runed', + 'runes', + 'rungs', + 'runic', + 'runny', + 'runts', + 'runty', + 'rupia', + 'rurps', + 'rurus', + 'rusas', + 'ruses', + 'rushy', + 'rusks', + 'rusma', + 'russe', + 'rusts', + 'ruths', + 'rutin', + 'rutty', + 'ryals', + 'rybat', + 'ryked', + 'rykes', + 'rymme', + 'rynds', + 'ryots', + 'ryper', + 'saags', + 'sabal', + 'sabed', + 'saber', + 'sabes', + 'sabha', + 'sabin', + 'sabir', + 'sable', + 'sabot', + 'sabra', + 'sabre', + 'sacks', + 'sacra', + 'saddo', + 'sades', + 'sadhe', + 'sadhu', + 'sadis', + 'sados', + 'sadza', + 'safed', + 'safes', + 'sagas', + 'sager', + 'sages', + 'saggy', + 'sagos', + 'sagum', + 'saheb', + 'sahib', + 'saice', + 'saick', + 'saics', + 'saids', + 'saiga', + 'sails', + 'saims', + 'saine', + 'sains', + 'sairs', + 'saist', + 'saith', + 'sajou', + 'sakai', + 'saker', + 'sakes', + 'sakia', + 'sakis', + 'sakti', + 'salal', + 'salat', + 'salep', + 'sales', + 'salet', + 'salic', + 'salix', + 'salle', + 'salmi', + 'salol', + 'salop', + 'salpa', + 'salps', + 'salse', + 'salto', + 'salts', + 'salue', + 'salut', + 'saman', + 'samas', + 'samba', + 'sambo', + 'samek', + 'samel', + 'samen', + 'sames', + 'samey', + 'samfu', + 'sammy', + 'sampi', + 'samps', + 'sands', + 'saned', + 'sanes', + 'sanga', + 'sangh', + 'sango', + 'sangs', + 'sanko', + 'sansa', + 'santo', + 'sants', + 'saola', + 'sapan', + 'sapid', + 'sapor', + 'saran', + 'sards', + 'sared', + 'saree', + 'sarge', + 'sargo', + 'sarin', + 'saris', + 'sarks', + 'sarky', + 'sarod', + 'saros', + 'sarus', + 'saser', + 'sasin', + 'sasse', + 'satai', + 'satay', + 'sated', + 'satem', + 'sates', + 'satis', + 'sauba', + 'sauch', + 'saugh', + 'sauls', + 'sault', + 'saunt', + 'saury', + 'sauts', + 'saved', + 'saver', + 'saves', + 'savey', + 'savin', + 'sawah', + 'sawed', + 'sawer', + 'saxes', + 'sayed', + 'sayer', + 'sayid', + 'sayne', + 'sayon', + 'sayst', + 'sazes', + 'scabs', + 'scads', + 'scaff', + 'scags', + 'scail', + 'scala', + 'scall', + 'scams', + 'scand', + 'scans', + 'scapa', + 'scape', + 'scapi', + 'scarp', + 'scars', + 'scart', + 'scath', + 'scats', + 'scatt', + 'scaud', + 'scaup', + 'scaur', + 'scaws', + 'sceat', + 'scena', + 'scend', + 'schav', + 'schmo', + 'schul', + 'schwa', + 'sclim', + 'scody', + 'scogs', + 'scoog', + 'scoot', + 'scopa', + 'scops', + 'scots', + 'scoug', + 'scoup', + 'scowp', + 'scows', + 'scrab', + 'scrae', + 'scrag', + 'scran', + 'scrat', + 'scraw', + 'scray', + 'scrim', + 'scrip', + 'scrob', + 'scrod', + 'scrog', + 'scrow', + 'scudi', + 'scudo', + 'scuds', + 'scuff', + 'scuft', + 'scugs', + 'sculk', + 'scull', + 'sculp', + 'sculs', + 'scums', + 'scups', + 'scurf', + 'scurs', + 'scuse', + 'scuta', + 'scute', + 'scuts', + 'scuzz', + 'scyes', + 'sdayn', + 'sdein', + 'seals', + 'seame', + 'seams', + 'seamy', + 'seans', + 'seare', + 'sears', + 'sease', + 'seats', + 'seaze', + 'sebum', + 'secco', + 'sechs', + 'sects', + 'seder', + 'sedes', + 'sedge', + 'sedgy', + 'sedum', + 'seeds', + 'seeks', + 'seeld', + 'seels', + 'seely', + 'seems', + 'seeps', + 'seepy', + 'seers', + 'sefer', + 'segar', + 'segni', + 'segno', + 'segol', + 'segos', + 'sehri', + 'seifs', + 'seils', + 'seine', + 'seirs', + 'seise', + 'seism', + 'seity', + 'seiza', + 'sekos', + 'sekts', + 'selah', + 'seles', + 'selfs', + 'sella', + 'selle', + 'sells', + 'selva', + 'semee', + 'semes', + 'semie', + 'semis', + 'senas', + 'sends', + 'senes', + 'sengi', + 'senna', + 'senor', + 'sensa', + 'sensi', + 'sente', + 'senti', + 'sents', + 'senvy', + 'senza', + 'sepad', + 'sepal', + 'sepic', + 'sepoy', + 'septa', + 'septs', + 'serac', + 'serai', + 'seral', + 'sered', + 'serer', + 'seres', + 'serfs', + 'serge', + 'seric', + 'serin', + 'serks', + 'seron', + 'serow', + 'serra', + 'serre', + 'serrs', + 'serry', + 'servo', + 'sesey', + 'sessa', + 'setae', + 'setal', + 'seton', + 'setts', + 'sewan', + 'sewar', + 'sewed', + 'sewel', + 'sewen', + 'sewin', + 'sexed', + 'sexer', + 'sexes', + 'sexto', + 'sexts', + 'seyen', + 'shads', + 'shags', + 'shahs', + 'shako', + 'shakt', + 'shalm', + 'shaly', + 'shama', + 'shams', + 'shand', + 'shans', + 'shaps', + 'sharn', + 'shash', + 'shaul', + 'shawm', + 'shawn', + 'shaws', + 'shaya', + 'shays', + 'shchi', + 'sheaf', + 'sheal', + 'sheas', + 'sheds', + 'sheel', + 'shend', + 'shent', + 'sheol', + 'sherd', + 'shere', + 'shero', + 'shets', + 'sheva', + 'shewn', + 'shews', + 'shiai', + 'shiel', + 'shier', + 'shies', + 'shill', + 'shily', + 'shims', + 'shins', + 'ships', + 'shirr', + 'shirs', + 'shish', + 'shiso', + 'shist', + 'shite', + 'shits', + 'shiur', + 'shiva', + 'shive', + 'shivs', + 'shlep', + 'shlub', + 'shmek', + 'shmoe', + 'shoat', + 'shoed', + 'shoer', + 'shoes', + 'shogi', + 'shogs', + 'shoji', + 'shojo', + 'shola', + 'shool', + 'shoon', + 'shoos', + 'shope', + 'shops', + 'shorl', + 'shote', + 'shots', + 'shott', + 'showd', + 'shows', + 'shoyu', + 'shred', + 'shris', + 'shrow', + 'shtik', + 'shtum', + 'shtup', + 'shule', + 'shuln', + 'shuls', + 'shuns', + 'shura', + 'shute', + 'shuts', + 'shwas', + 'shyer', + 'sials', + 'sibbs', + 'sibyl', + 'sices', + 'sicht', + 'sicko', + 'sicks', + 'sicky', + 'sidas', + 'sided', + 'sider', + 'sides', + 'sidha', + 'sidhe', + 'sidle', + 'sield', + 'siens', + 'sient', + 'sieth', + 'sieur', + 'sifts', + 'sighs', + 'sigil', + 'sigla', + 'signa', + 'signs', + 'sijos', + 'sikas', + 'siker', + 'sikes', + 'silds', + 'siled', + 'silen', + 'siler', + 'siles', + 'silex', + 'silks', + 'sills', + 'silos', + 'silts', + 'silty', + 'silva', + 'simar', + 'simas', + 'simba', + 'simis', + 'simps', + 'simul', + 'sinds', + 'sined', + 'sines', + 'sings', + 'sinhs', + 'sinks', + 'sinky', + 'sinus', + 'siped', + 'sipes', + 'sippy', + 'sired', + 'siree', + 'sires', + 'sirih', + 'siris', + 'siroc', + 'sirra', + 'sirup', + 'sisal', + 'sises', + 'sista', + 'sists', + 'sitar', + 'sited', + 'sites', + 'sithe', + 'sitka', + 'situp', + 'situs', + 'siver', + 'sixer', + 'sixes', + 'sixmo', + 'sixte', + 'sizar', + 'sized', + 'sizel', + 'sizer', + 'sizes', + 'skags', + 'skail', + 'skald', + 'skank', + 'skart', + 'skats', + 'skatt', + 'skaws', + 'skean', + 'skear', + 'skeds', + 'skeed', + 'skeef', + 'skeen', + 'skeer', + 'skees', + 'skeet', + 'skegg', + 'skegs', + 'skein', + 'skelf', + 'skell', + 'skelm', + 'skelp', + 'skene', + 'skens', + 'skeos', + 'skeps', + 'skers', + 'skets', + 'skews', + 'skids', + 'skied', + 'skies', + 'skiey', + 'skimo', + 'skims', + 'skink', + 'skins', + 'skint', + 'skios', + 'skips', + 'skirl', + 'skirr', + 'skite', + 'skits', + 'skive', + 'skivy', + 'sklim', + 'skoal', + 'skody', + 'skoff', + 'skogs', + 'skols', + 'skool', + 'skort', + 'skosh', + 'skran', + 'skrik', + 'skuas', + 'skugs', + 'skyed', + 'skyer', + 'skyey', + 'skyfs', + 'skyre', + 'skyrs', + 'skyte', + 'slabs', + 'slade', + 'slaes', + 'slags', + 'slaid', + 'slake', + 'slams', + 'slane', + 'slank', + 'slaps', + 'slart', + 'slats', + 'slaty', + 'slaws', + 'slays', + 'slebs', + 'sleds', + 'sleer', + 'slews', + 'sleys', + 'slier', + 'slily', + 'slims', + 'slipe', + 'slips', + 'slipt', + 'slish', + 'slits', + 'slive', + 'sloan', + 'slobs', + 'sloes', + 'slogs', + 'sloid', + 'slojd', + 'slomo', + 'sloom', + 'sloot', + 'slops', + 'slopy', + 'slorm', + 'slots', + 'slove', + 'slows', + 'sloyd', + 'slubb', + 'slubs', + 'slued', + 'slues', + 'sluff', + 'slugs', + 'sluit', + 'slums', + 'slurb', + 'slurs', + 'sluse', + 'sluts', + 'slyer', + 'slype', + 'smaak', + 'smaik', + 'smalm', + 'smalt', + 'smarm', + 'smaze', + 'smeek', + 'smees', + 'smeik', + 'smeke', + 'smerk', + 'smews', + 'smirr', + 'smirs', + 'smits', + 'smogs', + 'smoko', + 'smolt', + 'smoor', + 'smoot', + 'smore', + 'smorg', + 'smout', + 'smowt', + 'smugs', + 'smurs', + 'smush', + 'smuts', + 'snabs', + 'snafu', + 'snags', + 'snaps', + 'snarf', + 'snark', + 'snars', + 'snary', + 'snash', + 'snath', + 'snaws', + 'snead', + 'sneap', + 'snebs', + 'sneck', + 'sneds', + 'sneed', + 'snees', + 'snell', + 'snibs', + 'snick', + 'snies', + 'snift', + 'snigs', + 'snips', + 'snipy', + 'snirt', + 'snits', + 'snobs', + 'snods', + 'snoek', + 'snoep', + 'snogs', + 'snoke', + 'snood', + 'snook', + 'snool', + 'snoot', + 'snots', + 'snowk', + 'snows', + 'snubs', + 'snugs', + 'snush', + 'snyes', + 'soaks', + 'soaps', + 'soare', + 'soars', + 'soave', + 'sobas', + 'socas', + 'soces', + 'socko', + 'socks', + 'socle', + 'sodas', + 'soddy', + 'sodic', + 'sodom', + 'sofar', + 'sofas', + 'softa', + 'softs', + 'softy', + 'soger', + 'sohur', + 'soils', + 'soily', + 'sojas', + 'sojus', + 'sokah', + 'soken', + 'sokes', + 'sokol', + 'solah', + 'solan', + 'solas', + 'solde', + 'soldi', + 'soldo', + 'solds', + 'soled', + 'solei', + 'soler', + 'soles', + 'solon', + 'solos', + 'solum', + 'solus', + 'soman', + 'somas', + 'sonce', + 'sonde', + 'sones', + 'songs', + 'sonly', + 'sonne', + 'sonny', + 'sonse', + 'sonsy', + 'sooey', + 'sooks', + 'sooky', + 'soole', + 'sools', + 'sooms', + 'soops', + 'soote', + 'soots', + 'sophs', + 'sophy', + 'sopor', + 'soppy', + 'sopra', + 'soral', + 'soras', + 'sorbo', + 'sorbs', + 'sorda', + 'sordo', + 'sords', + 'sored', + 'soree', + 'sorel', + 'sorer', + 'sores', + 'sorex', + 'sorgo', + 'sorns', + 'sorra', + 'sorta', + 'sorts', + 'sorus', + 'soths', + 'sotol', + 'souce', + 'souct', + 'sough', + 'souks', + 'souls', + 'soums', + 'soups', + 'soupy', + 'sours', + 'souse', + 'souts', + 'sowar', + 'sowce', + 'sowed', + 'sowff', + 'sowfs', + 'sowle', + 'sowls', + 'sowms', + 'sownd', + 'sowne', + 'sowps', + 'sowse', + 'sowth', + 'soyas', + 'soyle', + 'soyuz', + 'sozin', + 'spacy', + 'spado', + 'spaed', + 'spaer', + 'spaes', + 'spags', + 'spahi', + 'spail', + 'spain', + 'spait', + 'spake', + 'spald', + 'spale', + 'spall', + 'spalt', + 'spams', + 'spane', + 'spang', + 'spans', + 'spard', + 'spars', + 'spart', + 'spate', + 'spats', + 'spaul', + 'spawl', + 'spaws', + 'spayd', + 'spays', + 'spaza', + 'spazz', + 'speal', + 'spean', + 'speat', + 'specs', + 'spect', + 'speel', + 'speer', + 'speil', + 'speir', + 'speks', + 'speld', + 'spelk', + 'speos', + 'spets', + 'speug', + 'spews', + 'spewy', + 'spial', + 'spica', + 'spick', + 'spics', + 'spide', + 'spier', + 'spies', + 'spiff', + 'spifs', + 'spiks', + 'spile', + 'spims', + 'spina', + 'spink', + 'spins', + 'spirt', + 'spiry', + 'spits', + 'spitz', + 'spivs', + 'splay', + 'splog', + 'spode', + 'spods', + 'spoom', + 'spoor', + 'spoot', + 'spork', + 'sposh', + 'spots', + 'sprad', + 'sprag', + 'sprat', + 'spred', + 'sprew', + 'sprit', + 'sprod', + 'sprog', + 'sprue', + 'sprug', + 'spuds', + 'spued', + 'spuer', + 'spues', + 'spugs', + 'spule', + 'spume', + 'spumy', + 'spurs', + 'sputa', + 'spyal', + 'spyre', + 'squab', + 'squaw', + 'squeg', + 'squid', + 'squit', + 'squiz', + 'stabs', + 'stade', + 'stags', + 'stagy', + 'staig', + 'stane', + 'stang', + 'staph', + 'staps', + 'starn', + 'starr', + 'stars', + 'stats', + 'staun', + 'staws', + 'stays', + 'stean', + 'stear', + 'stedd', + 'stede', + 'steds', + 'steek', + 'steem', + 'steen', + 'steil', + 'stela', + 'stele', + 'stell', + 'steme', + 'stems', + 'stend', + 'steno', + 'stens', + 'stent', + 'steps', + 'stept', + 'stere', + 'stets', + 'stews', + 'stewy', + 'steys', + 'stich', + 'stied', + 'sties', + 'stilb', + 'stile', + 'stime', + 'stims', + 'stimy', + 'stipa', + 'stipe', + 'stire', + 'stirk', + 'stirp', + 'stirs', + 'stive', + 'stivy', + 'stoae', + 'stoai', + 'stoas', + 'stoat', + 'stobs', + 'stoep', + 'stogy', + 'stoit', + 'stoln', + 'stoma', + 'stond', + 'stong', + 'stonk', + 'stonn', + 'stook', + 'stoor', + 'stope', + 'stops', + 'stopt', + 'stoss', + 'stots', + 'stott', + 'stoun', + 'stoup', + 'stour', + 'stown', + 'stowp', + 'stows', + 'strad', + 'strae', + 'strag', + 'strak', + 'strep', + 'strew', + 'stria', + 'strig', + 'strim', + 'strop', + 'strow', + 'stroy', + 'strum', + 'stubs', + 'stude', + 'studs', + 'stull', + 'stulm', + 'stumm', + 'stums', + 'stuns', + 'stupa', + 'stupe', + 'sture', + 'sturt', + 'styed', + 'styes', + 'styli', + 'stylo', + 'styme', + 'stymy', + 'styre', + 'styte', + 'subah', + 'subas', + 'subby', + 'suber', + 'subha', + 'succi', + 'sucks', + 'sucky', + 'sucre', + 'sudds', + 'sudor', + 'sudsy', + 'suede', + 'suent', + 'suers', + 'suete', + 'suets', + 'suety', + 'sugan', + 'sughs', + 'sugos', + 'suhur', + 'suids', + 'suint', + 'suits', + 'sujee', + 'sukhs', + 'sukuk', + 'sulci', + 'sulfa', + 'sulfo', + 'sulks', + 'sulph', + 'sulus', + 'sumis', + 'summa', + 'sumos', + 'sumph', + 'sumps', + 'sunis', + 'sunks', + 'sunna', + 'sunns', + 'sunup', + 'supes', + 'supra', + 'surah', + 'sural', + 'suras', + 'surat', + 'surds', + 'sured', + 'sures', + 'surfs', + 'surfy', + 'surgy', + 'surra', + 'sused', + 'suses', + 'susus', + 'sutor', + 'sutra', + 'sutta', + 'swabs', + 'swack', + 'swads', + 'swage', + 'swags', + 'swail', + 'swain', + 'swale', + 'swaly', + 'swamy', + 'swang', + 'swank', + 'swans', + 'swaps', + 'swapt', + 'sward', + 'sware', + 'swarf', + 'swart', + 'swats', + 'swayl', + 'sways', + 'sweal', + 'swede', + 'sweed', + 'sweel', + 'sweer', + 'swees', + 'sweir', + 'swelt', + 'swerf', + 'sweys', + 'swies', + 'swigs', + 'swile', + 'swims', + 'swink', + 'swipe', + 'swire', + 'swiss', + 'swith', + 'swits', + 'swive', + 'swizz', + 'swobs', + 'swole', + 'swoln', + 'swops', + 'swopt', + 'swots', + 'swoun', + 'sybbe', + 'sybil', + 'syboe', + 'sybow', + 'sycee', + 'syces', + 'sycon', + 'syens', + 'syker', + 'sykes', + 'sylis', + 'sylph', + 'sylva', + 'symar', + 'synch', + 'syncs', + 'synds', + 'syned', + 'synes', + 'synth', + 'syped', + 'sypes', + 'syphs', + 'syrah', + 'syren', + 'sysop', + 'sythe', + 'syver', + 'taals', + 'taata', + 'taber', + 'tabes', + 'tabid', + 'tabis', + 'tabla', + 'tabor', + 'tabun', + 'tabus', + 'tacan', + 'taces', + 'tacet', + 'tache', + 'tacho', + 'tachs', + 'tacks', + 'tacos', + 'tacts', + 'taels', + 'tafia', + 'taggy', + 'tagma', + 'tahas', + 'tahrs', + 'taiga', + 'taigs', + 'taiko', + 'tails', + 'tains', + 'taira', + 'taish', + 'taits', + 'tajes', + 'takas', + 'takes', + 'takhi', + 'takin', + 'takis', + 'takky', + 'talak', + 'talaq', + 'talar', + 'talas', + 'talcs', + 'talcy', + 'talea', + 'taler', + 'tales', + 'talks', + 'talky', + 'talls', + 'talma', + 'talpa', + 'taluk', + 'talus', + 'tamal', + 'tamed', + 'tames', + 'tamin', + 'tamis', + 'tammy', + 'tamps', + 'tanas', + 'tanga', + 'tangi', + 'tangs', + 'tanhs', + 'tanka', + 'tanks', + 'tanky', + 'tanna', + 'tansy', + 'tanti', + 'tanto', + 'tanty', + 'tapas', + 'taped', + 'tapen', + 'tapes', + 'tapet', + 'tapis', + 'tappa', + 'tapus', + 'taras', + 'tardo', + 'tared', + 'tares', + 'targa', + 'targe', + 'tarns', + 'taroc', + 'tarok', + 'taros', + 'tarps', + 'tarre', + 'tarry', + 'tarsi', + 'tarts', + 'tarty', + 'tasar', + 'tased', + 'taser', + 'tases', + 'tasks', + 'tassa', + 'tasse', + 'tasso', + 'tatar', + 'tater', + 'tates', + 'taths', + 'tatie', + 'tatou', + 'tatts', + 'tatus', + 'taube', + 'tauld', + 'tauon', + 'taupe', + 'tauts', + 'tavah', + 'tavas', + 'taver', + 'tawai', + 'tawas', + 'tawed', + 'tawer', + 'tawie', + 'tawse', + 'tawts', + 'taxed', + 'taxer', + 'taxes', + 'taxis', + 'taxol', + 'taxon', + 'taxor', + 'taxus', + 'tayra', + 'tazza', + 'tazze', + 'teade', + 'teads', + 'teaed', + 'teaks', + 'teals', + 'teams', + 'tears', + 'teats', + 'teaze', + 'techs', + 'techy', + 'tecta', + 'teels', + 'teems', + 'teend', + 'teene', + 'teens', + 'teeny', + 'teers', + 'teffs', + 'teggs', + 'tegua', + 'tegus', + 'tehrs', + 'teiid', + 'teils', + 'teind', + 'teins', + 'telae', + 'telco', + 'teles', + 'telex', + 'telia', + 'telic', + 'tells', + 'telly', + 'teloi', + 'telos', + 'temed', + 'temes', + 'tempi', + 'temps', + 'tempt', + 'temse', + 'tench', + 'tends', + 'tendu', + 'tenes', + 'tenge', + 'tenia', + 'tenne', + 'tenno', + 'tenny', + 'tenon', + 'tents', + 'tenty', + 'tenue', + 'tepal', + 'tepas', + 'tepoy', + 'terai', + 'teras', + 'terce', + 'terek', + 'teres', + 'terfe', + 'terfs', + 'terga', + 'terms', + 'terne', + 'terns', + 'terry', + 'terts', + 'tesla', + 'testa', + 'teste', + 'tests', + 'tetes', + 'teths', + 'tetra', + 'tetri', + 'teuch', + 'teugh', + 'tewed', + 'tewel', + 'tewit', + 'texas', + 'texes', + 'texts', + 'thack', + 'thagi', + 'thaim', + 'thale', + 'thali', + 'thana', + 'thane', + 'thang', + 'thans', + 'thanx', + 'tharm', + 'thars', + 'thaws', + 'thawy', + 'thebe', + 'theca', + 'theed', + 'theek', + 'thees', + 'thegn', + 'theic', + 'thein', + 'thelf', + 'thema', + 'thens', + 'theow', + 'therm', + 'thesp', + 'thete', + 'thews', + 'thewy', + 'thigs', + 'thilk', + 'thill', + 'thine', + 'thins', + 'thiol', + 'thirl', + 'thoft', + 'thole', + 'tholi', + 'thoro', + 'thorp', + 'thous', + 'thowl', + 'thrae', + 'thraw', + 'thrid', + 'thrip', + 'throe', + 'thuds', + 'thugs', + 'thuja', + 'thunk', + 'thurl', + 'thuya', + 'thymi', + 'thymy', + 'tians', + 'tiars', + 'tical', + 'ticca', + 'ticed', + 'tices', + 'tichy', + 'ticks', + 'ticky', + 'tiddy', + 'tided', + 'tides', + 'tiers', + 'tiffs', + 'tifos', + 'tifts', + 'tiges', + 'tigon', + 'tikas', + 'tikes', + 'tikis', + 'tikka', + 'tilak', + 'tiled', + 'tiler', + 'tiles', + 'tills', + 'tilly', + 'tilth', + 'tilts', + 'timbo', + 'timed', + 'times', + 'timon', + 'timps', + 'tinas', + 'tinct', + 'tinds', + 'tinea', + 'tined', + 'tines', + 'tinge', + 'tings', + 'tinks', + 'tinny', + 'tints', + 'tinty', + 'tipis', + 'tippy', + 'tired', + 'tires', + 'tirls', + 'tiros', + 'tirrs', + 'titch', + 'titer', + 'titis', + 'titre', + 'titty', + 'titup', + 'tiyin', + 'tiyns', + 'tizes', + 'tizzy', + 'toads', + 'toady', + 'toaze', + 'tocks', + 'tocky', + 'tocos', + 'todde', + 'toeas', + 'toffs', + 'toffy', + 'tofts', + 'tofus', + 'togae', + 'togas', + 'toged', + 'toges', + 'togue', + 'tohos', + 'toile', + 'toils', + 'toing', + 'toise', + 'toits', + 'tokay', + 'toked', + 'toker', + 'tokes', + 'tokos', + 'tolan', + 'tolar', + 'tolas', + 'toled', + 'toles', + 'tolls', + 'tolly', + 'tolts', + 'tolus', + 'tolyl', + 'toman', + 'tombs', + 'tomes', + 'tomia', + 'tommy', + 'tomos', + 'tondi', + 'tondo', + 'toned', + 'toner', + 'tones', + 'toney', + 'tongs', + 'tonka', + 'tonks', + 'tonne', + 'tonus', + 'tools', + 'tooms', + 'toons', + 'toots', + 'toped', + 'topee', + 'topek', + 'toper', + 'topes', + 'tophe', + 'tophi', + 'tophs', + 'topis', + 'topoi', + 'topos', + 'toppy', + 'toque', + 'torah', + 'toran', + 'toras', + 'torcs', + 'tores', + 'toric', + 'torii', + 'toros', + 'torot', + 'torrs', + 'torse', + 'torsi', + 'torsk', + 'torta', + 'torte', + 'torts', + 'tosas', + 'tosed', + 'toses', + 'toshy', + 'tossy', + 'toted', + 'toter', + 'totes', + 'totty', + 'touks', + 'touns', + 'tours', + 'touse', + 'tousy', + 'touts', + 'touze', + 'touzy', + 'towed', + 'towie', + 'towns', + 'towny', + 'towse', + 'towsy', + 'towts', + 'towze', + 'towzy', + 'toyed', + 'toyer', + 'toyon', + 'toyos', + 'tozed', + 'tozes', + 'tozie', + 'trabs', + 'trads', + 'tragi', + 'traik', + 'trams', + 'trank', + 'tranq', + 'trans', + 'trant', + 'trape', + 'traps', + 'trapt', + 'trass', + 'trats', + 'tratt', + 'trave', + 'trayf', + 'trays', + 'treck', + 'treed', + 'treen', + 'trees', + 'trefa', + 'treif', + 'treks', + 'trema', + 'trems', + 'tress', + 'trest', + 'trets', + 'trews', + 'treyf', + 'treys', + 'triac', + 'tride', + 'trier', + 'tries', + 'triff', + 'trigo', + 'trigs', + 'trike', + 'trild', + 'trill', + 'trims', + 'trine', + 'trins', + 'triol', + 'trior', + 'trios', + 'trips', + 'tripy', + 'trist', + 'troad', + 'troak', + 'troat', + 'trock', + 'trode', + 'trods', + 'trogs', + 'trois', + 'troke', + 'tromp', + 'trona', + 'tronc', + 'trone', + 'tronk', + 'trons', + 'trooz', + 'troth', + 'trots', + 'trows', + 'troys', + 'trued', + 'trues', + 'trugo', + 'trugs', + 'trull', + 'tryer', + 'tryke', + 'tryma', + 'tryps', + 'tsade', + 'tsadi', + 'tsars', + 'tsked', + 'tsuba', + 'tsubo', + 'tuans', + 'tuart', + 'tuath', + 'tubae', + 'tubar', + 'tubas', + 'tubby', + 'tubed', + 'tubes', + 'tucks', + 'tufas', + 'tuffe', + 'tuffs', + 'tufts', + 'tufty', + 'tugra', + 'tuile', + 'tuina', + 'tuism', + 'tuktu', + 'tules', + 'tulpa', + 'tulsi', + 'tumid', + 'tummy', + 'tumps', + 'tumpy', + 'tunas', + 'tunds', + 'tuned', + 'tuner', + 'tunes', + 'tungs', + 'tunny', + 'tupek', + 'tupik', + 'tuple', + 'tuque', + 'turds', + 'turfs', + 'turfy', + 'turks', + 'turme', + 'turms', + 'turns', + 'turnt', + 'turps', + 'turrs', + 'tushy', + 'tusks', + 'tusky', + 'tutee', + 'tutti', + 'tutty', + 'tutus', + 'tuxes', + 'tuyer', + 'twaes', + 'twain', + 'twals', + 'twank', + 'twats', + 'tways', + 'tweel', + 'tween', + 'tweep', + 'tweer', + 'twerk', + 'twerp', + 'twier', + 'twigs', + 'twill', + 'twilt', + 'twink', + 'twins', + 'twiny', + 'twire', + 'twirp', + 'twite', + 'twits', + 'twoer', + 'twyer', + 'tyees', + 'tyers', + 'tyiyn', + 'tykes', + 'tyler', + 'tymps', + 'tynde', + 'tyned', + 'tynes', + 'typal', + 'typed', + 'types', + 'typey', + 'typic', + 'typos', + 'typps', + 'typto', + 'tyran', + 'tyred', + 'tyres', + 'tyros', + 'tythe', + 'tzars', + 'udals', + 'udons', + 'ugali', + 'ugged', + 'uhlan', + 'uhuru', + 'ukase', + 'ulama', + 'ulans', + 'ulema', + 'ulmin', + 'ulnad', + 'ulnae', + 'ulnar', + 'ulnas', + 'ulpan', + 'ulvas', + 'ulyie', + 'ulzie', + 'umami', + 'umbel', + 'umber', + 'umble', + 'umbos', + 'umbre', + 'umiac', + 'umiak', + 'umiaq', + 'ummah', + 'ummas', + 'ummed', + 'umped', + 'umphs', + 'umpie', + 'umpty', + 'umrah', + 'umras', + 'unais', + 'unapt', + 'unarm', + 'unary', + 'unaus', + 'unbag', + 'unban', + 'unbar', + 'unbed', + 'unbid', + 'unbox', + 'uncap', + 'unces', + 'uncia', + 'uncos', + 'uncoy', + 'uncus', + 'undam', + 'undee', + 'undos', + 'undug', + 'uneth', + 'unfix', + 'ungag', + 'unget', + 'ungod', + 'ungot', + 'ungum', + 'unhat', + 'unhip', + 'unica', + 'units', + 'unjam', + 'unked', + 'unket', + 'unkid', + 'unlaw', + 'unlay', + 'unled', + 'unlet', + 'unlid', + 'unman', + 'unmew', + 'unmix', + 'unpay', + 'unpeg', + 'unpen', + 'unpin', + 'unred', + 'unrid', + 'unrig', + 'unrip', + 'unsaw', + 'unsay', + 'unsee', + 'unsew', + 'unsex', + 'unsod', + 'untax', + 'untin', + 'unwet', + 'unwit', + 'unwon', + 'upbow', + 'upbye', + 'updos', + 'updry', + 'upend', + 'upjet', + 'uplay', + 'upled', + 'uplit', + 'upped', + 'upran', + 'uprun', + 'upsee', + 'upsey', + 'uptak', + 'upter', + 'uptie', + 'uraei', + 'urali', + 'uraos', + 'urare', + 'urari', + 'urase', + 'urate', + 'urbex', + 'urbia', + 'urdee', + 'ureal', + 'ureas', + 'uredo', + 'ureic', + 'urena', + 'urent', + 'urged', + 'urger', + 'urges', + 'urial', + 'urite', + 'urman', + 'urnal', + 'urned', + 'urped', + 'ursae', + 'ursid', + 'urson', + 'urubu', + 'urvas', + 'users', + 'usnea', + 'usque', + 'usure', + 'usury', + 'uteri', + 'uveal', + 'uveas', + 'uvula', + 'vacua', + 'vaded', + 'vades', + 'vagal', + 'vagus', + 'vails', + 'vaire', + 'vairs', + 'vairy', + 'vakas', + 'vakil', + 'vales', + 'valis', + 'valse', + 'vamps', + 'vampy', + 'vanda', + 'vaned', + 'vanes', + 'vangs', + 'vants', + 'vaped', + 'vaper', + 'vapes', + 'varan', + 'varas', + 'vardy', + 'varec', + 'vares', + 'varia', + 'varix', + 'varna', + 'varus', + 'varve', + 'vasal', + 'vases', + 'vasts', + 'vasty', + 'vatic', + 'vatus', + 'vauch', + 'vaute', + 'vauts', + 'vawte', + 'vaxes', + 'veale', + 'veals', + 'vealy', + 'veena', + 'veeps', + 'veers', + 'veery', + 'vegas', + 'veges', + 'vegie', + 'vegos', + 'vehme', + 'veils', + 'veily', + 'veins', + 'veiny', + 'velar', + 'velds', + 'veldt', + 'veles', + 'vells', + 'velum', + 'venae', + 'venal', + 'vends', + 'vendu', + 'veney', + 'venge', + 'venin', + 'vents', + 'venus', + 'verbs', + 'verra', + 'verry', + 'verst', + 'verts', + 'vertu', + 'vespa', + 'vesta', + 'vests', + 'vetch', + 'vexed', + 'vexer', + 'vexes', + 'vexil', + 'vezir', + 'vials', + 'viand', + 'vibes', + 'vibex', + 'vibey', + 'viced', + 'vices', + 'vichy', + 'viers', + 'views', + 'viewy', + 'vifda', + 'viffs', + 'vigas', + 'vigia', + 'vilde', + 'viler', + 'villi', + 'vills', + 'vimen', + 'vinal', + 'vinas', + 'vinca', + 'vined', + 'viner', + 'vines', + 'vinew', + 'vinic', + 'vinos', + 'vints', + 'viold', + 'viols', + 'vired', + 'vireo', + 'vires', + 'virga', + 'virge', + 'virid', + 'virls', + 'virtu', + 'visas', + 'vised', + 'vises', + 'visie', + 'visne', + 'vison', + 'visto', + 'vitae', + 'vitas', + 'vitex', + 'vitro', + 'vitta', + 'vivas', + 'vivat', + 'vivda', + 'viver', + 'vives', + 'vizir', + 'vizor', + 'vleis', + 'vlies', + 'vlogs', + 'voars', + 'vocab', + 'voces', + 'voddy', + 'vodou', + 'vodun', + 'voema', + 'vogie', + 'voids', + 'voile', + 'voips', + 'volae', + 'volar', + 'voled', + 'voles', + 'volet', + 'volks', + 'volta', + 'volte', + 'volti', + 'volts', + 'volva', + 'volve', + 'vomer', + 'voted', + 'votes', + 'vouge', + 'voulu', + 'vowed', + 'vower', + 'voxel', + 'vozhd', + 'vraic', + 'vrils', + 'vroom', + 'vrous', + 'vrouw', + 'vrows', + 'vuggs', + 'vuggy', + 'vughs', + 'vughy', + 'vulgo', + 'vulns', + 'vulva', + 'vutty', + 'waacs', + 'wacke', + 'wacko', + 'wacks', + 'wadds', + 'waddy', + 'waded', + 'wader', + 'wades', + 'wadge', + 'wadis', + 'wadts', + 'waffs', + 'wafts', + 'waged', + 'wages', + 'wagga', + 'wagyu', + 'wahoo', + 'waide', + 'waifs', + 'waift', + 'wails', + 'wains', + 'wairs', + 'waite', + 'waits', + 'wakas', + 'waked', + 'waken', + 'waker', + 'wakes', + 'wakfs', + 'waldo', + 'walds', + 'waled', + 'waler', + 'wales', + 'walie', + 'walis', + 'walks', + 'walla', + 'walls', + 'wally', + 'walty', + 'wamed', + 'wames', + 'wamus', + 'wands', + 'waned', + 'wanes', + 'waney', + 'wangs', + 'wanks', + 'wanky', + 'wanle', + 'wanly', + 'wanna', + 'wants', + 'wanty', + 'wanze', + 'waqfs', + 'warbs', + 'warby', + 'wards', + 'wared', + 'wares', + 'warez', + 'warks', + 'warms', + 'warns', + 'warps', + 'warre', + 'warst', + 'warts', + 'wases', + 'washy', + 'wasms', + 'wasps', + 'waspy', + 'wasts', + 'watap', + 'watts', + 'wauff', + 'waugh', + 'wauks', + 'waulk', + 'wauls', + 'waurs', + 'waved', + 'waves', + 'wavey', + 'wawas', + 'wawes', + 'wawls', + 'waxed', + 'waxer', + 'waxes', + 'wayed', + 'wazir', + 'wazoo', + 'weald', + 'weals', + 'weamb', + 'weans', + 'wears', + 'webby', + 'weber', + 'wecht', + 'wedel', + 'wedgy', + 'weeds', + 'weeke', + 'weeks', + 'weels', + 'weems', + 'weens', + 'weeny', + 'weeps', + 'weepy', + 'weest', + 'weete', + 'weets', + 'wefte', + 'wefts', + 'weids', + 'weils', + 'weirs', + 'weise', + 'weize', + 'wekas', + 'welds', + 'welke', + 'welks', + 'welkt', + 'wells', + 'welly', + 'welts', + 'wembs', + 'wends', + 'wenge', + 'wenny', + 'wents', + 'weros', + 'wersh', + 'wests', + 'wetas', + 'wetly', + 'wexed', + 'wexes', + 'whamo', + 'whams', + 'whang', + 'whaps', + 'whare', + 'whata', + 'whats', + 'whaup', + 'whaur', + 'wheal', + 'whear', + 'wheen', + 'wheep', + 'wheft', + 'whelk', + 'whelm', + 'whens', + 'whets', + 'whews', + 'wheys', + 'whids', + 'whift', + 'whigs', + 'whilk', + 'whims', + 'whins', + 'whios', + 'whips', + 'whipt', + 'whirr', + 'whirs', + 'whish', + 'whiss', + 'whist', + 'whits', + 'whity', + 'whizz', + 'whomp', + 'whoof', + 'whoot', + 'whops', + 'whore', + 'whorl', + 'whort', + 'whoso', + 'whows', + 'whump', + 'whups', + 'whyda', + 'wicca', + 'wicks', + 'wicky', + 'widdy', + 'wides', + 'wiels', + 'wifed', + 'wifes', + 'wifey', + 'wifie', + 'wifty', + 'wigan', + 'wigga', + 'wiggy', + 'wikis', + 'wilco', + 'wilds', + 'wiled', + 'wiles', + 'wilga', + 'wilis', + 'wilja', + 'wills', + 'wilts', + 'wimps', + 'winds', + 'wined', + 'wines', + 'winey', + 'winge', + 'wings', + 'wingy', + 'winks', + 'winna', + 'winns', + 'winos', + 'winze', + 'wiped', + 'wiper', + 'wipes', + 'wired', + 'wirer', + 'wires', + 'wirra', + 'wised', + 'wises', + 'wisha', + 'wisht', + 'wisps', + 'wists', + 'witan', + 'wited', + 'wites', + 'withe', + 'withs', + 'withy', + 'wived', + 'wiver', + 'wives', + 'wizen', + 'wizes', + 'woads', + 'woald', + 'wocks', + 'wodge', + 'woful', + 'wojus', + 'woker', + 'wokka', + 'wolds', + 'wolfs', + 'wolly', + 'wolve', + 'wombs', + 'womby', + 'womyn', + 'wonga', + 'wongi', + 'wonks', + 'wonky', + 'wonts', + 'woods', + 'wooed', + 'woofs', + 'woofy', + 'woold', + 'wools', + 'woons', + 'woops', + 'woopy', + 'woose', + 'woosh', + 'wootz', + 'words', + 'works', + 'worms', + 'wormy', + 'worts', + 'wowed', + 'wowee', + 'woxen', + 'wrang', + 'wraps', + 'wrapt', + 'wrast', + 'wrate', + 'wrawl', + 'wrens', + 'wrick', + 'wried', + 'wrier', + 'wries', + 'writs', + 'wroke', + 'wroot', + 'wroth', + 'wryer', + 'wuddy', + 'wudus', + 'wulls', + 'wurst', + 'wuses', + 'wushu', + 'wussy', + 'wuxia', + 'wyled', + 'wyles', + 'wynds', + 'wynns', + 'wyted', + 'wytes', + 'xebec', + 'xenia', + 'xenic', + 'xenon', + 'xeric', + 'xerox', + 'xerus', + 'xoana', + 'xrays', + 'xylan', + 'xylem', + 'xylic', + 'xylol', + 'xylyl', + 'xysti', + 'xysts', + 'yaars', + 'yabas', + 'yabba', + 'yabby', + 'yacca', + 'yacka', + 'yacks', + 'yaffs', + 'yager', + 'yages', + 'yagis', + 'yahoo', + 'yaird', + 'yakka', + 'yakow', + 'yales', + 'yamen', + 'yampy', + 'yamun', + 'yangs', + 'yanks', + 'yapok', + 'yapon', + 'yapps', + 'yappy', + 'yarak', + 'yarco', + 'yards', + 'yarer', + 'yarfa', + 'yarks', + 'yarns', + 'yarrs', + 'yarta', + 'yarto', + 'yates', + 'yauds', + 'yauld', + 'yaups', + 'yawed', + 'yawey', + 'yawls', + 'yawns', + 'yawny', + 'yawps', + 'ybore', + 'yclad', + 'ycled', + 'ycond', + 'ydrad', + 'ydred', + 'yeads', + 'yeahs', + 'yealm', + 'yeans', + 'yeard', + 'years', + 'yecch', + 'yechs', + 'yechy', + 'yedes', + 'yeeds', + 'yeesh', + 'yeggs', + 'yelks', + 'yells', + 'yelms', + 'yelps', + 'yelts', + 'yenta', + 'yente', + 'yerba', + 'yerds', + 'yerks', + 'yeses', + 'yesks', + 'yests', + 'yesty', + 'yetis', + 'yetts', + 'yeuks', + 'yeuky', + 'yeven', + 'yeves', + 'yewen', + 'yexed', + 'yexes', + 'yfere', + 'yiked', + 'yikes', + 'yills', + 'yince', + 'yipes', + 'yippy', + 'yirds', + 'yirks', + 'yirrs', + 'yirth', + 'yites', + 'yitie', + 'ylems', + 'ylike', + 'ylkes', + 'ymolt', + 'ympes', + 'yobbo', + 'yobby', + 'yocks', + 'yodel', + 'yodhs', + 'yodle', + 'yogas', + 'yogee', + 'yoghs', + 'yogic', + 'yogin', + 'yogis', + 'yoick', + 'yojan', + 'yoked', + 'yokel', + 'yoker', + 'yokes', + 'yokul', + 'yolks', + 'yolky', + 'yomim', + 'yomps', + 'yonic', + 'yonis', + 'yonks', + 'yoofs', + 'yoops', + 'yores', + 'yorks', + 'yorps', + 'youks', + 'yourn', + 'yours', + 'yourt', + 'youse', + 'yowed', + 'yowes', + 'yowie', + 'yowls', + 'yowza', + 'yrapt', + 'yrent', + 'yrivd', + 'yrneh', + 'ysame', + 'ytost', + 'yuans', + 'yucas', + 'yucca', + 'yucch', + 'yucko', + 'yucks', + 'yucky', + 'yufts', + 'yugas', + 'yuked', + 'yukes', + 'yukky', + 'yukos', + 'yulan', + 'yules', + 'yummo', + 'yummy', + 'yumps', + 'yupon', + 'yuppy', + 'yurta', + 'yurts', + 'yuzus', + 'zabra', + 'zacks', + 'zaida', + 'zaidy', + 'zaire', + 'zakat', + 'zaman', + 'zambo', + 'zamia', + 'zanja', + 'zante', + 'zanza', + 'zanze', + 'zappy', + 'zarfs', + 'zaris', + 'zatis', + 'zaxes', + 'zayin', + 'zazen', + 'zeals', + 'zebec', + 'zebub', + 'zebus', + 'zedas', + 'zeins', + 'zendo', + 'zerda', + 'zerks', + 'zeros', + 'zests', + 'zetas', + 'zexes', + 'zezes', + 'zhomo', + 'zibet', + 'ziffs', + 'zigan', + 'zilas', + 'zilch', + 'zilla', + 'zills', + 'zimbi', + 'zimbs', + 'zinco', + 'zincs', + 'zincy', + 'zineb', + 'zines', + 'zings', + 'zingy', + 'zinke', + 'zinky', + 'zippo', + 'zippy', + 'ziram', + 'zitis', + 'zizel', + 'zizit', + 'zlote', + 'zloty', + 'zoaea', + 'zobos', + 'zobus', + 'zocco', + 'zoeae', + 'zoeal', + 'zoeas', + 'zoism', + 'zoist', + 'zombi', + 'zonae', + 'zonda', + 'zoned', + 'zoner', + 'zones', + 'zonks', + 'zooea', + 'zooey', + 'zooid', + 'zooks', + 'zooms', + 'zoons', + 'zooty', + 'zoppa', + 'zoppo', + 'zoril', + 'zoris', + 'zorro', + 'zouks', + 'zowee', + 'zowie', + 'zulus', + 'zupan', + 'zupas', + 'zuppa', + 'zurfs', + 'zuzim', + 'zygal', + 'zygon', + 'zymes', + 'zymic' +]); diff --git a/frontend/sveltekit_ts/static/BUILD.bazel b/frontend/sveltekit_ts/static/BUILD.bazel new file mode 100644 index 000000000..76dcc9b08 --- /dev/null +++ b/frontend/sveltekit_ts/static/BUILD.bazel @@ -0,0 +1,7 @@ +load("@aspect_rules_js//js:defs.bzl", "js_library") + +js_library( + name = "static", + srcs = glob(["**"]), + visibility = ["//visibility:public"], +) diff --git a/frontend/sveltekit_ts/static/favicon.png b/frontend/sveltekit_ts/static/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..5d2ca2686451001dcb2e9a481cd6ec002111c2c2 GIT binary patch literal 1420 zcmV;71#|j|P)C00001b5ch_0Itp) z=>Px#V^B;~MF0Q*-{0Tg-{0Tg-`m^U+}zyU+}z#W-QC^Y-QC^Z-rnBc-rU^W-QC^Y z-QC^Y-T(jp{r&y>`}_I%`Sgwp|=;r3;sqHn(WpO9qvz5K;J&ywh$ zlH7`#bn4>v&y2X1bWC-Pqu|7OO?K)>XgAzy0t7W7tq4=+!MuMbH>yh%g6v7o+yeak zf;c?lu)&9^K59Wy5+JMvIRStLVYC`@5hqbpgLhvj| zKdC)62m@q6`9bZiQaI2m(nvn0yfL^|AIa1JD6)eKiUz&9swRdqaw(;TnI(>#vQlGTHRGy%Pi#9iaLX!T;In&9Lk% zS>!^_)SjH_3xm+;`B8X*$G%Rt>oPTj$Tgs1X-^uphtO!)x$w$5_IpL=1_-tejq`6g z(cVhrX#jS>iS|cD2dJh0DiE##mGkyD8`;<=`EC$ioc%x1DNA#di?IQB(%7Xv^#If_ zFRZ`-5P}^@JqAYd(8DBU?!X384`P-rvnabcI6$uC%xhzoL=XMnLF!?HRalxS0Bi4) z6D!haLF!?1VH)86^Y`s1NSeLL(ScM9D-z}Ff}PzPXJm;2Kr?OIGJu4bNBqvL7cR(I?;`De5hf@8CiKes z=cpjT^;S+maUXp?8gatVfeb|5$ zOow5MHhLORp0>JpJVK410T;5NmR3KNwB@bIdtn;zpcB+O_1#Z~`H#9l=G>SnsEG$G z6BREHWW)rOi7m4`zY`ZwCeF;WpduDnsXKE{N*eu0uI!ylX`V4fh-P89McbJbQD*if zlOo8gbsHsC%vxYFZsM8uI4yfTkQ*a1y9u~Ml{>pNx?5&+a(qGU;k)aCdlG57Y7P~# zNU*-wQD|%^&>na}QL?Ksq0w=#v9JSh5Ndec57!GrtUbIwjzT2` zgKmfGV`6a3W9@+i04d&_5eD}hTR<{fI8L`>>8Hemuk-|Ok#AQ1Mtv4|r+ zam}+pPGsSke(3e$0JLY}9!KvHKi%JN$R)(9`pmiR>{XcW3JSNrtHav!*aU;66&k}v ze%j-YN%m#@bwSy5Lu? a&+s4CUXK;EP{iN>0000 { + await page.goto('/about'); + await expect(page.getByRole('heading', { name: 'About this app' })).toBeVisible(); +}); diff --git a/frontend/sveltekit_ts/tsconfig.json b/frontend/sveltekit_ts/tsconfig.json new file mode 100644 index 000000000..17b568370 --- /dev/null +++ b/frontend/sveltekit_ts/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "module": "es2020", + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "sourceMap": true, + "strict": true, + "moduleResolution": "bundler", + "lib": [ + "es2020", + "dom" + ] + } +} diff --git a/frontend/sveltekit_ts/vite.config.ts b/frontend/sveltekit_ts/vite.config.ts new file mode 100644 index 000000000..37b6a84bc --- /dev/null +++ b/frontend/sveltekit_ts/vite.config.ts @@ -0,0 +1,9 @@ +import { sveltekit } from '@sveltejs/kit/vite'; +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + plugins: [sveltekit()], + test: { + include: ['src/**/*.{test,spec}.{js,ts}'] + } +});