Use aspect_rules_js

Seto Elkahfi committed Jun 5, 2024 at 20:57 UTC 2378098229129312144d339f9480532a3370df4e
25 files changed +50101 -6503
.bazelrc
+15
@@ -23,3 +23,18 @@ test --incompatible_strict_action_env
23 build --enable_runfiles
24 run --enable_runfiles
25 test --enable_runfiles
26 +
27 +###############################
28 +# Bzlmod #
29 +###############################
30 +
31 +common --enable_bzlmod
32 +
33 +# passes an argument `--skipLibCheck` to *every* spawn of tsc
34 +# Bazel 6.4 or greater: 'common' means 'any command that supports this flag'
35 +common --@aspect_rules_ts//ts:skipLibCheck=always
36 +
37 +# Between Bazel 6.0 and 6.3, you need all of this, to avoid discarding the analysis cache:
38 +build --@aspect_rules_ts//ts:skipLibCheck=always
39 +fetch --@aspect_rules_ts//ts:skipLibCheck=always
40 +query --@aspect_rules_ts//ts:skipLibCheck=always
.bazelversion
+1 -1
@@ -1 +1 @@
1 -6.5.0
1 +7.1.2
.npmrc new
+8
@@ -0,0 +1,8 @@
1 +# Disabling pnpm [hoisting](https://pnpm.io/npmrc#hoist) by setting `hoist=false` is recommended on
2 +# projects using rules_js so that pnpm outside of Bazel lays out a node_modules tree similar to what
3 +# rules_js lays out under Bazel (without a hidden node_modules/.pnpm/node_modules). See
4 +# https://github.com/aspect-build/rules_js/blob/7377f2d0387cc2a9251137929b1c53ccdb3fbcf0/docs/npm_import.md#npm_translate_lock
5 +# documentation for more information.
6 +hoist=false
7 +engine-strict=true
8 +registry=https://registry.npmjs.com/
.nvmrc
+1 -1
@@ -1 +1 @@
1 -18.17.0
1 +20.13.1
BUILD deleted
-46
@@ -1,46 +0,0 @@
1 -load("@npm//next:index.bzl", "next")
2 -load("@npm//@tauri-apps/cli:index.bzl", "tauri")
3 -
4 -next(
5 - name = "next-build",
6 - data = glob([
7 - "app/**",
8 - "public/**",
9 - ]) + [
10 - "tsconfig.json",
11 - "tailwind.config.js",
12 - ],
13 - templated_args = ["build"],
14 -)
15 -
16 -next(
17 - name = "next-dev",
18 - data = glob([
19 - "app/**",
20 - "public/**",
21 - ]) + [
22 - "tsconfig.json",
23 - "tailwind.config.js",
24 - ],
25 - templated_args = ["dev"],
26 -)
27 -
28 -tauri(
29 - name = "dev",
30 - data = glob(["**"]) + [
31 - "@npm//next",
32 - ],
33 - templated_args = [
34 - "dev",
35 - ],
36 -)
37 -
38 -tauri(
39 - name = "bundle",
40 - data = glob(["**"]) + [
41 - "@npm//next",
42 - ],
43 - templated_args = [
44 - "build",
45 - ],
46 -)
BUILD.bazel new
+41
@@ -0,0 +1,41 @@
1 +"Root BUILD file for all frontend examples"
2 +
3 +load("@npm//:defs.bzl", "npm_link_all_packages")
4 +load("@aspect_rules_ts//ts:defs.bzl", "ts_config")
5 +load("@npm//:next/package_json.bzl", next_bin = "bin")
6 +load("defs.bzl", "next")
7 +
8 +# package(default_visibility = ["//:__subpackages__"])
9 +
10 +# Create the root of the "virtual store" of npm dependencies under bazel-out.
11 +# This must be done in the package where the pnpm workspace is rooted.
12 +npm_link_all_packages(name = "node_modules")
13 +
14 +next_bin.next_binary(
15 + name = "next_js_binary",
16 + visibility = ["//visibility:public"],
17 +)
18 +
19 +ts_config(
20 + name = "tsconfig",
21 + src = "tsconfig.json",
22 + visibility = ["//visibility:public"],
23 +)
24 +
25 +next(
26 + name = "next",
27 + srcs = [
28 + "//app",
29 + "//public",
30 + ],
31 + data = [
32 + "next.config.js",
33 + "postcss.config.js",
34 + "tailwind.config.ts",
35 + "package.json",
36 + "jsconfig.json",
37 + ":node_modules",
38 + ],
39 + next_bin = "./node_modules/next/dist/bin/next",
40 + next_js_binary = ":next_js_binary",
41 +)
MODULE.bazel
+44 -6
@@ -1,6 +1,44 @@
1 -###############################################################################
2 -# Bazel now uses Bzlmod by default to manage external dependencies.
3 -# Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel.
4 -#
5 -# For more details, please check https://github.com/bazelbuild/bazel/issues/18958
6 -###############################################################################
1 +"Bazel module dependencies, see https://bazel.build/external/overview#bzlmod"
2 +
3 +bazel_dep(name = "aspect_bazel_lib", version = "2.7.1")
4 +bazel_dep(name = "aspect_rules_lint", version = "0.18.0")
5 +bazel_dep(name = "aspect_rules_jest", version = "0.20.0")
6 +bazel_dep(name = "aspect_rules_js", version = "1.42.3")
7 +bazel_dep(name = "aspect_rules_swc", version = "1.2.2")
8 +bazel_dep(name = "aspect_rules_ts", version = "2.4.1")
9 +bazel_dep(name = "aspect_rules_rollup", version = "1.0.2")
10 +bazel_dep(name = "aspect_rules_webpack", version = "0.14.0")
11 +bazel_dep(name = "bazel_skylib", version = "1.5.0")
12 +
13 +####### Node.js version #########
14 +# By default you get the node version from DEFAULT_NODE_VERSION in @rules_nodejs//nodejs:repositories.bzl
15 +# Optionally you can pin a different node version:
16 +bazel_dep(name = "rules_nodejs", version = "6.1.1")
17 +node = use_extension("@rules_nodejs//nodejs:extensions.bzl", "node")
18 +node.toolchain(node_version_from_nvmrc = "//:.nvmrc")
19 +#################################
20 +
21 +pnpm = use_extension("@aspect_rules_js//npm:extensions.bzl", "pnpm", dev_dependency = True)
22 +use_repo(pnpm, "pnpm")
23 +
24 +npm = use_extension("@aspect_rules_js//npm:extensions.bzl", "npm", dev_dependency = True)
25 +npm.npm_translate_lock(
26 + name = "npm",
27 + npmrc = "//:.npmrc",
28 + pnpm_lock = "//:pnpm-lock.yaml",
29 + public_hoist_packages = {
30 + "@next/eslint-plugin-next": ["next.js"],
31 + "eslint-config-react-app": ["react"],
32 + "eslint@8.28.0": ["react"],
33 + },
34 + verify_node_modules_ignored = "//:.bazelignore",
35 +)
36 +use_repo(npm, "npm")
37 +
38 +rules_ts_ext = use_extension(
39 + "@aspect_rules_ts//ts:extensions.bzl",
40 + "ext",
41 + dev_dependency = True,
42 +)
43 +rules_ts_ext.deps()
44 +use_repo(rules_ts_ext, "npm_typescript")
MODULE.bazel.lock
+45821 -580
@@ -1,6 +1,6 @@
1 {
2 "lockFileVersion": 6,
3 - "moduleFileHash": "0e3e315145ac7ee7a4e0ac825e1c5e03c068ec1254dd42c3caaecb27e921dc4d",
3 + "moduleFileHash": "c688ac20188c44d88bb859bcf35b6e985450fee2d58c65f60e8b7e1bec3fe891",
4 "flags": {
5 "cmdRegistries": [
6 "https://bcr.bazel.build/"
@@ -23,207 +23,273 @@
23 "repoName": "",
24 "executionPlatformsToRegister": [],
25 "toolchainsToRegister": [],
26 - "extensionUsages": [],
27 - "deps": {
28 - "bazel_tools": "bazel_tools@_",
29 - "local_config_platform": "local_config_platform@_"
30 - }
31 - },
32 - "bazel_tools@_": {
33 - "name": "bazel_tools",
34 - "version": "",
35 - "key": "bazel_tools@_",
36 - "repoName": "bazel_tools",
37 - "executionPlatformsToRegister": [],
38 - "toolchainsToRegister": [
39 - "@local_config_cc_toolchains//:all",
40 - "@local_config_sh//:local_sh_toolchain"
41 - ],
26 "extensionUsages": [
27 {
44 - "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
45 - "extensionName": "cc_configure_extension",
46 - "usingModule": "bazel_tools@_",
47 - "location": {
48 - "file": "@@bazel_tools//:MODULE.bazel",
49 - "line": 18,
50 - "column": 29
51 - },
52 - "imports": {
53 - "local_config_cc": "local_config_cc",
54 - "local_config_cc_toolchains": "local_config_cc_toolchains"
55 - },
56 - "devImports": [],
57 - "tags": [],
58 - "hasDevUseExtension": false,
59 - "hasNonDevUseExtension": true
60 - },
61 - {
62 - "extensionBzlFile": "@bazel_tools//tools/osx:xcode_configure.bzl",
63 - "extensionName": "xcode_configure_extension",
64 - "usingModule": "bazel_tools@_",
65 - "location": {
66 - "file": "@@bazel_tools//:MODULE.bazel",
67 - "line": 22,
68 - "column": 32
69 - },
70 - "imports": {
71 - "local_config_xcode": "local_config_xcode"
72 - },
73 - "devImports": [],
74 - "tags": [],
75 - "hasDevUseExtension": false,
76 - "hasNonDevUseExtension": true
77 - },
78 - {
79 - "extensionBzlFile": "@rules_java//java:extensions.bzl",
80 - "extensionName": "toolchains",
81 - "usingModule": "bazel_tools@_",
82 - "location": {
83 - "file": "@@bazel_tools//:MODULE.bazel",
84 - "line": 25,
85 - "column": 32
86 - },
87 - "imports": {
88 - "local_jdk": "local_jdk",
89 - "remote_java_tools": "remote_java_tools",
90 - "remote_java_tools_linux": "remote_java_tools_linux",
91 - "remote_java_tools_windows": "remote_java_tools_windows",
92 - "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
93 - "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64"
94 - },
95 - "devImports": [],
96 - "tags": [],
97 - "hasDevUseExtension": false,
98 - "hasNonDevUseExtension": true
99 - },
100 - {
101 - "extensionBzlFile": "@bazel_tools//tools/sh:sh_configure.bzl",
102 - "extensionName": "sh_configure_extension",
103 - "usingModule": "bazel_tools@_",
28 + "extensionBzlFile": "@rules_nodejs//nodejs:extensions.bzl",
29 + "extensionName": "node",
30 + "usingModule": "<root>",
31 "location": {
105 - "file": "@@bazel_tools//:MODULE.bazel",
106 - "line": 36,
107 - "column": 39
108 - },
109 - "imports": {
110 - "local_config_sh": "local_config_sh"
32 + "file": "@@//:MODULE.bazel",
33 + "line": 17,
34 + "column": 21
35 },
36 + "imports": {},
37 "devImports": [],
113 - "tags": [],
38 + "tags": [
39 + {
40 + "tagName": "toolchain",
41 + "attributeValues": {
42 + "node_version_from_nvmrc": "//:.nvmrc"
43 + },
44 + "devDependency": false,
45 + "location": {
46 + "file": "@@//:MODULE.bazel",
47 + "line": 18,
48 + "column": 15
49 + }
50 + }
51 + ],
52 "hasDevUseExtension": false,
53 "hasNonDevUseExtension": true
54 },
55 {
118 - "extensionBzlFile": "@bazel_tools//tools/test:extensions.bzl",
119 - "extensionName": "remote_coverage_tools_extension",
120 - "usingModule": "bazel_tools@_",
56 + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl",
57 + "extensionName": "pnpm",
58 + "usingModule": "<root>",
59 "location": {
122 - "file": "@@bazel_tools//:MODULE.bazel",
123 - "line": 40,
124 - "column": 48
60 + "file": "@@//:MODULE.bazel",
61 + "line": 21,
62 + "column": 21
63 },
64 "imports": {
127 - "remote_coverage_tools": "remote_coverage_tools"
65 + "pnpm": "pnpm"
66 },
129 - "devImports": [],
67 + "devImports": [
68 + "pnpm"
69 + ],
70 "tags": [],
131 - "hasDevUseExtension": false,
132 - "hasNonDevUseExtension": true
71 + "hasDevUseExtension": true,
72 + "hasNonDevUseExtension": false
73 },
74 {
135 - "extensionBzlFile": "@bazel_tools//tools/android:android_extensions.bzl",
136 - "extensionName": "remote_android_tools_extensions",
137 - "usingModule": "bazel_tools@_",
75 + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl",
76 + "extensionName": "npm",
77 + "usingModule": "<root>",
78 "location": {
139 - "file": "@@bazel_tools//:MODULE.bazel",
140 - "line": 43,
141 - "column": 42
79 + "file": "@@//:MODULE.bazel",
80 + "line": 24,
81 + "column": 20
82 },
83 "imports": {
144 - "android_gmaven_r8": "android_gmaven_r8",
145 - "android_tools": "android_tools"
84 + "npm": "npm"
85 },
147 - "devImports": [],
148 - "tags": [],
149 - "hasDevUseExtension": false,
150 - "hasNonDevUseExtension": true
86 + "devImports": [
87 + "npm"
88 + ],
89 + "tags": [
90 + {
91 + "tagName": "npm_translate_lock",
92 + "attributeValues": {
93 + "name": "npm",
94 + "npmrc": "//:.npmrc",
95 + "pnpm_lock": "//:pnpm-lock.yaml",
96 + "public_hoist_packages": {
97 + "@next/eslint-plugin-next": [
98 + "next.js"
99 + ],
100 + "eslint-config-react-app": [
101 + "react"
102 + ],
103 + "eslint@8.28.0": [
104 + "react"
105 + ]
106 + },
107 + "verify_node_modules_ignored": "//:.bazelignore"
108 + },
109 + "devDependency": true,
110 + "location": {
111 + "file": "@@//:MODULE.bazel",
112 + "line": 25,
113 + "column": 23
114 + }
115 + }
116 + ],
117 + "hasDevUseExtension": true,
118 + "hasNonDevUseExtension": false
119 },
120 {
153 - "extensionBzlFile": "@buildozer//:buildozer_binary.bzl",
154 - "extensionName": "buildozer_binary",
155 - "usingModule": "bazel_tools@_",
121 + "extensionBzlFile": "@aspect_rules_ts//ts:extensions.bzl",
122 + "extensionName": "ext",
123 + "usingModule": "<root>",
124 "location": {
157 - "file": "@@bazel_tools//:MODULE.bazel",
158 - "line": 47,
159 - "column": 33
125 + "file": "@@//:MODULE.bazel",
126 + "line": 38,
127 + "column": 29
128 },
129 "imports": {
162 - "buildozer_binary": "buildozer_binary"
130 + "npm_typescript": "npm_typescript"
131 },
164 - "devImports": [],
165 - "tags": [],
166 - "hasDevUseExtension": false,
167 - "hasNonDevUseExtension": true
132 + "devImports": [
133 + "npm_typescript"
134 + ],
135 + "tags": [
136 + {
137 + "tagName": "deps",
138 + "attributeValues": {},
139 + "devDependency": true,
140 + "location": {
141 + "file": "@@//:MODULE.bazel",
142 + "line": 43,
143 + "column": 18
144 + }
145 + }
146 + ],
147 + "hasDevUseExtension": true,
148 + "hasNonDevUseExtension": false
149 }
150 ],
151 "deps": {
171 - "rules_cc": "rules_cc@0.0.9",
172 - "rules_java": "rules_java@7.4.0",
173 - "rules_license": "rules_license@0.0.7",
174 - "rules_proto": "rules_proto@5.3.0-21.7",
175 - "rules_python": "rules_python@0.22.1",
176 - "buildozer": "buildozer@6.4.0.2",
177 - "platforms": "platforms@0.0.7",
178 - "com_google_protobuf": "protobuf@21.7",
179 - "zlib": "zlib@1.3",
180 - "build_bazel_apple_support": "apple_support@1.5.0",
152 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
153 + "aspect_rules_lint": "aspect_rules_lint@0.18.0",
154 + "aspect_rules_jest": "aspect_rules_jest@0.20.0",
155 + "aspect_rules_js": "aspect_rules_js@1.42.3",
156 + "aspect_rules_swc": "aspect_rules_swc@1.2.2",
157 + "aspect_rules_ts": "aspect_rules_ts@2.4.1",
158 + "aspect_rules_rollup": "aspect_rules_rollup@1.0.2",
159 + "aspect_rules_webpack": "aspect_rules_webpack@0.14.0",
160 + "bazel_skylib": "bazel_skylib@1.5.0",
161 + "rules_nodejs": "rules_nodejs@6.1.1",
162 + "bazel_tools": "bazel_tools@_",
163 "local_config_platform": "local_config_platform@_"
164 }
165 },
184 - "local_config_platform@_": {
185 - "name": "local_config_platform",
186 - "version": "",
187 - "key": "local_config_platform@_",
188 - "repoName": "local_config_platform",
189 - "executionPlatformsToRegister": [],
190 - "toolchainsToRegister": [],
191 - "extensionUsages": [],
192 - "deps": {
193 - "platforms": "platforms@0.0.7",
194 - "bazel_tools": "bazel_tools@_"
195 - }
196 - },
197 - "rules_cc@0.0.9": {
198 - "name": "rules_cc",
199 - "version": "0.0.9",
200 - "key": "rules_cc@0.0.9",
201 - "repoName": "rules_cc",
166 + "aspect_bazel_lib@2.7.1": {
167 + "name": "aspect_bazel_lib",
168 + "version": "2.7.1",
169 + "key": "aspect_bazel_lib@2.7.1",
170 + "repoName": "aspect_bazel_lib",
171 "executionPlatformsToRegister": [],
172 "toolchainsToRegister": [
204 - "@local_config_cc_toolchains//:all"
173 + "@copy_directory_toolchains//:all",
174 + "@copy_to_directory_toolchains//:all",
175 + "@jq_toolchains//:all",
176 + "@yq_toolchains//:all",
177 + "@coreutils_toolchains//:all",
178 + "@expand_template_toolchains//:all",
179 + "@bats_toolchains//:all",
180 + "@bsd_tar_toolchains//:all"
181 ],
182 "extensionUsages": [
183 {
208 - "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
209 - "extensionName": "cc_configure_extension",
210 - "usingModule": "rules_cc@0.0.9",
184 + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl",
185 + "extensionName": "toolchains",
186 + "usingModule": "aspect_bazel_lib@2.7.1",
187 "location": {
212 - "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel",
213 - "line": 9,
214 - "column": 29
188 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
189 + "line": 17,
190 + "column": 37
191 },
192 "imports": {
217 - "local_config_cc_toolchains": "local_config_cc_toolchains"
193 + "bats_toolchains": "bats_toolchains",
194 + "bsd_tar_toolchains": "bsd_tar_toolchains",
195 + "copy_directory_toolchains": "copy_directory_toolchains",
196 + "copy_to_directory_toolchains": "copy_to_directory_toolchains",
197 + "coreutils_toolchains": "coreutils_toolchains",
198 + "expand_template_toolchains": "expand_template_toolchains",
199 + "jq_toolchains": "jq_toolchains",
200 + "yq_toolchains": "yq_toolchains"
201 },
202 "devImports": [],
220 - "tags": [],
203 + "tags": [
204 + {
205 + "tagName": "copy_directory",
206 + "attributeValues": {},
207 + "devDependency": false,
208 + "location": {
209 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
210 + "line": 18,
211 + "column": 36
212 + }
213 + },
214 + {
215 + "tagName": "copy_to_directory",
216 + "attributeValues": {},
217 + "devDependency": false,
218 + "location": {
219 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
220 + "line": 19,
221 + "column": 39
222 + }
223 + },
224 + {
225 + "tagName": "jq",
226 + "attributeValues": {},
227 + "devDependency": false,
228 + "location": {
229 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
230 + "line": 20,
231 + "column": 24
232 + }
233 + },
234 + {
235 + "tagName": "yq",
236 + "attributeValues": {},
237 + "devDependency": false,
238 + "location": {
239 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
240 + "line": 21,
241 + "column": 24
242 + }
243 + },
244 + {
245 + "tagName": "coreutils",
246 + "attributeValues": {},
247 + "devDependency": false,
248 + "location": {
249 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
250 + "line": 22,
251 + "column": 31
252 + }
253 + },
254 + {
255 + "tagName": "tar",
256 + "attributeValues": {},
257 + "devDependency": false,
258 + "location": {
259 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
260 + "line": 23,
261 + "column": 25
262 + }
263 + },
264 + {
265 + "tagName": "expand_template",
266 + "attributeValues": {},
267 + "devDependency": false,
268 + "location": {
269 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
270 + "line": 24,
271 + "column": 37
272 + }
273 + },
274 + {
275 + "tagName": "bats",
276 + "attributeValues": {},
277 + "devDependency": false,
278 + "location": {
279 + "file": "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/MODULE.bazel",
280 + "line": 25,
281 + "column": 26
282 + }
283 + }
284 + ],
285 "hasDevUseExtension": false,
286 "hasNonDevUseExtension": true
287 }
288 ],
289 "deps": {
226 - "platforms": "platforms@0.0.7",
290 + "bazel_skylib": "bazel_skylib@1.5.0",
291 + "platforms": "platforms@0.0.8",
292 + "io_bazel_stardoc": "stardoc@0.5.4",
293 "bazel_tools": "bazel_tools@_",
294 "local_config_platform": "local_config_platform@_"
295 },
@@ -232,100 +298,80 @@
298 "ruleClassName": "http_archive",
299 "attributes": {
300 "urls": [
235 - "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz"
301 + "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.1/bazel-lib-v2.7.1.tar.gz"
302 ],
237 - "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=",
238 - "strip_prefix": "rules_cc-0.0.9",
303 + "integrity": "sha256-tVTreUKlq0TJAHffagx2/GfFh0yURqAH6bpovoK9R5Y=",
304 + "strip_prefix": "bazel-lib-2.7.1",
305 "remote_patches": {
240 - "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g="
306 + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/patches/go_dev_dep.patch": "sha256-KgABwDzOT+DugUHn9tHLOz05osnk2FLsS10d5zqG/M0=",
307 + "https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.1/patches/module_dot_bazel_version.patch": "sha256-mNWVPqhb9ui6YgnmU3Xe7yM9KnvSY0QWLo/ETqjYR2U="
308 },
242 - "remote_patch_strip": 0
309 + "remote_patch_strip": 1
310 }
311 }
312 },
246 - "rules_java@7.4.0": {
247 - "name": "rules_java",
248 - "version": "7.4.0",
249 - "key": "rules_java@7.4.0",
250 - "repoName": "rules_java",
313 + "aspect_rules_lint@0.18.0": {
314 + "name": "aspect_rules_lint",
315 + "version": "0.18.0",
316 + "key": "aspect_rules_lint@0.18.0",
317 + "repoName": "aspect_rules_lint",
318 "executionPlatformsToRegister": [],
252 - "toolchainsToRegister": [
253 - "//toolchains:all",
254 - "@local_jdk//:runtime_toolchain_definition",
255 - "@local_jdk//:bootstrap_runtime_toolchain_definition",
256 - "@remotejdk11_linux_toolchain_config_repo//:all",
257 - "@remotejdk11_linux_aarch64_toolchain_config_repo//:all",
258 - "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all",
259 - "@remotejdk11_linux_s390x_toolchain_config_repo//:all",
260 - "@remotejdk11_macos_toolchain_config_repo//:all",
261 - "@remotejdk11_macos_aarch64_toolchain_config_repo//:all",
262 - "@remotejdk11_win_toolchain_config_repo//:all",
263 - "@remotejdk11_win_arm64_toolchain_config_repo//:all",
264 - "@remotejdk17_linux_toolchain_config_repo//:all",
265 - "@remotejdk17_linux_aarch64_toolchain_config_repo//:all",
266 - "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all",
267 - "@remotejdk17_linux_s390x_toolchain_config_repo//:all",
268 - "@remotejdk17_macos_toolchain_config_repo//:all",
269 - "@remotejdk17_macos_aarch64_toolchain_config_repo//:all",
270 - "@remotejdk17_win_toolchain_config_repo//:all",
271 - "@remotejdk17_win_arm64_toolchain_config_repo//:all",
272 - "@remotejdk21_linux_toolchain_config_repo//:all",
273 - "@remotejdk21_linux_aarch64_toolchain_config_repo//:all",
274 - "@remotejdk21_macos_toolchain_config_repo//:all",
275 - "@remotejdk21_macos_aarch64_toolchain_config_repo//:all",
276 - "@remotejdk21_win_toolchain_config_repo//:all"
277 - ],
319 + "toolchainsToRegister": [],
320 "extensionUsages": [
321 {
280 - "extensionBzlFile": "@rules_java//java:extensions.bzl",
281 - "extensionName": "toolchains",
282 - "usingModule": "rules_java@7.4.0",
322 + "extensionBzlFile": "@rules_multitool//multitool:extension.bzl",
323 + "extensionName": "multitool",
324 + "usingModule": "aspect_rules_lint@0.18.0",
325 "location": {
284 - "file": "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel",
285 - "line": 19,
286 - "column": 27
326 + "file": "https://bcr.bazel.build/modules/aspect_rules_lint/0.18.0/MODULE.bazel",
327 + "line": 30,
328 + "column": 26
329 },
330 "imports": {
289 - "remote_java_tools": "remote_java_tools",
290 - "remote_java_tools_linux": "remote_java_tools_linux",
291 - "remote_java_tools_windows": "remote_java_tools_windows",
292 - "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
293 - "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64",
294 - "local_jdk": "local_jdk",
295 - "remotejdk11_linux_toolchain_config_repo": "remotejdk11_linux_toolchain_config_repo",
296 - "remotejdk11_linux_aarch64_toolchain_config_repo": "remotejdk11_linux_aarch64_toolchain_config_repo",
297 - "remotejdk11_linux_ppc64le_toolchain_config_repo": "remotejdk11_linux_ppc64le_toolchain_config_repo",
298 - "remotejdk11_linux_s390x_toolchain_config_repo": "remotejdk11_linux_s390x_toolchain_config_repo",
299 - "remotejdk11_macos_toolchain_config_repo": "remotejdk11_macos_toolchain_config_repo",
300 - "remotejdk11_macos_aarch64_toolchain_config_repo": "remotejdk11_macos_aarch64_toolchain_config_repo",
301 - "remotejdk11_win_toolchain_config_repo": "remotejdk11_win_toolchain_config_repo",
302 - "remotejdk11_win_arm64_toolchain_config_repo": "remotejdk11_win_arm64_toolchain_config_repo",
303 - "remotejdk17_linux_toolchain_config_repo": "remotejdk17_linux_toolchain_config_repo",
304 - "remotejdk17_linux_aarch64_toolchain_config_repo": "remotejdk17_linux_aarch64_toolchain_config_repo",
305 - "remotejdk17_linux_ppc64le_toolchain_config_repo": "remotejdk17_linux_ppc64le_toolchain_config_repo",
306 - "remotejdk17_linux_s390x_toolchain_config_repo": "remotejdk17_linux_s390x_toolchain_config_repo",
307 - "remotejdk17_macos_toolchain_config_repo": "remotejdk17_macos_toolchain_config_repo",
308 - "remotejdk17_macos_aarch64_toolchain_config_repo": "remotejdk17_macos_aarch64_toolchain_config_repo",
309 - "remotejdk17_win_toolchain_config_repo": "remotejdk17_win_toolchain_config_repo",
310 - "remotejdk17_win_arm64_toolchain_config_repo": "remotejdk17_win_arm64_toolchain_config_repo",
311 - "remotejdk21_linux_toolchain_config_repo": "remotejdk21_linux_toolchain_config_repo",
312 - "remotejdk21_linux_aarch64_toolchain_config_repo": "remotejdk21_linux_aarch64_toolchain_config_repo",
313 - "remotejdk21_macos_toolchain_config_repo": "remotejdk21_macos_toolchain_config_repo",
314 - "remotejdk21_macos_aarch64_toolchain_config_repo": "remotejdk21_macos_aarch64_toolchain_config_repo",
315 - "remotejdk21_win_toolchain_config_repo": "remotejdk21_win_toolchain_config_repo"
331 + "multitool": "multitool"
332 },
333 "devImports": [],
318 - "tags": [],
334 + "tags": [
335 + {
336 + "tagName": "hub",
337 + "attributeValues": {
338 + "lockfile": "//format:multitool.lock.json"
339 + },
340 + "devDependency": false,
341 + "location": {
342 + "file": "https://bcr.bazel.build/modules/aspect_rules_lint/0.18.0/MODULE.bazel",
343 + "line": 31,
344 + "column": 14
345 + }
346 + },
347 + {
348 + "tagName": "hub",
349 + "attributeValues": {
350 + "lockfile": "//lint:multitool.lock.json"
351 + },
352 + "devDependency": false,
353 + "location": {
354 + "file": "https://bcr.bazel.build/modules/aspect_rules_lint/0.18.0/MODULE.bazel",
355 + "line": 32,
356 + "column": 14
357 + }
358 + }
359 + ],
360 "hasDevUseExtension": false,
361 "hasNonDevUseExtension": true
362 }
363 ],
364 "deps": {
324 - "platforms": "platforms@0.0.7",
325 - "rules_cc": "rules_cc@0.0.9",
326 - "bazel_skylib": "bazel_skylib@1.3.0",
327 - "rules_proto": "rules_proto@5.3.0-21.7",
328 - "rules_license": "rules_license@0.0.7",
365 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
366 + "aspect_rules_js": "aspect_rules_js@1.42.3",
367 + "bazel_skylib": "bazel_skylib@1.5.0",
368 + "platforms": "platforms@0.0.8",
369 + "rules_multirun": "rules_multirun@0.9.0",
370 + "rules_multitool": "rules_multitool@0.4.0",
371 + "rules_proto": "rules_proto@6.0.0",
372 + "rules_buf": "rules_buf@0.1.1",
373 + "toolchains_protoc": "toolchains_protoc@0.2.1",
374 + "io_bazel_rules_go": "rules_go@0.39.1",
375 "bazel_tools": "bazel_tools@_",
376 "local_config_platform": "local_config_platform@_"
377 },
@@ -334,24 +380,30 @@
380 "ruleClassName": "http_archive",
381 "attributes": {
382 "urls": [
337 - "https://github.com/bazelbuild/rules_java/releases/download/7.4.0/rules_java-7.4.0.tar.gz"
383 + "https://github.com/aspect-build/rules_lint/releases/download/v0.18.0/rules_lint-v0.18.0.tar.gz"
384 ],
339 - "integrity": "sha256-l27wi0nJKXQfIBeQ5Z44B8cq2B9CjIvJU82+/1/tFes=",
340 - "strip_prefix": "",
341 - "remote_patches": {},
342 - "remote_patch_strip": 0
385 + "integrity": "sha256-o+B/ByFra0BtIpfCc+evTMgJa0MoiVICDN9NwS9Fteg=",
386 + "strip_prefix": "rules_lint-0.18.0",
387 + "remote_patches": {
388 + "https://bcr.bazel.build/modules/aspect_rules_lint/0.18.0/patches/module_dot_bazel_version.patch": "sha256-GUu6tZWTRt/bKuguBOWyJD8wXgU8AE38V4CrHKUJTLU="
389 + },
390 + "remote_patch_strip": 1
391 }
392 }
393 },
346 - "rules_license@0.0.7": {
347 - "name": "rules_license",
348 - "version": "0.0.7",
349 - "key": "rules_license@0.0.7",
350 - "repoName": "rules_license",
394 + "aspect_rules_jest@0.20.0": {
395 + "name": "aspect_rules_jest",
396 + "version": "0.20.0",
397 + "key": "aspect_rules_jest@0.20.0",
398 + "repoName": "aspect_rules_jest",
399 "executionPlatformsToRegister": [],
400 "toolchainsToRegister": [],
401 "extensionUsages": [],
402 "deps": {
403 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
404 + "aspect_rules_js": "aspect_rules_js@1.42.3",
405 + "bazel_skylib": "bazel_skylib@1.5.0",
406 + "rules_nodejs": "rules_nodejs@6.1.1",
407 "bazel_tools": "bazel_tools@_",
408 "local_config_platform": "local_config_platform@_"
409 },
@@ -360,104 +412,75 @@
412 "ruleClassName": "http_archive",
413 "attributes": {
414 "urls": [
363 - "https://github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz"
415 + "https://github.com/aspect-build/rules_jest/releases/download/v0.20.0/rules_jest-v0.20.0.tar.gz"
416 ],
365 - "integrity": "sha256-RTHezLkTY5ww5cdRKgVNXYdWmNrrddjPkPKEN1/nw2A=",
366 - "strip_prefix": "",
367 - "remote_patches": {},
368 - "remote_patch_strip": 0
417 + "integrity": "sha256-ScaI44OMhVqazzt3vCXPsYvdcLA/8IEPv9Y1PdYFX+s=",
418 + "strip_prefix": "rules_jest-0.20.0",
419 + "remote_patches": {
420 + "https://bcr.bazel.build/modules/aspect_rules_jest/0.20.0/patches/module_dot_bazel_version.patch": "sha256-rjl5GAT1jffo6cajU76zBUe64mPTi4HdFbFK4CJ8X4k="
421 + },
422 + "remote_patch_strip": 1
423 }
424 }
425 },
372 - "rules_proto@5.3.0-21.7": {
373 - "name": "rules_proto",
374 - "version": "5.3.0-21.7",
375 - "key": "rules_proto@5.3.0-21.7",
376 - "repoName": "rules_proto",
426 + "aspect_rules_js@1.42.3": {
427 + "name": "aspect_rules_js",
428 + "version": "1.42.3",
429 + "key": "aspect_rules_js@1.42.3",
430 + "repoName": "aspect_rules_js",
431 "executionPlatformsToRegister": [],
432 "toolchainsToRegister": [],
379 - "extensionUsages": [],
380 - "deps": {
381 - "bazel_skylib": "bazel_skylib@1.3.0",
382 - "com_google_protobuf": "protobuf@21.7",
383 - "rules_cc": "rules_cc@0.0.9",
384 - "bazel_tools": "bazel_tools@_",
385 - "local_config_platform": "local_config_platform@_"
386 - },
387 - "repoSpec": {
388 - "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
389 - "ruleClassName": "http_archive",
390 - "attributes": {
391 - "urls": [
392 - "https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.7.tar.gz"
393 - ],
394 - "integrity": "sha256-3D+yBqLLNEG0heseQjFlsjEjWh6psDG0Qzz3vB+kYN0=",
395 - "strip_prefix": "rules_proto-5.3.0-21.7",
396 - "remote_patches": {},
397 - "remote_patch_strip": 0
398 - }
399 - }
400 - },
401 - "rules_python@0.22.1": {
402 - "name": "rules_python",
403 - "version": "0.22.1",
404 - "key": "rules_python@0.22.1",
405 - "repoName": "rules_python",
406 - "executionPlatformsToRegister": [],
407 - "toolchainsToRegister": [
408 - "@bazel_tools//tools/python:autodetecting_toolchain"
409 - ],
433 "extensionUsages": [
434 {
412 - "extensionBzlFile": "@rules_python//python/extensions/private:internal_deps.bzl",
413 - "extensionName": "internal_deps",
414 - "usingModule": "rules_python@0.22.1",
435 + "extensionBzlFile": "@rules_nodejs//nodejs:extensions.bzl",
436 + "extensionName": "node",
437 + "usingModule": "aspect_rules_js@1.42.3",
438 "location": {
416 - "file": "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel",
417 - "line": 14,
418 - "column": 30
439 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.42.3/MODULE.bazel",
440 + "line": 27,
441 + "column": 21
442 },
443 "imports": {
421 - "pypi__build": "pypi__build",
422 - "pypi__click": "pypi__click",
423 - "pypi__colorama": "pypi__colorama",
424 - "pypi__importlib_metadata": "pypi__importlib_metadata",
425 - "pypi__installer": "pypi__installer",
426 - "pypi__more_itertools": "pypi__more_itertools",
427 - "pypi__packaging": "pypi__packaging",
428 - "pypi__pep517": "pypi__pep517",
429 - "pypi__pip": "pypi__pip",
430 - "pypi__pip_tools": "pypi__pip_tools",
431 - "pypi__setuptools": "pypi__setuptools",
432 - "pypi__tomli": "pypi__tomli",
433 - "pypi__wheel": "pypi__wheel",
434 - "pypi__zipp": "pypi__zipp",
435 - "pypi__coverage_cp310_aarch64-apple-darwin": "pypi__coverage_cp310_aarch64-apple-darwin",
436 - "pypi__coverage_cp310_aarch64-unknown-linux-gnu": "pypi__coverage_cp310_aarch64-unknown-linux-gnu",
437 - "pypi__coverage_cp310_x86_64-apple-darwin": "pypi__coverage_cp310_x86_64-apple-darwin",
438 - "pypi__coverage_cp310_x86_64-unknown-linux-gnu": "pypi__coverage_cp310_x86_64-unknown-linux-gnu",
439 - "pypi__coverage_cp311_aarch64-unknown-linux-gnu": "pypi__coverage_cp311_aarch64-unknown-linux-gnu",
440 - "pypi__coverage_cp311_x86_64-apple-darwin": "pypi__coverage_cp311_x86_64-apple-darwin",
441 - "pypi__coverage_cp311_x86_64-unknown-linux-gnu": "pypi__coverage_cp311_x86_64-unknown-linux-gnu",
442 - "pypi__coverage_cp38_aarch64-apple-darwin": "pypi__coverage_cp38_aarch64-apple-darwin",
443 - "pypi__coverage_cp38_aarch64-unknown-linux-gnu": "pypi__coverage_cp38_aarch64-unknown-linux-gnu",
444 - "pypi__coverage_cp38_x86_64-apple-darwin": "pypi__coverage_cp38_x86_64-apple-darwin",
445 - "pypi__coverage_cp38_x86_64-unknown-linux-gnu": "pypi__coverage_cp38_x86_64-unknown-linux-gnu",
446 - "pypi__coverage_cp39_aarch64-apple-darwin": "pypi__coverage_cp39_aarch64-apple-darwin",
447 - "pypi__coverage_cp39_aarch64-unknown-linux-gnu": "pypi__coverage_cp39_aarch64-unknown-linux-gnu",
448 - "pypi__coverage_cp39_x86_64-apple-darwin": "pypi__coverage_cp39_x86_64-apple-darwin",
449 - "pypi__coverage_cp39_x86_64-unknown-linux-gnu": "pypi__coverage_cp39_x86_64-unknown-linux-gnu"
444 + "nodejs_darwin_amd64": "nodejs_darwin_amd64",
445 + "nodejs_darwin_arm64": "nodejs_darwin_arm64",
446 + "nodejs_linux_amd64": "nodejs_linux_amd64",
447 + "nodejs_linux_arm64": "nodejs_linux_arm64",
448 + "nodejs_linux_ppc64le": "nodejs_linux_ppc64le",
449 + "nodejs_linux_s390x": "nodejs_linux_s390x",
450 + "nodejs_windows_amd64": "nodejs_windows_amd64"
451 + },
452 + "devImports": [],
453 + "tags": [],
454 + "hasDevUseExtension": false,
455 + "hasNonDevUseExtension": true
456 + },
457 + {
458 + "extensionBzlFile": "@aspect_rules_js//npm:extensions.bzl",
459 + "extensionName": "pnpm",
460 + "usingModule": "aspect_rules_js@1.42.3",
461 + "location": {
462 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.42.3/MODULE.bazel",
463 + "line": 36,
464 + "column": 21
465 + },
466 + "imports": {
467 + "pnpm": "pnpm",
468 + "pnpm__links": "pnpm__links"
469 },
470 "devImports": [],
471 "tags": [
472 {
454 - "tagName": "install",
455 - "attributeValues": {},
473 + "tagName": "pnpm",
474 + "attributeValues": {
475 + "name": "pnpm",
476 + "pnpm_version": "8.6.7",
477 + "pnpm_version_integrity": "sha512-vRIWpD/L4phf9Bk2o/O2TDR8fFoJnpYrp2TKqTIZF/qZ2/rgL3qKXzHofHgbXsinwMoSEigz28sqk3pQ+yMEQQ=="
478 + },
479 "devDependency": false,
480 "location": {
458 - "file": "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel",
459 - "line": 15,
460 - "column": 22
481 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.42.3/MODULE.bazel",
482 + "line": 37,
483 + "column": 10
484 }
485 }
486 ],
@@ -465,28 +488,48 @@
488 "hasNonDevUseExtension": true
489 },
490 {
468 - "extensionBzlFile": "@rules_python//python/extensions:python.bzl",
469 - "extensionName": "python",
470 - "usingModule": "rules_python@0.22.1",
491 + "extensionBzlFile": "@aspect_bazel_lib//lib:extensions.bzl",
492 + "extensionName": "toolchains",
493 + "usingModule": "aspect_rules_js@1.42.3",
494 "location": {
472 - "file": "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel",
473 - "line": 50,
474 - "column": 23
495 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.42.3/MODULE.bazel",
496 + "line": 44,
497 + "column": 37
498 },
499 "imports": {
477 - "pythons_hub": "pythons_hub"
500 + "coreutils_toolchains": "coreutils_toolchains",
501 + "yq_darwin_amd64": "yq_darwin_amd64",
502 + "yq_darwin_arm64": "yq_darwin_arm64",
503 + "yq_linux_amd64": "yq_linux_amd64",
504 + "yq_linux_arm64": "yq_linux_arm64",
505 + "yq_linux_ppc64le": "yq_linux_ppc64le",
506 + "yq_linux_s390x": "yq_linux_s390x",
507 + "yq_windows_amd64": "yq_windows_amd64",
508 + "bsd_tar_toolchains": "bsd_tar_toolchains"
509 },
510 "devImports": [],
480 - "tags": [],
511 + "tags": [
512 + {
513 + "tagName": "tar",
514 + "attributeValues": {},
515 + "devDependency": false,
516 + "location": {
517 + "file": "https://bcr.bazel.build/modules/aspect_rules_js/1.42.3/MODULE.bazel",
518 + "line": 45,
519 + "column": 25
520 + }
521 + }
522 + ],
523 "hasDevUseExtension": false,
524 "hasNonDevUseExtension": true
525 }
526 ],
527 "deps": {
486 - "platforms": "platforms@0.0.7",
487 - "bazel_skylib": "bazel_skylib@1.3.0",
488 - "rules_proto": "rules_proto@5.3.0-21.7",
489 - "com_google_protobuf": "protobuf@21.7",
528 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
529 + "bazel_features": "bazel_features@1.9.0",
530 + "bazel_skylib": "bazel_skylib@1.5.0",
531 + "rules_nodejs": "rules_nodejs@6.1.1",
532 + "platforms": "platforms@0.0.8",
533 "bazel_tools": "bazel_tools@_",
534 "local_config_platform": "local_config_platform@_"
535 },
@@ -495,56 +538,52 @@
538 "ruleClassName": "http_archive",
539 "attributes": {
540 "urls": [
498 - "https://github.com/bazelbuild/rules_python/releases/download/0.22.1/rules_python-0.22.1.tar.gz"
541 + "https://github.com/aspect-build/rules_js/releases/download/v1.42.3/rules_js-v1.42.3.tar.gz"
542 ],
500 - "integrity": "sha256-pWQP3dS+sD6MH95e1xYMC6a9R359BIZhwwwGk2om/WM=",
501 - "strip_prefix": "rules_python-0.22.1",
543 + "integrity": "sha256-LPs4deEjHO/T+tpndPLAxamdsAcODkjqOYrL/3xsdls=",
544 + "strip_prefix": "rules_js-1.42.3",
545 "remote_patches": {
503 - "https://bcr.bazel.build/modules/rules_python/0.22.1/patches/module_dot_bazel_version.patch": "sha256-3+VLDH9gYDzNI4eOW7mABC/LKxh1xqF6NhacLbNTucs="
546 + "https://bcr.bazel.build/modules/aspect_rules_js/1.42.3/patches/module_dot_bazel_version.patch": "sha256-144pWXwhy9D+Co6Marc65gjwEJOLKh5z6He1tbgqGiA="
547 },
548 "remote_patch_strip": 1
549 }
550 }
551 },
509 - "buildozer@6.4.0.2": {
510 - "name": "buildozer",
511 - "version": "6.4.0.2",
512 - "key": "buildozer@6.4.0.2",
513 - "repoName": "buildozer",
552 + "aspect_rules_swc@1.2.2": {
553 + "name": "aspect_rules_swc",
554 + "version": "1.2.2",
555 + "key": "aspect_rules_swc@1.2.2",
556 + "repoName": "aspect_rules_swc",
557 "executionPlatformsToRegister": [],
515 - "toolchainsToRegister": [],
558 + "toolchainsToRegister": [
559 + "@swc_toolchains//:all"
560 + ],
561 "extensionUsages": [
562 {
518 - "extensionBzlFile": "@buildozer//:buildozer_binary.bzl",
519 - "extensionName": "buildozer_binary",
520 - "usingModule": "buildozer@6.4.0.2",
563 + "extensionBzlFile": "@aspect_rules_swc//swc:extensions.bzl",
564 + "extensionName": "swc",
565 + "usingModule": "aspect_rules_swc@1.2.2",
566 "location": {
522 - "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel",
523 - "line": 7,
524 - "column": 33
567 + "file": "https://bcr.bazel.build/modules/aspect_rules_swc/1.2.2/MODULE.bazel",
568 + "line": 16,
569 + "column": 20
570 },
571 "imports": {
527 - "buildozer_binary": "buildozer_binary"
572 + "swc_toolchains": "swc_toolchains"
573 },
574 "devImports": [],
575 "tags": [
576 {
532 - "tagName": "buildozer",
577 + "tagName": "toolchain",
578 "attributeValues": {
534 - "sha256": {
535 - "darwin-amd64": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e",
536 - "darwin-arm64": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d",
537 - "linux-amd64": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119",
538 - "linux-arm64": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa",
539 - "windows-amd64": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b"
540 - },
541 - "version": "6.4.0"
579 + "name": "swc",
580 + "swc_version": "v1.3.75"
581 },
582 "devDependency": false,
583 "location": {
545 - "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel",
546 - "line": 8,
547 - "column": 27
584 + "file": "https://bcr.bazel.build/modules/aspect_rules_swc/1.2.2/MODULE.bazel",
585 + "line": 17,
586 + "column": 14
587 }
588 }
589 ],
@@ -553,6 +592,10 @@
592 }
593 ],
594 "deps": {
595 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
596 + "aspect_rules_js": "aspect_rules_js@1.42.3",
597 + "bazel_skylib": "bazel_skylib@1.5.0",
598 + "platforms": "platforms@0.0.8",
599 "bazel_tools": "bazel_tools@_",
600 "local_config_platform": "local_config_platform@_"
601 },
@@ -561,27 +604,32 @@
604 "ruleClassName": "http_archive",
605 "attributes": {
606 "urls": [
564 - "https://github.com/fmeum/buildozer/releases/download/v6.4.0.2/buildozer-v6.4.0.2.tar.gz"
607 + "https://github.com/aspect-build/rules_swc/releases/download/v1.2.2/rules_swc-v1.2.2.tar.gz"
608 ],
566 - "integrity": "sha256-k7tFKQMR2AygxpmZfH0yEPnQmF3efFgD9rBPkj+Yz/8=",
567 - "strip_prefix": "buildozer-6.4.0.2",
609 + "integrity": "sha256-zeCd996nc62u2JZhJDRVn4lV0t+yz9ZCnuMz8wKZ7TQ=",
610 + "strip_prefix": "rules_swc-1.2.2",
611 "remote_patches": {
569 - "https://bcr.bazel.build/modules/buildozer/6.4.0.2/patches/module_dot_bazel_version.patch": "sha256-gKANF2HMilj7bWmuXs4lbBIAAansuWC4IhWGB/CerjU="
612 + "https://bcr.bazel.build/modules/aspect_rules_swc/1.2.2/patches/module_dot_bazel_version.patch": "sha256-nMeiLF6aeceGPmyDvh5YdRJTYFsSVehSBbzS/T6Njck="
613 },
614 "remote_patch_strip": 1
615 }
616 }
617 },
575 - "platforms@0.0.7": {
576 - "name": "platforms",
577 - "version": "0.0.7",
578 - "key": "platforms@0.0.7",
579 - "repoName": "platforms",
618 + "aspect_rules_ts@2.4.1": {
619 + "name": "aspect_rules_ts",
620 + "version": "2.4.1",
621 + "key": "aspect_rules_ts@2.4.1",
622 + "repoName": "aspect_rules_ts",
623 "executionPlatformsToRegister": [],
624 "toolchainsToRegister": [],
625 "extensionUsages": [],
626 "deps": {
584 - "rules_license": "rules_license@0.0.7",
627 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
628 + "aspect_rules_js": "aspect_rules_js@1.42.3",
629 + "bazel_skylib": "bazel_skylib@1.5.0",
630 + "platforms": "platforms@0.0.8",
631 + "com_google_protobuf": "protobuf@21.7",
632 + "rules_proto": "rules_proto@6.0.0",
633 "bazel_tools": "bazel_tools@_",
634 "local_config_platform": "local_config_platform@_"
635 },
@@ -590,58 +638,50 @@
638 "ruleClassName": "http_archive",
639 "attributes": {
640 "urls": [
593 - "https://github.com/bazelbuild/platforms/releases/download/0.0.7/platforms-0.0.7.tar.gz"
641 + "https://github.com/aspect-build/rules_ts/releases/download/v2.4.1/rules_ts-v2.4.1.tar.gz"
642 ],
595 - "integrity": "sha256-OlYcmee9vpFzqmU/1Xn+hJ8djWc5V4CrR3Cx84FDHVE=",
596 - "strip_prefix": "",
597 - "remote_patches": {},
598 - "remote_patch_strip": 0
643 + "integrity": "sha256-2mYgaDqywoAU6cguio/btyTNZ/ah0nMX9CqM6xQEi5s=",
644 + "strip_prefix": "rules_ts-2.4.1",
645 + "remote_patches": {
646 + "https://bcr.bazel.build/modules/aspect_rules_ts/2.4.1/patches/module_dot_bazel_version.patch": "sha256-/0LQrHEAG5dWOF5vyBdwh1R6AsRtxRixo3/VtAyyNmo="
647 + },
648 + "remote_patch_strip": 1
649 }
650 }
651 },
602 - "protobuf@21.7": {
603 - "name": "protobuf",
604 - "version": "21.7",
605 - "key": "protobuf@21.7",
606 - "repoName": "protobuf",
652 + "aspect_rules_rollup@1.0.2": {
653 + "name": "aspect_rules_rollup",
654 + "version": "1.0.2",
655 + "key": "aspect_rules_rollup@1.0.2",
656 + "repoName": "aspect_rules_rollup",
657 "executionPlatformsToRegister": [],
658 "toolchainsToRegister": [],
659 "extensionUsages": [
660 {
611 - "extensionBzlFile": "@rules_jvm_external//:extensions.bzl",
612 - "extensionName": "maven",
613 - "usingModule": "protobuf@21.7",
661 + "extensionBzlFile": "@aspect_rules_rollup//rollup:extensions.bzl",
662 + "extensionName": "rollup",
663 + "usingModule": "aspect_rules_rollup@1.0.2",
664 "location": {
615 - "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
616 - "line": 22,
617 - "column": 22
665 + "file": "https://bcr.bazel.build/modules/aspect_rules_rollup/1.0.2/MODULE.bazel",
666 + "line": 20,
667 + "column": 23
668 },
669 "imports": {
620 - "maven": "maven"
670 + "rollup": "rollup"
671 },
672 "devImports": [],
673 "tags": [
674 {
625 - "tagName": "install",
675 + "tagName": "toolchain",
676 "attributeValues": {
627 - "name": "maven",
628 - "artifacts": [
629 - "com.google.code.findbugs:jsr305:3.0.2",
630 - "com.google.code.gson:gson:2.8.9",
631 - "com.google.errorprone:error_prone_annotations:2.3.2",
632 - "com.google.j2objc:j2objc-annotations:1.3",
633 - "com.google.guava:guava:31.1-jre",
634 - "com.google.guava:guava-testlib:31.1-jre",
635 - "com.google.truth:truth:1.1.2",
636 - "junit:junit:4.13.2",
637 - "org.mockito:mockito-core:4.3.1"
638 - ]
677 + "name": "rollup",
678 + "rollup_version": "v2.70.2"
679 },
680 "devDependency": false,
681 "location": {
642 - "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
643 - "line": 24,
644 - "column": 14
682 + "file": "https://bcr.bazel.build/modules/aspect_rules_rollup/1.0.2/MODULE.bazel",
683 + "line": 21,
684 + "column": 17
685 }
686 }
687 ],
@@ -650,17 +690,11 @@
690 }
691 ],
692 "deps": {
653 - "bazel_skylib": "bazel_skylib@1.3.0",
654 - "rules_python": "rules_python@0.22.1",
655 - "rules_cc": "rules_cc@0.0.9",
656 - "rules_proto": "rules_proto@5.3.0-21.7",
657 - "rules_java": "rules_java@7.4.0",
658 - "rules_pkg": "rules_pkg@0.7.0",
659 - "com_google_abseil": "abseil-cpp@20211102.0",
660 - "zlib": "zlib@1.3",
661 - "upb": "upb@0.0.0-20220923-a547704",
662 - "rules_jvm_external": "rules_jvm_external@4.4.2",
663 - "com_google_googletest": "googletest@1.11.0",
693 + "bazel_skylib": "bazel_skylib@1.5.0",
694 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
695 + "aspect_rules_js": "aspect_rules_js@1.42.3",
696 + "rules_nodejs": "rules_nodejs@6.1.1",
697 + "platforms": "platforms@0.0.8",
698 "bazel_tools": "bazel_tools@_",
699 "local_config_platform": "local_config_platform@_"
700 },
@@ -669,31 +703,29 @@
703 "ruleClassName": "http_archive",
704 "attributes": {
705 "urls": [
672 - "https://github.com/protocolbuffers/protobuf/releases/download/v21.7/protobuf-all-21.7.zip"
706 + "https://github.com/aspect-build/rules_rollup/releases/download/v1.0.2/rules_rollup-v1.0.2.tar.gz"
707 ],
674 - "integrity": "sha256-VJOiH17T/FAuZv7GuUScBqVRztYwAvpIkDxA36jeeko=",
675 - "strip_prefix": "protobuf-21.7",
708 + "integrity": "sha256-ZpSkLJm4tGqHiFdVl0GdMc32wWP+dzVHMOsatAB/tqo=",
709 + "strip_prefix": "rules_rollup-1.0.2",
710 "remote_patches": {
677 - "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel.patch": "sha256-q3V2+eq0v2XF0z8z+V+QF4cynD6JvHI1y3kI/+rzl5s=",
678 - "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel_for_examples.patch": "sha256-O7YP6s3lo/1opUiO0jqXYORNHdZ/2q3hjz1QGy8QdIU=",
679 - "https://bcr.bazel.build/modules/protobuf/21.7/patches/relative_repo_names.patch": "sha256-RK9RjW8T5UJNG7flIrnFiNE9vKwWB+8uWWtJqXYT0w4=",
680 - "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_missing_files.patch": "sha256-Hyne4DG2u5bXcWHNxNMirA2QFAe/2Cl8oMm1XJdkQIY="
711 + "https://bcr.bazel.build/modules/aspect_rules_rollup/1.0.2/patches/module_dot_bazel_version.patch": "sha256-n3ZMU8UfwRvc0PaXTC6kVji02etdiH+RL4JMI5dkEI4="
712 },
713 "remote_patch_strip": 1
714 }
715 }
716 },
686 - "zlib@1.3": {
687 - "name": "zlib",
688 - "version": "1.3",
689 - "key": "zlib@1.3",
690 - "repoName": "zlib",
717 + "aspect_rules_webpack@0.14.0": {
718 + "name": "aspect_rules_webpack",
719 + "version": "0.14.0",
720 + "key": "aspect_rules_webpack@0.14.0",
721 + "repoName": "aspect_rules_webpack",
722 "executionPlatformsToRegister": [],
723 "toolchainsToRegister": [],
724 "extensionUsages": [],
725 "deps": {
695 - "platforms": "platforms@0.0.7",
696 - "rules_cc": "rules_cc@0.0.9",
726 + "aspect_bazel_lib": "aspect_bazel_lib@2.7.1",
727 + "aspect_rules_js": "aspect_rules_js@1.42.3",
728 + "bazel_skylib": "bazel_skylib@1.5.0",
729 "bazel_tools": "bazel_tools@_",
730 "local_config_platform": "local_config_platform@_"
731 },
@@ -702,50 +734,91 @@
734 "ruleClassName": "http_archive",
735 "attributes": {
736 "urls": [
705 - "https://github.com/madler/zlib/releases/download/v1.3/zlib-1.3.tar.gz"
737 + "https://github.com/aspect-build/rules_webpack/releases/download/v0.14.0/rules_webpack-v0.14.0.tar.gz"
738 ],
707 - "integrity": "sha256-/wukwpIBPbwnUws6geH5qBPNOd4Byl4Pi/NVcC76WT4=",
708 - "strip_prefix": "zlib-1.3",
739 + "integrity": "sha256-/3dGzVx+jvMtj7zMcg43xeyQVPvnBfNXYBPbqh+1rUA=",
740 + "strip_prefix": "rules_webpack-0.14.0",
741 "remote_patches": {
710 - "https://bcr.bazel.build/modules/zlib/1.3/patches/add_build_file.patch": "sha256-Ei+FYaaOo7A3jTKunMEodTI0Uw5NXQyZEcboMC8JskY=",
711 - "https://bcr.bazel.build/modules/zlib/1.3/patches/module_dot_bazel.patch": "sha256-fPWLM+2xaF/kuy+kZc1YTfW6hNjrkG400Ho7gckuyJk="
742 + "https://bcr.bazel.build/modules/aspect_rules_webpack/0.14.0/patches/module_dot_bazel_version.patch": "sha256-3ZBLQzSA3ZmUipzzeUCDppkqffYhgoeB0hVbBmQl7c0="
743 },
713 - "remote_patch_strip": 0
744 + "remote_patch_strip": 1
745 }
746 }
747 },
717 - "apple_support@1.5.0": {
718 - "name": "apple_support",
748 + "bazel_skylib@1.5.0": {
749 + "name": "bazel_skylib",
750 "version": "1.5.0",
720 - "key": "apple_support@1.5.0",
721 - "repoName": "build_bazel_apple_support",
751 + "key": "bazel_skylib@1.5.0",
752 + "repoName": "bazel_skylib",
753 "executionPlatformsToRegister": [],
754 "toolchainsToRegister": [
724 - "@local_config_apple_cc_toolchains//:all"
755 + "//toolchains/unittest:cmd_toolchain",
756 + "//toolchains/unittest:bash_toolchain"
757 + ],
758 + "extensionUsages": [],
759 + "deps": {
760 + "platforms": "platforms@0.0.8",
761 + "bazel_tools": "bazel_tools@_",
762 + "local_config_platform": "local_config_platform@_"
763 + },
764 + "repoSpec": {
765 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
766 + "ruleClassName": "http_archive",
767 + "attributes": {
768 + "urls": [
769 + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"
770 + ],
771 + "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=",
772 + "strip_prefix": "",
773 + "remote_patches": {},
774 + "remote_patch_strip": 0
775 + }
776 + }
777 + },
778 + "rules_nodejs@6.1.1": {
779 + "name": "rules_nodejs",
780 + "version": "6.1.1",
781 + "key": "rules_nodejs@6.1.1",
782 + "repoName": "rules_nodejs",
783 + "executionPlatformsToRegister": [],
784 + "toolchainsToRegister": [
785 + "@nodejs_toolchains//:all"
786 ],
787 "extensionUsages": [
788 {
728 - "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl",
729 - "extensionName": "apple_cc_configure_extension",
730 - "usingModule": "apple_support@1.5.0",
789 + "extensionBzlFile": "@rules_nodejs//nodejs:extensions.bzl",
790 + "extensionName": "node",
791 + "usingModule": "rules_nodejs@6.1.1",
792 "location": {
732 - "file": "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel",
733 - "line": 17,
734 - "column": 35
793 + "file": "https://bcr.bazel.build/modules/rules_nodejs/6.1.1/MODULE.bazel",
794 + "line": 13,
795 + "column": 21
796 },
797 "imports": {
737 - "local_config_apple_cc": "local_config_apple_cc",
738 - "local_config_apple_cc_toolchains": "local_config_apple_cc_toolchains"
798 + "nodejs_toolchains": "nodejs_toolchains"
799 },
800 "devImports": [],
741 - "tags": [],
801 + "tags": [
802 + {
803 + "tagName": "toolchain",
804 + "attributeValues": {
805 + "name": "nodejs"
806 + },
807 + "devDependency": false,
808 + "location": {
809 + "file": "https://bcr.bazel.build/modules/rules_nodejs/6.1.1/MODULE.bazel",
810 + "line": 17,
811 + "column": 15
812 + }
813 + }
814 + ],
815 "hasDevUseExtension": false,
816 "hasNonDevUseExtension": true
817 }
818 ],
819 "deps": {
747 - "bazel_skylib": "bazel_skylib@1.3.0",
748 - "platforms": "platforms@0.0.7",
820 + "bazel_skylib": "bazel_skylib@1.5.0",
821 + "platforms": "platforms@0.0.8",
822 "bazel_tools": "bazel_tools@_",
823 "local_config_platform": "local_config_platform@_"
824 },
@@ -754,28 +827,192 @@
827 "ruleClassName": "http_archive",
828 "attributes": {
829 "urls": [
757 - "https://github.com/bazelbuild/apple_support/releases/download/1.5.0/apple_support.1.5.0.tar.gz"
830 + "https://github.com/bazelbuild/rules_nodejs/releases/download/v6.1.1/rules_nodejs-v6.1.1.tar.gz"
831 ],
759 - "integrity": "sha256-miM41vja0yRPgj8txghKA+TQ+7J8qJLclw5okNW0gYQ=",
760 - "strip_prefix": "",
761 - "remote_patches": {},
762 - "remote_patch_strip": 0
832 + "integrity": "sha256-PoNpJWrWMZeVnSJTxHOp3MV8KEHRdhkOWbkdJdT+nmc=",
833 + "strip_prefix": "rules_nodejs-6.1.1",
834 + "remote_patches": {
835 + "https://bcr.bazel.build/modules/rules_nodejs/6.1.1/patches/module_dot_bazel_version.patch": "sha256-Wm8Lv0P0Vhj2ZmwTRsKQ+3zyM+iCBJnSkTz8QPWFbJA="
836 + },
837 + "remote_patch_strip": 1
838 }
839 }
840 },
766 - "bazel_skylib@1.3.0": {
767 - "name": "bazel_skylib",
768 - "version": "1.3.0",
769 - "key": "bazel_skylib@1.3.0",
770 - "repoName": "bazel_skylib",
841 + "bazel_tools@_": {
842 + "name": "bazel_tools",
843 + "version": "",
844 + "key": "bazel_tools@_",
845 + "repoName": "bazel_tools",
846 "executionPlatformsToRegister": [],
847 "toolchainsToRegister": [
773 - "//toolchains/unittest:cmd_toolchain",
774 - "//toolchains/unittest:bash_toolchain"
848 + "@local_config_cc_toolchains//:all",
849 + "@local_config_sh//:local_sh_toolchain"
850 + ],
851 + "extensionUsages": [
852 + {
853 + "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
854 + "extensionName": "cc_configure_extension",
855 + "usingModule": "bazel_tools@_",
856 + "location": {
857 + "file": "@@bazel_tools//:MODULE.bazel",
858 + "line": 18,
859 + "column": 29
860 + },
861 + "imports": {
862 + "local_config_cc": "local_config_cc",
863 + "local_config_cc_toolchains": "local_config_cc_toolchains"
864 + },
865 + "devImports": [],
866 + "tags": [],
867 + "hasDevUseExtension": false,
868 + "hasNonDevUseExtension": true
869 + },
870 + {
871 + "extensionBzlFile": "@bazel_tools//tools/osx:xcode_configure.bzl",
872 + "extensionName": "xcode_configure_extension",
873 + "usingModule": "bazel_tools@_",
874 + "location": {
875 + "file": "@@bazel_tools//:MODULE.bazel",
876 + "line": 22,
877 + "column": 32
878 + },
879 + "imports": {
880 + "local_config_xcode": "local_config_xcode"
881 + },
882 + "devImports": [],
883 + "tags": [],
884 + "hasDevUseExtension": false,
885 + "hasNonDevUseExtension": true
886 + },
887 + {
888 + "extensionBzlFile": "@rules_java//java:extensions.bzl",
889 + "extensionName": "toolchains",
890 + "usingModule": "bazel_tools@_",
891 + "location": {
892 + "file": "@@bazel_tools//:MODULE.bazel",
893 + "line": 25,
894 + "column": 32
895 + },
896 + "imports": {
897 + "local_jdk": "local_jdk",
898 + "remote_java_tools": "remote_java_tools",
899 + "remote_java_tools_linux": "remote_java_tools_linux",
900 + "remote_java_tools_windows": "remote_java_tools_windows",
901 + "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
902 + "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64"
903 + },
904 + "devImports": [],
905 + "tags": [],
906 + "hasDevUseExtension": false,
907 + "hasNonDevUseExtension": true
908 + },
909 + {
910 + "extensionBzlFile": "@bazel_tools//tools/sh:sh_configure.bzl",
911 + "extensionName": "sh_configure_extension",
912 + "usingModule": "bazel_tools@_",
913 + "location": {
914 + "file": "@@bazel_tools//:MODULE.bazel",
915 + "line": 36,
916 + "column": 39
917 + },
918 + "imports": {
919 + "local_config_sh": "local_config_sh"
920 + },
921 + "devImports": [],
922 + "tags": [],
923 + "hasDevUseExtension": false,
924 + "hasNonDevUseExtension": true
925 + },
926 + {
927 + "extensionBzlFile": "@bazel_tools//tools/test:extensions.bzl",
928 + "extensionName": "remote_coverage_tools_extension",
929 + "usingModule": "bazel_tools@_",
930 + "location": {
931 + "file": "@@bazel_tools//:MODULE.bazel",
932 + "line": 40,
933 + "column": 48
934 + },
935 + "imports": {
936 + "remote_coverage_tools": "remote_coverage_tools"
937 + },
938 + "devImports": [],
939 + "tags": [],
940 + "hasDevUseExtension": false,
941 + "hasNonDevUseExtension": true
942 + },
943 + {
944 + "extensionBzlFile": "@bazel_tools//tools/android:android_extensions.bzl",
945 + "extensionName": "remote_android_tools_extensions",
946 + "usingModule": "bazel_tools@_",
947 + "location": {
948 + "file": "@@bazel_tools//:MODULE.bazel",
949 + "line": 43,
950 + "column": 42
951 + },
952 + "imports": {
953 + "android_gmaven_r8": "android_gmaven_r8",
954 + "android_tools": "android_tools"
955 + },
956 + "devImports": [],
957 + "tags": [],
958 + "hasDevUseExtension": false,
959 + "hasNonDevUseExtension": true
960 + },
961 + {
962 + "extensionBzlFile": "@buildozer//:buildozer_binary.bzl",
963 + "extensionName": "buildozer_binary",
964 + "usingModule": "bazel_tools@_",
965 + "location": {
966 + "file": "@@bazel_tools//:MODULE.bazel",
967 + "line": 47,
968 + "column": 33
969 + },
970 + "imports": {
971 + "buildozer_binary": "buildozer_binary"
972 + },
973 + "devImports": [],
974 + "tags": [],
975 + "hasDevUseExtension": false,
976 + "hasNonDevUseExtension": true
977 + }
978 ],
979 + "deps": {
980 + "rules_cc": "rules_cc@0.0.9",
981 + "rules_java": "rules_java@7.4.0",
982 + "rules_license": "rules_license@0.0.7",
983 + "rules_proto": "rules_proto@6.0.0",
984 + "rules_python": "rules_python@0.27.1",
985 + "buildozer": "buildozer@6.4.0.2",
986 + "platforms": "platforms@0.0.8",
987 + "com_google_protobuf": "protobuf@21.7",
988 + "zlib": "zlib@1.3",
989 + "build_bazel_apple_support": "apple_support@1.5.0",
990 + "local_config_platform": "local_config_platform@_"
991 + }
992 + },
993 + "local_config_platform@_": {
994 + "name": "local_config_platform",
995 + "version": "",
996 + "key": "local_config_platform@_",
997 + "repoName": "local_config_platform",
998 + "executionPlatformsToRegister": [],
999 + "toolchainsToRegister": [],
1000 + "extensionUsages": [],
1001 + "deps": {
1002 + "platforms": "platforms@0.0.8",
1003 + "bazel_tools": "bazel_tools@_"
1004 + }
1005 + },
1006 + "platforms@0.0.8": {
1007 + "name": "platforms",
1008 + "version": "0.0.8",
1009 + "key": "platforms@0.0.8",
1010 + "repoName": "platforms",
1011 + "executionPlatformsToRegister": [],
1012 + "toolchainsToRegister": [],
1013 "extensionUsages": [],
1014 "deps": {
778 - "platforms": "platforms@0.0.7",
1015 + "rules_license": "rules_license@0.0.7",
1016 "bazel_tools": "bazel_tools@_",
1017 "local_config_platform": "local_config_platform@_"
1018 },
@@ -784,26 +1021,26 @@
1021 "ruleClassName": "http_archive",
1022 "attributes": {
1023 "urls": [
787 - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz"
1024 + "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz"
1025 ],
789 - "integrity": "sha256-dNVE2W9KW7Yw1GXKi7z+Ix41lOWq5X4e2/F6brPKJQY=",
1026 + "integrity": "sha256-gVBAZgU4ns7LbaB8vLUJ1WN6OrmiS8abEQFTE2fYnXQ=",
1027 "strip_prefix": "",
1028 "remote_patches": {},
1029 "remote_patch_strip": 0
1030 }
1031 }
1032 },
796 - "rules_pkg@0.7.0": {
797 - "name": "rules_pkg",
798 - "version": "0.7.0",
799 - "key": "rules_pkg@0.7.0",
800 - "repoName": "rules_pkg",
1033 + "stardoc@0.5.4": {
1034 + "name": "stardoc",
1035 + "version": "0.5.4",
1036 + "key": "stardoc@0.5.4",
1037 + "repoName": "stardoc",
1038 "executionPlatformsToRegister": [],
1039 "toolchainsToRegister": [],
1040 "extensionUsages": [],
1041 "deps": {
805 - "rules_python": "rules_python@0.22.1",
806 - "bazel_skylib": "bazel_skylib@1.3.0",
1042 + "bazel_skylib": "bazel_skylib@1.5.0",
1043 + "rules_java": "rules_java@7.4.0",
1044 "rules_license": "rules_license@0.0.7",
1045 "bazel_tools": "bazel_tools@_",
1046 "local_config_platform": "local_config_platform@_"
@@ -813,28 +1050,26 @@
1050 "ruleClassName": "http_archive",
1051 "attributes": {
1052 "urls": [
816 - "https://github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz"
1053 + "https://github.com/bazelbuild/stardoc/releases/download/0.5.4/stardoc-0.5.4.tar.gz"
1054 ],
818 - "integrity": "sha256-iimOgydi7aGDBZfWT+fbWBeKqEzVkm121bdE1lWJQcI=",
1055 + "integrity": "sha256-7FcTnkZvquVj8vw5YJ2klIpHm7UbbWeu3X2bG4BZxDM=",
1056 "strip_prefix": "",
820 - "remote_patches": {
821 - "https://bcr.bazel.build/modules/rules_pkg/0.7.0/patches/module_dot_bazel.patch": "sha256-4OaEPZwYF6iC71ZTDg6MJ7LLqX7ZA0/kK4mT+4xKqiE="
822 - },
1057 + "remote_patches": {},
1058 "remote_patch_strip": 0
1059 }
1060 }
1061 },
827 - "abseil-cpp@20211102.0": {
828 - "name": "abseil-cpp",
829 - "version": "20211102.0",
830 - "key": "abseil-cpp@20211102.0",
831 - "repoName": "abseil-cpp",
1062 + "rules_multirun@0.9.0": {
1063 + "name": "rules_multirun",
1064 + "version": "0.9.0",
1065 + "key": "rules_multirun@0.9.0",
1066 + "repoName": "rules_multirun",
1067 "executionPlatformsToRegister": [],
1068 "toolchainsToRegister": [],
1069 "extensionUsages": [],
1070 "deps": {
836 - "rules_cc": "rules_cc@0.0.9",
837 - "platforms": "platforms@0.0.7",
1071 + "bazel_skylib": "bazel_skylib@1.5.0",
1072 + "rules_python": "rules_python@0.27.1",
1073 "bazel_tools": "bazel_tools@_",
1074 "local_config_platform": "local_config_platform@_"
1075 },
@@ -843,31 +1078,78 @@
1078 "ruleClassName": "http_archive",
1079 "attributes": {
1080 "urls": [
846 - "https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz"
1081 + "https://github.com/keith/rules_multirun/releases/download/0.9.0/rules_multirun.0.9.0.tar.gz"
1082 ],
848 - "integrity": "sha256-3PcbnLqNwMqZQMSzFqDHlr6Pq0KwcLtrfKtitI8OZsQ=",
849 - "strip_prefix": "abseil-cpp-20211102.0",
1083 + "integrity": "sha256-DhJFZ/qFKHh07/M6eRw7vcxTQzKaVvqoKO9iQ4DUYHw=",
1084 + "strip_prefix": "",
1085 "remote_patches": {
851 - "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/patches/module_dot_bazel.patch": "sha256-4izqopgGCey4jVZzl/w3M2GVPNohjh2B5TmbThZNvPY="
1086 + "https://bcr.bazel.build/modules/rules_multirun/0.9.0/patches/module_dot_bazel_version.patch": "sha256-TXZTom3++VxDkbxlgEc85OI7tV6p0Lcr246yGlzsrPQ="
1087 },
853 - "remote_patch_strip": 0
1088 + "remote_patch_strip": 1
1089 }
1090 }
1091 },
857 - "upb@0.0.0-20220923-a547704": {
858 - "name": "upb",
859 - "version": "0.0.0-20220923-a547704",
860 - "key": "upb@0.0.0-20220923-a547704",
861 - "repoName": "upb",
1092 + "rules_multitool@0.4.0": {
1093 + "name": "rules_multitool",
1094 + "version": "0.4.0",
1095 + "key": "rules_multitool@0.4.0",
1096 + "repoName": "rules_multitool",
1097 "executionPlatformsToRegister": [],
863 - "toolchainsToRegister": [],
1098 + "toolchainsToRegister": [
1099 + "@multitool//toolchains:all"
1100 + ],
1101 + "extensionUsages": [
1102 + {
1103 + "extensionBzlFile": "@rules_multitool//multitool:extension.bzl",
1104 + "extensionName": "multitool",
1105 + "usingModule": "rules_multitool@0.4.0",
1106 + "location": {
1107 + "file": "https://bcr.bazel.build/modules/rules_multitool/0.4.0/MODULE.bazel",
1108 + "line": 14,
1109 + "column": 26
1110 + },
1111 + "imports": {
1112 + "multitool": "multitool"
1113 + },
1114 + "devImports": [],
1115 + "tags": [],
1116 + "hasDevUseExtension": false,
1117 + "hasNonDevUseExtension": true
1118 + }
1119 + ],
1120 + "deps": {
1121 + "bazel_skylib": "bazel_skylib@1.5.0",
1122 + "buildifier_prebuilt": "buildifier_prebuilt@6.1.2",
1123 + "platforms": "platforms@0.0.8",
1124 + "bazel_tools": "bazel_tools@_",
1125 + "local_config_platform": "local_config_platform@_"
1126 + },
1127 + "repoSpec": {
1128 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1129 + "ruleClassName": "http_archive",
1130 + "attributes": {
1131 + "urls": [
1132 + "https://github.com/theoremlp/rules_multitool/releases/download/v0.4.0/rules_multitool-0.4.0.tar.gz"
1133 + ],
1134 + "integrity": "sha256-eTEF6ku4nPnYJBHL7kC2h0CF9TAxRgCIdTniFOSXCjo=",
1135 + "strip_prefix": "rules_multitool-0.4.0",
1136 + "remote_patches": {},
1137 + "remote_patch_strip": 0
1138 + }
1139 + }
1140 + },
1141 + "rules_proto@6.0.0": {
1142 + "name": "rules_proto",
1143 + "version": "6.0.0",
1144 + "key": "rules_proto@6.0.0",
1145 + "repoName": "rules_proto",
1146 + "executionPlatformsToRegister": [],
1147 + "toolchainsToRegister": [],
1148 "extensionUsages": [],
1149 "deps": {
866 - "bazel_skylib": "bazel_skylib@1.3.0",
867 - "rules_proto": "rules_proto@5.3.0-21.7",
868 - "com_google_protobuf": "protobuf@21.7",
869 - "com_google_absl": "abseil-cpp@20211102.0",
870 - "platforms": "platforms@0.0.7",
1150 + "rules_license": "rules_license@0.0.7",
1151 + "bazel_skylib": "bazel_skylib@1.5.0",
1152 + "bazel_features": "bazel_features@1.9.0",
1153 "bazel_tools": "bazel_tools@_",
1154 "local_config_platform": "local_config_platform@_"
1155 },
@@ -876,74 +1158,104 @@
1158 "ruleClassName": "http_archive",
1159 "attributes": {
1160 "urls": [
879 - "https://github.com/protocolbuffers/upb/archive/a5477045acaa34586420942098f5fecd3570f577.tar.gz"
1161 + "https://github.com/bazelbuild/rules_proto/releases/download/6.0.0/rules_proto-6.0.0.tar.gz"
1162 ],
881 - "integrity": "sha256-z39x6v+QskwaKLSWRan/A6mmwecTQpHOcJActj5zZLU=",
882 - "strip_prefix": "upb-a5477045acaa34586420942098f5fecd3570f577",
1163 + "integrity": "sha256-MD6G5yKlIPbzJqULQc/Ba5j+bRlVzkZkKlt6Z8EcD10=",
1164 + "strip_prefix": "rules_proto-6.0.0",
1165 "remote_patches": {
884 - "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/patches/module_dot_bazel.patch": "sha256-wH4mNS6ZYy+8uC0HoAft/c7SDsq2Kxf+J8dUakXhaB0="
1166 + "https://bcr.bazel.build/modules/rules_proto/6.0.0/patches/module_dot_bazel_version.patch": "sha256-fjQjxMdkMeumhvx9JdFSYeHH+Ex4TaTXNFMi554NF8E="
1167 },
886 - "remote_patch_strip": 0
1168 + "remote_patch_strip": 1
1169 }
1170 }
1171 },
890 - "rules_jvm_external@4.4.2": {
891 - "name": "rules_jvm_external",
892 - "version": "4.4.2",
893 - "key": "rules_jvm_external@4.4.2",
894 - "repoName": "rules_jvm_external",
1172 + "rules_buf@0.1.1": {
1173 + "name": "rules_buf",
1174 + "version": "0.1.1",
1175 + "key": "rules_buf@0.1.1",
1176 + "repoName": "rules_buf",
1177 "executionPlatformsToRegister": [],
896 - "toolchainsToRegister": [],
1178 + "toolchainsToRegister": [
1179 + "@rules_buf_toolchains//:all"
1180 + ],
1181 "extensionUsages": [
1182 {
899 - "extensionBzlFile": "@rules_jvm_external//:non-module-deps.bzl",
900 - "extensionName": "non_module_deps",
901 - "usingModule": "rules_jvm_external@4.4.2",
1183 + "extensionBzlFile": "@rules_buf//buf:extensions.bzl",
1184 + "extensionName": "ext",
1185 + "usingModule": "rules_buf@0.1.1",
1186 "location": {
903 - "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
904 - "line": 9,
905 - "column": 32
1187 + "file": "https://bcr.bazel.build/modules/rules_buf/0.1.1/MODULE.bazel",
1188 + "line": 14,
1189 + "column": 20
1190 },
1191 "imports": {
908 - "io_bazel_rules_kotlin": "io_bazel_rules_kotlin"
1192 + "rules_buf_toolchains": "rules_buf_toolchains"
1193 },
1194 "devImports": [],
1195 "tags": [],
1196 "hasDevUseExtension": false,
1197 "hasNonDevUseExtension": true
914 - },
1198 + }
1199 + ],
1200 + "deps": {
1201 + "platforms": "platforms@0.0.8",
1202 + "com_google_protobuf": "protobuf@21.7",
1203 + "rules_proto": "rules_proto@6.0.0",
1204 + "bazel_tools": "bazel_tools@_",
1205 + "local_config_platform": "local_config_platform@_"
1206 + },
1207 + "repoSpec": {
1208 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1209 + "ruleClassName": "http_archive",
1210 + "attributes": {
1211 + "urls": [
1212 + "https://github.com/bufbuild/rules_buf/archive/abbbfce7c3fccf1d4b87afa28140d9ce53f80057.zip"
1213 + ],
1214 + "integrity": "sha256-/cvkfvtor1wk3+dSdJqwsqDBrAIV49KM9unuKODCrvs=",
1215 + "strip_prefix": "rules_buf-abbbfce7c3fccf1d4b87afa28140d9ce53f80057",
1216 + "remote_patches": {
1217 + "https://bcr.bazel.build/modules/rules_buf/0.1.1/patches/bzlmod.patch": "sha256-D5PYozjx10XcIqo0mMyoGIqO3PJHJtxLQ1vo3zesDS0="
1218 + },
1219 + "remote_patch_strip": 1
1220 + }
1221 + }
1222 + },
1223 + "toolchains_protoc@0.2.1": {
1224 + "name": "toolchains_protoc",
1225 + "version": "0.2.1",
1226 + "key": "toolchains_protoc@0.2.1",
1227 + "repoName": "toolchains_protoc",
1228 + "executionPlatformsToRegister": [],
1229 + "toolchainsToRegister": [
1230 + "@toolchains_protoc_hub//:all"
1231 + ],
1232 + "extensionUsages": [
1233 {
916 - "extensionBzlFile": "@rules_jvm_external//:extensions.bzl",
917 - "extensionName": "maven",
918 - "usingModule": "rules_jvm_external@4.4.2",
1234 + "extensionBzlFile": "@toolchains_protoc//protoc:extensions.bzl",
1235 + "extensionName": "protoc",
1236 + "usingModule": "toolchains_protoc@0.2.1",
1237 "location": {
920 - "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
921 - "line": 16,
922 - "column": 22
1238 + "file": "https://bcr.bazel.build/modules/toolchains_protoc/0.2.1/MODULE.bazel",
1239 + "line": 13,
1240 + "column": 23
1241 },
1242 "imports": {
925 - "rules_jvm_external_deps": "rules_jvm_external_deps"
1243 + "com_google_protobuf": "com_google_protobuf",
1244 + "toolchains_protoc_hub": "toolchains_protoc_hub"
1245 },
1246 "devImports": [],
1247 "tags": [
1248 {
930 - "tagName": "install",
1249 + "tagName": "toolchain",
1250 "attributeValues": {
932 - "name": "rules_jvm_external_deps",
933 - "artifacts": [
934 - "com.google.cloud:google-cloud-core:1.93.10",
935 - "com.google.cloud:google-cloud-storage:1.113.4",
936 - "com.google.code.gson:gson:2.9.0",
937 - "org.apache.maven:maven-artifact:3.8.6",
938 - "software.amazon.awssdk:s3:2.17.183"
939 - ],
940 - "lock_file": "@rules_jvm_external//:rules_jvm_external_deps_install.json"
1251 + "google_protobuf": "com_google_protobuf",
1252 + "version": "v25.3"
1253 },
1254 "devDependency": false,
1255 "location": {
944 - "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
945 - "line": 18,
946 - "column": 14
1256 + "file": "https://bcr.bazel.build/modules/toolchains_protoc/0.2.1/MODULE.bazel",
1257 + "line": 14,
1258 + "column": 17
1259 }
1260 }
1261 ],
@@ -952,8 +1264,9 @@
1264 }
1265 ],
1266 "deps": {
955 - "bazel_skylib": "bazel_skylib@1.3.0",
956 - "io_bazel_stardoc": "stardoc@0.5.1",
1267 + "bazel_skylib": "bazel_skylib@1.5.0",
1268 + "rules_proto": "rules_proto@6.0.0",
1269 + "platforms": "platforms@0.0.8",
1270 "bazel_tools": "bazel_tools@_",
1271 "local_config_platform": "local_config_platform@_"
1272 },
@@ -962,27 +1275,133 @@
1275 "ruleClassName": "http_archive",
1276 "attributes": {
1277 "urls": [
965 - "https://github.com/bazelbuild/rules_jvm_external/archive/refs/tags/4.4.2.zip"
1278 + "https://github.com/alexeagle/toolchains_protoc/releases/download/v0.2.1/toolchains_protoc-v0.2.1.tar.gz"
1279 ],
967 - "integrity": "sha256-c1YC9QgT6y6pPKP15DsZWb2AshO4NqB6YqKddXZwt3s=",
968 - "strip_prefix": "rules_jvm_external-4.4.2",
969 - "remote_patches": {},
970 - "remote_patch_strip": 0
1280 + "integrity": "sha256-sxLm3mSF4B91PLh/oJtBk/F2JZMUF5DdCpCr9eUgsdc=",
1281 + "strip_prefix": "toolchains_protoc-0.2.1",
1282 + "remote_patches": {
1283 + "https://bcr.bazel.build/modules/toolchains_protoc/0.2.1/patches/module_dot_bazel_version.patch": "sha256-e6awp9mKvoRfg3Zq+xppjZTfJLRsQdVrDkNUfd7ft9Q="
1284 + },
1285 + "remote_patch_strip": 1
1286 }
1287 }
1288 },
974 - "googletest@1.11.0": {
975 - "name": "googletest",
976 - "version": "1.11.0",
977 - "key": "googletest@1.11.0",
978 - "repoName": "googletest",
1289 + "rules_go@0.39.1": {
1290 + "name": "rules_go",
1291 + "version": "0.39.1",
1292 + "key": "rules_go@0.39.1",
1293 + "repoName": "io_bazel_rules_go",
1294 "executionPlatformsToRegister": [],
980 - "toolchainsToRegister": [],
981 - "extensionUsages": [],
1295 + "toolchainsToRegister": [
1296 + "@go_toolchains//:all"
1297 + ],
1298 + "extensionUsages": [
1299 + {
1300 + "extensionBzlFile": "@io_bazel_rules_go//go/private:extensions.bzl",
1301 + "extensionName": "non_module_dependencies",
1302 + "usingModule": "rules_go@0.39.1",
1303 + "location": {
1304 + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel",
1305 + "line": 13,
1306 + "column": 40
1307 + },
1308 + "imports": {
1309 + "go_googleapis": "go_googleapis",
1310 + "io_bazel_rules_nogo": "io_bazel_rules_nogo"
1311 + },
1312 + "devImports": [],
1313 + "tags": [],
1314 + "hasDevUseExtension": false,
1315 + "hasNonDevUseExtension": true
1316 + },
1317 + {
1318 + "extensionBzlFile": "@io_bazel_rules_go//go:extensions.bzl",
1319 + "extensionName": "go_sdk",
1320 + "usingModule": "rules_go@0.39.1",
1321 + "location": {
1322 + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel",
1323 + "line": 20,
1324 + "column": 23
1325 + },
1326 + "imports": {
1327 + "go_toolchains": "go_toolchains"
1328 + },
1329 + "devImports": [],
1330 + "tags": [
1331 + {
1332 + "tagName": "download",
1333 + "attributeValues": {
1334 + "name": "go_default_sdk",
1335 + "version": "1.19.8"
1336 + },
1337 + "devDependency": false,
1338 + "location": {
1339 + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel",
1340 + "line": 21,
1341 + "column": 16
1342 + }
1343 + }
1344 + ],
1345 + "hasDevUseExtension": false,
1346 + "hasNonDevUseExtension": true
1347 + },
1348 + {
1349 + "extensionBzlFile": "@gazelle//:extensions.bzl",
1350 + "extensionName": "go_deps",
1351 + "usingModule": "rules_go@0.39.1",
1352 + "location": {
1353 + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel",
1354 + "line": 31,
1355 + "column": 24
1356 + },
1357 + "imports": {
1358 + "com_github_gogo_protobuf": "com_github_gogo_protobuf",
1359 + "com_github_golang_mock": "com_github_golang_mock",
1360 + "com_github_golang_protobuf": "com_github_golang_protobuf",
1361 + "org_golang_google_genproto": "org_golang_google_genproto",
1362 + "org_golang_google_grpc": "org_golang_google_grpc",
1363 + "org_golang_google_protobuf": "org_golang_google_protobuf",
1364 + "org_golang_x_net": "org_golang_x_net"
1365 + },
1366 + "devImports": [],
1367 + "tags": [
1368 + {
1369 + "tagName": "from_file",
1370 + "attributeValues": {
1371 + "go_mod": "//:go.mod"
1372 + },
1373 + "devDependency": false,
1374 + "location": {
1375 + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel",
1376 + "line": 32,
1377 + "column": 18
1378 + }
1379 + },
1380 + {
1381 + "tagName": "module",
1382 + "attributeValues": {
1383 + "path": "github.com/gogo/protobuf",
1384 + "sum": "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=",
1385 + "version": "v1.3.2"
1386 + },
1387 + "devDependency": false,
1388 + "location": {
1389 + "file": "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel",
1390 + "line": 33,
1391 + "column": 15
1392 + }
1393 + }
1394 + ],
1395 + "hasDevUseExtension": false,
1396 + "hasNonDevUseExtension": true
1397 + }
1398 + ],
1399 "deps": {
983 - "com_google_absl": "abseil-cpp@20211102.0",
984 - "platforms": "platforms@0.0.7",
985 - "rules_cc": "rules_cc@0.0.9",
1400 + "bazel_skylib": "bazel_skylib@1.5.0",
1401 + "platforms": "platforms@0.0.8",
1402 + "rules_proto": "rules_proto@6.0.0",
1403 + "com_google_protobuf": "protobuf@21.7",
1404 + "gazelle": "gazelle@0.30.0",
1405 "bazel_tools": "bazel_tools@_",
1406 "local_config_platform": "local_config_platform@_"
1407 },
@@ -991,28 +1410,44 @@
1410 "ruleClassName": "http_archive",
1411 "attributes": {
1412 "urls": [
994 - "https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz"
1413 + "https://github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip"
1414 ],
996 - "integrity": "sha256-tIcL8SH/d5W6INILzdhie44Ijy0dqymaAxwQNO3ck9U=",
997 - "strip_prefix": "googletest-release-1.11.0",
998 - "remote_patches": {
999 - "https://bcr.bazel.build/modules/googletest/1.11.0/patches/module_dot_bazel.patch": "sha256-HuahEdI/n8KCI071sN3CEziX+7qP/Ec77IWayYunLP0="
1000 - },
1415 + "integrity": "sha256-bcLaerTPXXv8fJSXdrG3xzPwXlbtxLzZAiuySdLiqZY=",
1416 + "strip_prefix": "",
1417 + "remote_patches": {},
1418 "remote_patch_strip": 0
1419 }
1420 }
1421 },
1005 - "stardoc@0.5.1": {
1006 - "name": "stardoc",
1007 - "version": "0.5.1",
1008 - "key": "stardoc@0.5.1",
1009 - "repoName": "stardoc",
1422 + "bazel_features@1.9.0": {
1423 + "name": "bazel_features",
1424 + "version": "1.9.0",
1425 + "key": "bazel_features@1.9.0",
1426 + "repoName": "bazel_features",
1427 "executionPlatformsToRegister": [],
1428 "toolchainsToRegister": [],
1012 - "extensionUsages": [],
1429 + "extensionUsages": [
1430 + {
1431 + "extensionBzlFile": "@bazel_features//private:extensions.bzl",
1432 + "extensionName": "version_extension",
1433 + "usingModule": "bazel_features@1.9.0",
1434 + "location": {
1435 + "file": "https://bcr.bazel.build/modules/bazel_features/1.9.0/MODULE.bazel",
1436 + "line": 15,
1437 + "column": 24
1438 + },
1439 + "imports": {
1440 + "bazel_features_globals": "bazel_features_globals",
1441 + "bazel_features_version": "bazel_features_version"
1442 + },
1443 + "devImports": [],
1444 + "tags": [],
1445 + "hasDevUseExtension": false,
1446 + "hasNonDevUseExtension": true
1447 + }
1448 + ],
1449 "deps": {
1014 - "bazel_skylib": "bazel_skylib@1.3.0",
1015 - "rules_java": "rules_java@7.4.0",
1450 + "bazel_skylib": "bazel_skylib@1.5.0",
1451 "bazel_tools": "bazel_tools@_",
1452 "local_config_platform": "local_config_platform@_"
1453 },
@@ -1021,17 +1456,44823 @@
1456 "ruleClassName": "http_archive",
1457 "attributes": {
1458 "urls": [
1024 - "https://github.com/bazelbuild/stardoc/releases/download/0.5.1/stardoc-0.5.1.tar.gz"
1459 + "https://github.com/bazel-contrib/bazel_features/releases/download/v1.9.0/bazel_features-v1.9.0.tar.gz"
1460 ],
1026 - "integrity": "sha256-qoFNrgrEALurLoiB+ZFcb0fElmS/CHxAmhX5BDjSwj4=",
1027 - "strip_prefix": "",
1461 + "integrity": "sha256-BvArl7a62zIn3yFBpLRiInLNzSlRUm9AqIirX0OJfxQ=",
1462 + "strip_prefix": "bazel_features-1.9.0",
1463 "remote_patches": {
1029 - "https://bcr.bazel.build/modules/stardoc/0.5.1/patches/module_dot_bazel.patch": "sha256-UAULCuTpJE7SG0YrR9XLjMfxMRmbP+za3uW9ONZ5rjI="
1464 + "https://bcr.bazel.build/modules/bazel_features/1.9.0/patches/module_dot_bazel_version.patch": "sha256-6a7sSq7XSqoAN27Q13abDNzxWEhSZH/UzxEC5A1K/gE="
1465 },
1031 - "remote_patch_strip": 0
1466 + "remote_patch_strip": 1
1467 }
1468 }
1034 - }
1035 - },
1036 - "moduleExtensions": {}
1469 + },
1470 + "protobuf@21.7": {
1471 + "name": "protobuf",
1472 + "version": "21.7",
1473 + "key": "protobuf@21.7",
1474 + "repoName": "protobuf",
1475 + "executionPlatformsToRegister": [],
1476 + "toolchainsToRegister": [],
1477 + "extensionUsages": [
1478 + {
1479 + "extensionBzlFile": "@rules_jvm_external//:extensions.bzl",
1480 + "extensionName": "maven",
1481 + "usingModule": "protobuf@21.7",
1482 + "location": {
1483 + "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
1484 + "line": 22,
1485 + "column": 22
1486 + },
1487 + "imports": {
1488 + "maven": "maven"
1489 + },
1490 + "devImports": [],
1491 + "tags": [
1492 + {
1493 + "tagName": "install",
1494 + "attributeValues": {
1495 + "name": "maven",
1496 + "artifacts": [
1497 + "com.google.code.findbugs:jsr305:3.0.2",
1498 + "com.google.code.gson:gson:2.8.9",
1499 + "com.google.errorprone:error_prone_annotations:2.3.2",
1500 + "com.google.j2objc:j2objc-annotations:1.3",
1501 + "com.google.guava:guava:31.1-jre",
1502 + "com.google.guava:guava-testlib:31.1-jre",
1503 + "com.google.truth:truth:1.1.2",
1504 + "junit:junit:4.13.2",
1505 + "org.mockito:mockito-core:4.3.1"
1506 + ]
1507 + },
1508 + "devDependency": false,
1509 + "location": {
1510 + "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
1511 + "line": 24,
1512 + "column": 14
1513 + }
1514 + }
1515 + ],
1516 + "hasDevUseExtension": false,
1517 + "hasNonDevUseExtension": true
1518 + }
1519 + ],
1520 + "deps": {
1521 + "bazel_skylib": "bazel_skylib@1.5.0",
1522 + "rules_python": "rules_python@0.27.1",
1523 + "rules_cc": "rules_cc@0.0.9",
1524 + "rules_proto": "rules_proto@6.0.0",
1525 + "rules_java": "rules_java@7.4.0",
1526 + "rules_pkg": "rules_pkg@0.7.0",
1527 + "com_google_abseil": "abseil-cpp@20211102.0",
1528 + "zlib": "zlib@1.3",
1529 + "upb": "upb@0.0.0-20220923-a547704",
1530 + "rules_jvm_external": "rules_jvm_external@4.4.2",
1531 + "com_google_googletest": "googletest@1.11.0",
1532 + "bazel_tools": "bazel_tools@_",
1533 + "local_config_platform": "local_config_platform@_"
1534 + },
1535 + "repoSpec": {
1536 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1537 + "ruleClassName": "http_archive",
1538 + "attributes": {
1539 + "urls": [
1540 + "https://github.com/protocolbuffers/protobuf/releases/download/v21.7/protobuf-all-21.7.zip"
1541 + ],
1542 + "integrity": "sha256-VJOiH17T/FAuZv7GuUScBqVRztYwAvpIkDxA36jeeko=",
1543 + "strip_prefix": "protobuf-21.7",
1544 + "remote_patches": {
1545 + "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel.patch": "sha256-q3V2+eq0v2XF0z8z+V+QF4cynD6JvHI1y3kI/+rzl5s=",
1546 + "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel_for_examples.patch": "sha256-O7YP6s3lo/1opUiO0jqXYORNHdZ/2q3hjz1QGy8QdIU=",
1547 + "https://bcr.bazel.build/modules/protobuf/21.7/patches/relative_repo_names.patch": "sha256-RK9RjW8T5UJNG7flIrnFiNE9vKwWB+8uWWtJqXYT0w4=",
1548 + "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_missing_files.patch": "sha256-Hyne4DG2u5bXcWHNxNMirA2QFAe/2Cl8oMm1XJdkQIY="
1549 + },
1550 + "remote_patch_strip": 1
1551 + }
1552 + }
1553 + },
1554 + "rules_cc@0.0.9": {
1555 + "name": "rules_cc",
1556 + "version": "0.0.9",
1557 + "key": "rules_cc@0.0.9",
1558 + "repoName": "rules_cc",
1559 + "executionPlatformsToRegister": [],
1560 + "toolchainsToRegister": [
1561 + "@local_config_cc_toolchains//:all"
1562 + ],
1563 + "extensionUsages": [
1564 + {
1565 + "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
1566 + "extensionName": "cc_configure_extension",
1567 + "usingModule": "rules_cc@0.0.9",
1568 + "location": {
1569 + "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel",
1570 + "line": 9,
1571 + "column": 29
1572 + },
1573 + "imports": {
1574 + "local_config_cc_toolchains": "local_config_cc_toolchains"
1575 + },
1576 + "devImports": [],
1577 + "tags": [],
1578 + "hasDevUseExtension": false,
1579 + "hasNonDevUseExtension": true
1580 + }
1581 + ],
1582 + "deps": {
1583 + "platforms": "platforms@0.0.8",
1584 + "bazel_tools": "bazel_tools@_",
1585 + "local_config_platform": "local_config_platform@_"
1586 + },
1587 + "repoSpec": {
1588 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1589 + "ruleClassName": "http_archive",
1590 + "attributes": {
1591 + "urls": [
1592 + "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz"
1593 + ],
1594 + "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=",
1595 + "strip_prefix": "rules_cc-0.0.9",
1596 + "remote_patches": {
1597 + "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g="
1598 + },
1599 + "remote_patch_strip": 0
1600 + }
1601 + }
1602 + },
1603 + "rules_java@7.4.0": {
1604 + "name": "rules_java",
1605 + "version": "7.4.0",
1606 + "key": "rules_java@7.4.0",
1607 + "repoName": "rules_java",
1608 + "executionPlatformsToRegister": [],
1609 + "toolchainsToRegister": [
1610 + "//toolchains:all",
1611 + "@local_jdk//:runtime_toolchain_definition",
1612 + "@local_jdk//:bootstrap_runtime_toolchain_definition",
1613 + "@remotejdk11_linux_toolchain_config_repo//:all",
1614 + "@remotejdk11_linux_aarch64_toolchain_config_repo//:all",
1615 + "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all",
1616 + "@remotejdk11_linux_s390x_toolchain_config_repo//:all",
1617 + "@remotejdk11_macos_toolchain_config_repo//:all",
1618 + "@remotejdk11_macos_aarch64_toolchain_config_repo//:all",
1619 + "@remotejdk11_win_toolchain_config_repo//:all",
1620 + "@remotejdk11_win_arm64_toolchain_config_repo//:all",
1621 + "@remotejdk17_linux_toolchain_config_repo//:all",
1622 + "@remotejdk17_linux_aarch64_toolchain_config_repo//:all",
1623 + "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all",
1624 + "@remotejdk17_linux_s390x_toolchain_config_repo//:all",
1625 + "@remotejdk17_macos_toolchain_config_repo//:all",
1626 + "@remotejdk17_macos_aarch64_toolchain_config_repo//:all",
1627 + "@remotejdk17_win_toolchain_config_repo//:all",
1628 + "@remotejdk17_win_arm64_toolchain_config_repo//:all",
1629 + "@remotejdk21_linux_toolchain_config_repo//:all",
1630 + "@remotejdk21_linux_aarch64_toolchain_config_repo//:all",
1631 + "@remotejdk21_macos_toolchain_config_repo//:all",
1632 + "@remotejdk21_macos_aarch64_toolchain_config_repo//:all",
1633 + "@remotejdk21_win_toolchain_config_repo//:all"
1634 + ],
1635 + "extensionUsages": [
1636 + {
1637 + "extensionBzlFile": "@rules_java//java:extensions.bzl",
1638 + "extensionName": "toolchains",
1639 + "usingModule": "rules_java@7.4.0",
1640 + "location": {
1641 + "file": "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel",
1642 + "line": 19,
1643 + "column": 27
1644 + },
1645 + "imports": {
1646 + "remote_java_tools": "remote_java_tools",
1647 + "remote_java_tools_linux": "remote_java_tools_linux",
1648 + "remote_java_tools_windows": "remote_java_tools_windows",
1649 + "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
1650 + "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64",
1651 + "local_jdk": "local_jdk",
1652 + "remotejdk11_linux_toolchain_config_repo": "remotejdk11_linux_toolchain_config_repo",
1653 + "remotejdk11_linux_aarch64_toolchain_config_repo": "remotejdk11_linux_aarch64_toolchain_config_repo",
1654 + "remotejdk11_linux_ppc64le_toolchain_config_repo": "remotejdk11_linux_ppc64le_toolchain_config_repo",
1655 + "remotejdk11_linux_s390x_toolchain_config_repo": "remotejdk11_linux_s390x_toolchain_config_repo",
1656 + "remotejdk11_macos_toolchain_config_repo": "remotejdk11_macos_toolchain_config_repo",
1657 + "remotejdk11_macos_aarch64_toolchain_config_repo": "remotejdk11_macos_aarch64_toolchain_config_repo",
1658 + "remotejdk11_win_toolchain_config_repo": "remotejdk11_win_toolchain_config_repo",
1659 + "remotejdk11_win_arm64_toolchain_config_repo": "remotejdk11_win_arm64_toolchain_config_repo",
1660 + "remotejdk17_linux_toolchain_config_repo": "remotejdk17_linux_toolchain_config_repo",
1661 + "remotejdk17_linux_aarch64_toolchain_config_repo": "remotejdk17_linux_aarch64_toolchain_config_repo",
1662 + "remotejdk17_linux_ppc64le_toolchain_config_repo": "remotejdk17_linux_ppc64le_toolchain_config_repo",
1663 + "remotejdk17_linux_s390x_toolchain_config_repo": "remotejdk17_linux_s390x_toolchain_config_repo",
1664 + "remotejdk17_macos_toolchain_config_repo": "remotejdk17_macos_toolchain_config_repo",
1665 + "remotejdk17_macos_aarch64_toolchain_config_repo": "remotejdk17_macos_aarch64_toolchain_config_repo",
1666 + "remotejdk17_win_toolchain_config_repo": "remotejdk17_win_toolchain_config_repo",
1667 + "remotejdk17_win_arm64_toolchain_config_repo": "remotejdk17_win_arm64_toolchain_config_repo",
1668 + "remotejdk21_linux_toolchain_config_repo": "remotejdk21_linux_toolchain_config_repo",
1669 + "remotejdk21_linux_aarch64_toolchain_config_repo": "remotejdk21_linux_aarch64_toolchain_config_repo",
1670 + "remotejdk21_macos_toolchain_config_repo": "remotejdk21_macos_toolchain_config_repo",
1671 + "remotejdk21_macos_aarch64_toolchain_config_repo": "remotejdk21_macos_aarch64_toolchain_config_repo",
1672 + "remotejdk21_win_toolchain_config_repo": "remotejdk21_win_toolchain_config_repo"
1673 + },
1674 + "devImports": [],
1675 + "tags": [],
1676 + "hasDevUseExtension": false,
1677 + "hasNonDevUseExtension": true
1678 + }
1679 + ],
1680 + "deps": {
1681 + "platforms": "platforms@0.0.8",
1682 + "rules_cc": "rules_cc@0.0.9",
1683 + "bazel_skylib": "bazel_skylib@1.5.0",
1684 + "rules_proto": "rules_proto@6.0.0",
1685 + "rules_license": "rules_license@0.0.7",
1686 + "bazel_tools": "bazel_tools@_",
1687 + "local_config_platform": "local_config_platform@_"
1688 + },
1689 + "repoSpec": {
1690 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1691 + "ruleClassName": "http_archive",
1692 + "attributes": {
1693 + "urls": [
1694 + "https://github.com/bazelbuild/rules_java/releases/download/7.4.0/rules_java-7.4.0.tar.gz"
1695 + ],
1696 + "integrity": "sha256-l27wi0nJKXQfIBeQ5Z44B8cq2B9CjIvJU82+/1/tFes=",
1697 + "strip_prefix": "",
1698 + "remote_patches": {},
1699 + "remote_patch_strip": 0
1700 + }
1701 + }
1702 + },
1703 + "rules_license@0.0.7": {
1704 + "name": "rules_license",
1705 + "version": "0.0.7",
1706 + "key": "rules_license@0.0.7",
1707 + "repoName": "rules_license",
1708 + "executionPlatformsToRegister": [],
1709 + "toolchainsToRegister": [],
1710 + "extensionUsages": [],
1711 + "deps": {
1712 + "bazel_tools": "bazel_tools@_",
1713 + "local_config_platform": "local_config_platform@_"
1714 + },
1715 + "repoSpec": {
1716 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1717 + "ruleClassName": "http_archive",
1718 + "attributes": {
1719 + "urls": [
1720 + "https://github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz"
1721 + ],
1722 + "integrity": "sha256-RTHezLkTY5ww5cdRKgVNXYdWmNrrddjPkPKEN1/nw2A=",
1723 + "strip_prefix": "",
1724 + "remote_patches": {},
1725 + "remote_patch_strip": 0
1726 + }
1727 + }
1728 + },
1729 + "rules_python@0.27.1": {
1730 + "name": "rules_python",
1731 + "version": "0.27.1",
1732 + "key": "rules_python@0.27.1",
1733 + "repoName": "rules_python",
1734 + "executionPlatformsToRegister": [],
1735 + "toolchainsToRegister": [
1736 + "@pythons_hub//:all"
1737 + ],
1738 + "extensionUsages": [
1739 + {
1740 + "extensionBzlFile": "@rules_python//python/private/bzlmod:internal_deps.bzl",
1741 + "extensionName": "internal_deps",
1742 + "usingModule": "rules_python@0.27.1",
1743 + "location": {
1744 + "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
1745 + "line": 17,
1746 + "column": 30
1747 + },
1748 + "imports": {
1749 + "rules_python_internal": "rules_python_internal",
1750 + "pypi__build": "pypi__build",
1751 + "pypi__click": "pypi__click",
1752 + "pypi__colorama": "pypi__colorama",
1753 + "pypi__importlib_metadata": "pypi__importlib_metadata",
1754 + "pypi__installer": "pypi__installer",
1755 + "pypi__more_itertools": "pypi__more_itertools",
1756 + "pypi__packaging": "pypi__packaging",
1757 + "pypi__pep517": "pypi__pep517",
1758 + "pypi__pip": "pypi__pip",
1759 + "pypi__pip_tools": "pypi__pip_tools",
1760 + "pypi__pyproject_hooks": "pypi__pyproject_hooks",
1761 + "pypi__setuptools": "pypi__setuptools",
1762 + "pypi__tomli": "pypi__tomli",
1763 + "pypi__wheel": "pypi__wheel",
1764 + "pypi__zipp": "pypi__zipp"
1765 + },
1766 + "devImports": [],
1767 + "tags": [
1768 + {
1769 + "tagName": "install",
1770 + "attributeValues": {},
1771 + "devDependency": false,
1772 + "location": {
1773 + "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
1774 + "line": 18,
1775 + "column": 22
1776 + }
1777 + }
1778 + ],
1779 + "hasDevUseExtension": false,
1780 + "hasNonDevUseExtension": true
1781 + },
1782 + {
1783 + "extensionBzlFile": "@rules_python//python/extensions:python.bzl",
1784 + "extensionName": "python",
1785 + "usingModule": "rules_python@0.27.1",
1786 + "location": {
1787 + "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
1788 + "line": 43,
1789 + "column": 23
1790 + },
1791 + "imports": {
1792 + "pythons_hub": "pythons_hub"
1793 + },
1794 + "devImports": [],
1795 + "tags": [
1796 + {
1797 + "tagName": "toolchain",
1798 + "attributeValues": {
1799 + "is_default": true,
1800 + "python_version": "3.11"
1801 + },
1802 + "devDependency": false,
1803 + "location": {
1804 + "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
1805 + "line": 49,
1806 + "column": 17
1807 + }
1808 + }
1809 + ],
1810 + "hasDevUseExtension": false,
1811 + "hasNonDevUseExtension": true
1812 + }
1813 + ],
1814 + "deps": {
1815 + "bazel_features": "bazel_features@1.9.0",
1816 + "bazel_skylib": "bazel_skylib@1.5.0",
1817 + "platforms": "platforms@0.0.8",
1818 + "rules_proto": "rules_proto@6.0.0",
1819 + "com_google_protobuf": "protobuf@21.7",
1820 + "bazel_tools": "bazel_tools@_",
1821 + "local_config_platform": "local_config_platform@_"
1822 + },
1823 + "repoSpec": {
1824 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1825 + "ruleClassName": "http_archive",
1826 + "attributes": {
1827 + "urls": [
1828 + "https://github.com/bazelbuild/rules_python/releases/download/0.27.1/rules_python-0.27.1.tar.gz"
1829 + ],
1830 + "integrity": "sha256-6FrjDeM2JaY+yn/ECpT+qEXmQYiOUvMra+6pHosbJ5M=",
1831 + "strip_prefix": "rules_python-0.27.1",
1832 + "remote_patches": {
1833 + "https://bcr.bazel.build/modules/rules_python/0.27.1/patches/module_dot_bazel_version.patch": "sha256-Ier7Gb4zhbS273tClCov24gNYdheo4FdegZwaHBrQy0="
1834 + },
1835 + "remote_patch_strip": 1
1836 + }
1837 + }
1838 + },
1839 + "buildozer@6.4.0.2": {
1840 + "name": "buildozer",
1841 + "version": "6.4.0.2",
1842 + "key": "buildozer@6.4.0.2",
1843 + "repoName": "buildozer",
1844 + "executionPlatformsToRegister": [],
1845 + "toolchainsToRegister": [],
1846 + "extensionUsages": [
1847 + {
1848 + "extensionBzlFile": "@buildozer//:buildozer_binary.bzl",
1849 + "extensionName": "buildozer_binary",
1850 + "usingModule": "buildozer@6.4.0.2",
1851 + "location": {
1852 + "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel",
1853 + "line": 7,
1854 + "column": 33
1855 + },
1856 + "imports": {
1857 + "buildozer_binary": "buildozer_binary"
1858 + },
1859 + "devImports": [],
1860 + "tags": [
1861 + {
1862 + "tagName": "buildozer",
1863 + "attributeValues": {
1864 + "sha256": {
1865 + "darwin-amd64": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e",
1866 + "darwin-arm64": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d",
1867 + "linux-amd64": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119",
1868 + "linux-arm64": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa",
1869 + "windows-amd64": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b"
1870 + },
1871 + "version": "6.4.0"
1872 + },
1873 + "devDependency": false,
1874 + "location": {
1875 + "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel",
1876 + "line": 8,
1877 + "column": 27
1878 + }
1879 + }
1880 + ],
1881 + "hasDevUseExtension": false,
1882 + "hasNonDevUseExtension": true
1883 + }
1884 + ],
1885 + "deps": {
1886 + "bazel_tools": "bazel_tools@_",
1887 + "local_config_platform": "local_config_platform@_"
1888 + },
1889 + "repoSpec": {
1890 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1891 + "ruleClassName": "http_archive",
1892 + "attributes": {
1893 + "urls": [
1894 + "https://github.com/fmeum/buildozer/releases/download/v6.4.0.2/buildozer-v6.4.0.2.tar.gz"
1895 + ],
1896 + "integrity": "sha256-k7tFKQMR2AygxpmZfH0yEPnQmF3efFgD9rBPkj+Yz/8=",
1897 + "strip_prefix": "buildozer-6.4.0.2",
1898 + "remote_patches": {
1899 + "https://bcr.bazel.build/modules/buildozer/6.4.0.2/patches/module_dot_bazel_version.patch": "sha256-gKANF2HMilj7bWmuXs4lbBIAAansuWC4IhWGB/CerjU="
1900 + },
1901 + "remote_patch_strip": 1
1902 + }
1903 + }
1904 + },
1905 + "zlib@1.3": {
1906 + "name": "zlib",
1907 + "version": "1.3",
1908 + "key": "zlib@1.3",
1909 + "repoName": "zlib",
1910 + "executionPlatformsToRegister": [],
1911 + "toolchainsToRegister": [],
1912 + "extensionUsages": [],
1913 + "deps": {
1914 + "platforms": "platforms@0.0.8",
1915 + "rules_cc": "rules_cc@0.0.9",
1916 + "bazel_tools": "bazel_tools@_",
1917 + "local_config_platform": "local_config_platform@_"
1918 + },
1919 + "repoSpec": {
1920 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1921 + "ruleClassName": "http_archive",
1922 + "attributes": {
1923 + "urls": [
1924 + "https://github.com/madler/zlib/releases/download/v1.3/zlib-1.3.tar.gz"
1925 + ],
1926 + "integrity": "sha256-/wukwpIBPbwnUws6geH5qBPNOd4Byl4Pi/NVcC76WT4=",
1927 + "strip_prefix": "zlib-1.3",
1928 + "remote_patches": {
1929 + "https://bcr.bazel.build/modules/zlib/1.3/patches/add_build_file.patch": "sha256-Ei+FYaaOo7A3jTKunMEodTI0Uw5NXQyZEcboMC8JskY=",
1930 + "https://bcr.bazel.build/modules/zlib/1.3/patches/module_dot_bazel.patch": "sha256-fPWLM+2xaF/kuy+kZc1YTfW6hNjrkG400Ho7gckuyJk="
1931 + },
1932 + "remote_patch_strip": 0
1933 + }
1934 + }
1935 + },
1936 + "apple_support@1.5.0": {
1937 + "name": "apple_support",
1938 + "version": "1.5.0",
1939 + "key": "apple_support@1.5.0",
1940 + "repoName": "build_bazel_apple_support",
1941 + "executionPlatformsToRegister": [],
1942 + "toolchainsToRegister": [
1943 + "@local_config_apple_cc_toolchains//:all"
1944 + ],
1945 + "extensionUsages": [
1946 + {
1947 + "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl",
1948 + "extensionName": "apple_cc_configure_extension",
1949 + "usingModule": "apple_support@1.5.0",
1950 + "location": {
1951 + "file": "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel",
1952 + "line": 17,
1953 + "column": 35
1954 + },
1955 + "imports": {
1956 + "local_config_apple_cc": "local_config_apple_cc",
1957 + "local_config_apple_cc_toolchains": "local_config_apple_cc_toolchains"
1958 + },
1959 + "devImports": [],
1960 + "tags": [],
1961 + "hasDevUseExtension": false,
1962 + "hasNonDevUseExtension": true
1963 + }
1964 + ],
1965 + "deps": {
1966 + "bazel_skylib": "bazel_skylib@1.5.0",
1967 + "platforms": "platforms@0.0.8",
1968 + "bazel_tools": "bazel_tools@_",
1969 + "local_config_platform": "local_config_platform@_"
1970 + },
1971 + "repoSpec": {
1972 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
1973 + "ruleClassName": "http_archive",
1974 + "attributes": {
1975 + "urls": [
1976 + "https://github.com/bazelbuild/apple_support/releases/download/1.5.0/apple_support.1.5.0.tar.gz"
1977 + ],
1978 + "integrity": "sha256-miM41vja0yRPgj8txghKA+TQ+7J8qJLclw5okNW0gYQ=",
1979 + "strip_prefix": "",
1980 + "remote_patches": {},
1981 + "remote_patch_strip": 0
1982 + }
1983 + }
1984 + },
1985 + "buildifier_prebuilt@6.1.2": {
1986 + "name": "buildifier_prebuilt",
1987 + "version": "6.1.2",
1988 + "key": "buildifier_prebuilt@6.1.2",
1989 + "repoName": "buildifier_prebuilt",
1990 + "executionPlatformsToRegister": [],
1991 + "toolchainsToRegister": [
1992 + "@buildifier_prebuilt_toolchains//:all"
1993 + ],
1994 + "extensionUsages": [
1995 + {
1996 + "extensionBzlFile": "@buildifier_prebuilt//:defs.bzl",
1997 + "extensionName": "buildifier_prebuilt_deps_extension",
1998 + "usingModule": "buildifier_prebuilt@6.1.2",
1999 + "location": {
2000 + "file": "https://bcr.bazel.build/modules/buildifier_prebuilt/6.1.2/MODULE.bazel",
2001 + "line": 10,
2002 + "column": 32
2003 + },
2004 + "imports": {
2005 + "buildifier_prebuilt_toolchains": "buildifier_prebuilt_toolchains"
2006 + },
2007 + "devImports": [],
2008 + "tags": [],
2009 + "hasDevUseExtension": false,
2010 + "hasNonDevUseExtension": true
2011 + }
2012 + ],
2013 + "deps": {
2014 + "bazel_skylib": "bazel_skylib@1.5.0",
2015 + "platforms": "platforms@0.0.8",
2016 + "bazel_tools": "bazel_tools@_",
2017 + "local_config_platform": "local_config_platform@_"
2018 + },
2019 + "repoSpec": {
2020 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2021 + "ruleClassName": "http_archive",
2022 + "attributes": {
2023 + "urls": [
2024 + "https://github.com/keith/buildifier-prebuilt/archive/refs/tags/6.1.2.tar.gz"
2025 + ],
2026 + "integrity": "sha256-KaUOpUWBDcB3xAjVIOuD6d4+7P5jleicsHFJ2QP8MeU=",
2027 + "strip_prefix": "buildifier-prebuilt-6.1.2",
2028 + "remote_patches": {
2029 + "https://bcr.bazel.build/modules/buildifier_prebuilt/6.1.2/patches/module_dot_bazel_version.patch": "sha256-U79F1nzwKoLhPknGAjb0A/xNnnB62K5Hj71pgXYfNO0="
2030 + },
2031 + "remote_patch_strip": 0
2032 + }
2033 + }
2034 + },
2035 + "gazelle@0.30.0": {
2036 + "name": "gazelle",
2037 + "version": "0.30.0",
2038 + "key": "gazelle@0.30.0",
2039 + "repoName": "bazel_gazelle",
2040 + "executionPlatformsToRegister": [],
2041 + "toolchainsToRegister": [],
2042 + "extensionUsages": [
2043 + {
2044 + "extensionBzlFile": "@io_bazel_rules_go//go:extensions.bzl",
2045 + "extensionName": "go_sdk",
2046 + "usingModule": "gazelle@0.30.0",
2047 + "location": {
2048 + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel",
2049 + "line": 12,
2050 + "column": 23
2051 + },
2052 + "imports": {
2053 + "go_default_sdk": "go_default_sdk"
2054 + },
2055 + "devImports": [],
2056 + "tags": [],
2057 + "hasDevUseExtension": false,
2058 + "hasNonDevUseExtension": true
2059 + },
2060 + {
2061 + "extensionBzlFile": "@bazel_gazelle//internal/bzlmod:non_module_deps.bzl",
2062 + "extensionName": "non_module_deps",
2063 + "usingModule": "gazelle@0.30.0",
2064 + "location": {
2065 + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel",
2066 + "line": 17,
2067 + "column": 32
2068 + },
2069 + "imports": {
2070 + "bazel_gazelle_go_repository_cache": "bazel_gazelle_go_repository_cache",
2071 + "bazel_gazelle_go_repository_tools": "bazel_gazelle_go_repository_tools"
2072 + },
2073 + "devImports": [],
2074 + "tags": [],
2075 + "hasDevUseExtension": false,
2076 + "hasNonDevUseExtension": true
2077 + },
2078 + {
2079 + "extensionBzlFile": "@io_bazel_rules_go//go/private:extensions.bzl",
2080 + "extensionName": "non_module_dependencies",
2081 + "usingModule": "gazelle@0.30.0",
2082 + "location": {
2083 + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel",
2084 + "line": 24,
2085 + "column": 41
2086 + },
2087 + "imports": {
2088 + "go_googleapis": "go_googleapis"
2089 + },
2090 + "devImports": [],
2091 + "tags": [],
2092 + "hasDevUseExtension": false,
2093 + "hasNonDevUseExtension": true
2094 + },
2095 + {
2096 + "extensionBzlFile": "@bazel_gazelle//:extensions.bzl",
2097 + "extensionName": "go_deps",
2098 + "usingModule": "gazelle@0.30.0",
2099 + "location": {
2100 + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel",
2101 + "line": 30,
2102 + "column": 24
2103 + },
2104 + "imports": {
2105 + "com_github_bazelbuild_buildtools": "com_github_bazelbuild_buildtools",
2106 + "com_github_bmatcuk_doublestar_v4": "com_github_bmatcuk_doublestar_v4",
2107 + "com_github_fsnotify_fsnotify": "com_github_fsnotify_fsnotify",
2108 + "com_github_google_go_cmp": "com_github_google_go_cmp",
2109 + "com_github_pelletier_go_toml": "com_github_pelletier_go_toml",
2110 + "com_github_pmezard_go_difflib": "com_github_pmezard_go_difflib",
2111 + "org_golang_x_mod": "org_golang_x_mod",
2112 + "org_golang_x_sync": "org_golang_x_sync",
2113 + "org_golang_x_tools": "org_golang_x_tools",
2114 + "bazel_gazelle_go_repository_config": "bazel_gazelle_go_repository_config"
2115 + },
2116 + "devImports": [],
2117 + "tags": [
2118 + {
2119 + "tagName": "from_file",
2120 + "attributeValues": {
2121 + "go_mod": "//:go.mod"
2122 + },
2123 + "devDependency": false,
2124 + "location": {
2125 + "file": "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel",
2126 + "line": 31,
2127 + "column": 18
2128 + }
2129 + }
2130 + ],
2131 + "hasDevUseExtension": false,
2132 + "hasNonDevUseExtension": true
2133 + }
2134 + ],
2135 + "deps": {
2136 + "bazel_skylib": "bazel_skylib@1.5.0",
2137 + "com_google_protobuf": "protobuf@21.7",
2138 + "io_bazel_rules_go": "rules_go@0.39.1",
2139 + "rules_proto": "rules_proto@6.0.0",
2140 + "bazel_tools": "bazel_tools@_",
2141 + "local_config_platform": "local_config_platform@_"
2142 + },
2143 + "repoSpec": {
2144 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2145 + "ruleClassName": "http_archive",
2146 + "attributes": {
2147 + "urls": [
2148 + "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.30.0/bazel-gazelle-v0.30.0.tar.gz"
2149 + ],
2150 + "integrity": "sha256-cn8+Tt2W6iDCnowsqejSr3JNjHd455I6hUssgJUrxAU=",
2151 + "strip_prefix": "",
2152 + "remote_patches": {},
2153 + "remote_patch_strip": 0
2154 + }
2155 + }
2156 + },
2157 + "rules_pkg@0.7.0": {
2158 + "name": "rules_pkg",
2159 + "version": "0.7.0",
2160 + "key": "rules_pkg@0.7.0",
2161 + "repoName": "rules_pkg",
2162 + "executionPlatformsToRegister": [],
2163 + "toolchainsToRegister": [],
2164 + "extensionUsages": [],
2165 + "deps": {
2166 + "rules_python": "rules_python@0.27.1",
2167 + "bazel_skylib": "bazel_skylib@1.5.0",
2168 + "rules_license": "rules_license@0.0.7",
2169 + "bazel_tools": "bazel_tools@_",
2170 + "local_config_platform": "local_config_platform@_"
2171 + },
2172 + "repoSpec": {
2173 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2174 + "ruleClassName": "http_archive",
2175 + "attributes": {
2176 + "urls": [
2177 + "https://github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz"
2178 + ],
2179 + "integrity": "sha256-iimOgydi7aGDBZfWT+fbWBeKqEzVkm121bdE1lWJQcI=",
2180 + "strip_prefix": "",
2181 + "remote_patches": {
2182 + "https://bcr.bazel.build/modules/rules_pkg/0.7.0/patches/module_dot_bazel.patch": "sha256-4OaEPZwYF6iC71ZTDg6MJ7LLqX7ZA0/kK4mT+4xKqiE="
2183 + },
2184 + "remote_patch_strip": 0
2185 + }
2186 + }
2187 + },
2188 + "abseil-cpp@20211102.0": {
2189 + "name": "abseil-cpp",
2190 + "version": "20211102.0",
2191 + "key": "abseil-cpp@20211102.0",
2192 + "repoName": "abseil-cpp",
2193 + "executionPlatformsToRegister": [],
2194 + "toolchainsToRegister": [],
2195 + "extensionUsages": [],
2196 + "deps": {
2197 + "rules_cc": "rules_cc@0.0.9",
2198 + "platforms": "platforms@0.0.8",
2199 + "bazel_tools": "bazel_tools@_",
2200 + "local_config_platform": "local_config_platform@_"
2201 + },
2202 + "repoSpec": {
2203 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2204 + "ruleClassName": "http_archive",
2205 + "attributes": {
2206 + "urls": [
2207 + "https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz"
2208 + ],
2209 + "integrity": "sha256-3PcbnLqNwMqZQMSzFqDHlr6Pq0KwcLtrfKtitI8OZsQ=",
2210 + "strip_prefix": "abseil-cpp-20211102.0",
2211 + "remote_patches": {
2212 + "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/patches/module_dot_bazel.patch": "sha256-4izqopgGCey4jVZzl/w3M2GVPNohjh2B5TmbThZNvPY="
2213 + },
2214 + "remote_patch_strip": 0
2215 + }
2216 + }
2217 + },
2218 + "upb@0.0.0-20220923-a547704": {
2219 + "name": "upb",
2220 + "version": "0.0.0-20220923-a547704",
2221 + "key": "upb@0.0.0-20220923-a547704",
2222 + "repoName": "upb",
2223 + "executionPlatformsToRegister": [],
2224 + "toolchainsToRegister": [],
2225 + "extensionUsages": [],
2226 + "deps": {
2227 + "bazel_skylib": "bazel_skylib@1.5.0",
2228 + "rules_proto": "rules_proto@6.0.0",
2229 + "com_google_protobuf": "protobuf@21.7",
2230 + "com_google_absl": "abseil-cpp@20211102.0",
2231 + "platforms": "platforms@0.0.8",
2232 + "bazel_tools": "bazel_tools@_",
2233 + "local_config_platform": "local_config_platform@_"
2234 + },
2235 + "repoSpec": {
2236 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2237 + "ruleClassName": "http_archive",
2238 + "attributes": {
2239 + "urls": [
2240 + "https://github.com/protocolbuffers/upb/archive/a5477045acaa34586420942098f5fecd3570f577.tar.gz"
2241 + ],
2242 + "integrity": "sha256-z39x6v+QskwaKLSWRan/A6mmwecTQpHOcJActj5zZLU=",
2243 + "strip_prefix": "upb-a5477045acaa34586420942098f5fecd3570f577",
2244 + "remote_patches": {
2245 + "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/patches/module_dot_bazel.patch": "sha256-wH4mNS6ZYy+8uC0HoAft/c7SDsq2Kxf+J8dUakXhaB0="
2246 + },
2247 + "remote_patch_strip": 0
2248 + }
2249 + }
2250 + },
2251 + "rules_jvm_external@4.4.2": {
2252 + "name": "rules_jvm_external",
2253 + "version": "4.4.2",
2254 + "key": "rules_jvm_external@4.4.2",
2255 + "repoName": "rules_jvm_external",
2256 + "executionPlatformsToRegister": [],
2257 + "toolchainsToRegister": [],
2258 + "extensionUsages": [
2259 + {
2260 + "extensionBzlFile": "@rules_jvm_external//:non-module-deps.bzl",
2261 + "extensionName": "non_module_deps",
2262 + "usingModule": "rules_jvm_external@4.4.2",
2263 + "location": {
2264 + "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
2265 + "line": 9,
2266 + "column": 32
2267 + },
2268 + "imports": {
2269 + "io_bazel_rules_kotlin": "io_bazel_rules_kotlin"
2270 + },
2271 + "devImports": [],
2272 + "tags": [],
2273 + "hasDevUseExtension": false,
2274 + "hasNonDevUseExtension": true
2275 + },
2276 + {
2277 + "extensionBzlFile": "@rules_jvm_external//:extensions.bzl",
2278 + "extensionName": "maven",
2279 + "usingModule": "rules_jvm_external@4.4.2",
2280 + "location": {
2281 + "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
2282 + "line": 16,
2283 + "column": 22
2284 + },
2285 + "imports": {
2286 + "rules_jvm_external_deps": "rules_jvm_external_deps"
2287 + },
2288 + "devImports": [],
2289 + "tags": [
2290 + {
2291 + "tagName": "install",
2292 + "attributeValues": {
2293 + "name": "rules_jvm_external_deps",
2294 + "artifacts": [
2295 + "com.google.cloud:google-cloud-core:1.93.10",
2296 + "com.google.cloud:google-cloud-storage:1.113.4",
2297 + "com.google.code.gson:gson:2.9.0",
2298 + "org.apache.maven:maven-artifact:3.8.6",
2299 + "software.amazon.awssdk:s3:2.17.183"
2300 + ],
2301 + "lock_file": "@rules_jvm_external//:rules_jvm_external_deps_install.json"
2302 + },
2303 + "devDependency": false,
2304 + "location": {
2305 + "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
2306 + "line": 18,
2307 + "column": 14
2308 + }
2309 + }
2310 + ],
2311 + "hasDevUseExtension": false,
2312 + "hasNonDevUseExtension": true
2313 + }
2314 + ],
2315 + "deps": {
2316 + "bazel_skylib": "bazel_skylib@1.5.0",
2317 + "io_bazel_stardoc": "stardoc@0.5.4",
2318 + "bazel_tools": "bazel_tools@_",
2319 + "local_config_platform": "local_config_platform@_"
2320 + },
2321 + "repoSpec": {
2322 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2323 + "ruleClassName": "http_archive",
2324 + "attributes": {
2325 + "urls": [
2326 + "https://github.com/bazelbuild/rules_jvm_external/archive/refs/tags/4.4.2.zip"
2327 + ],
2328 + "integrity": "sha256-c1YC9QgT6y6pPKP15DsZWb2AshO4NqB6YqKddXZwt3s=",
2329 + "strip_prefix": "rules_jvm_external-4.4.2",
2330 + "remote_patches": {},
2331 + "remote_patch_strip": 0
2332 + }
2333 + }
2334 + },
2335 + "googletest@1.11.0": {
2336 + "name": "googletest",
2337 + "version": "1.11.0",
2338 + "key": "googletest@1.11.0",
2339 + "repoName": "googletest",
2340 + "executionPlatformsToRegister": [],
2341 + "toolchainsToRegister": [],
2342 + "extensionUsages": [],
2343 + "deps": {
2344 + "com_google_absl": "abseil-cpp@20211102.0",
2345 + "platforms": "platforms@0.0.8",
2346 + "rules_cc": "rules_cc@0.0.9",
2347 + "bazel_tools": "bazel_tools@_",
2348 + "local_config_platform": "local_config_platform@_"
2349 + },
2350 + "repoSpec": {
2351 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2352 + "ruleClassName": "http_archive",
2353 + "attributes": {
2354 + "urls": [
2355 + "https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz"
2356 + ],
2357 + "integrity": "sha256-tIcL8SH/d5W6INILzdhie44Ijy0dqymaAxwQNO3ck9U=",
2358 + "strip_prefix": "googletest-release-1.11.0",
2359 + "remote_patches": {
2360 + "https://bcr.bazel.build/modules/googletest/1.11.0/patches/module_dot_bazel.patch": "sha256-HuahEdI/n8KCI071sN3CEziX+7qP/Ec77IWayYunLP0="
2361 + },
2362 + "remote_patch_strip": 0
2363 + }
2364 + }
2365 + }
2366 + },
2367 + "moduleExtensions": {
2368 + "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": {
2369 + "general": {
2370 + "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=",
2371 + "recordedFileInputs": {},
2372 + "recordedDirentsInputs": {},
2373 + "envVariables": {},
2374 + "generatedRepoSpecs": {
2375 + "local_config_apple_cc": {
2376 + "bzlFile": "@@apple_support~//crosstool:setup.bzl",
2377 + "ruleClassName": "_apple_cc_autoconf",
2378 + "attributes": {}
2379 + },
2380 + "local_config_apple_cc_toolchains": {
2381 + "bzlFile": "@@apple_support~//crosstool:setup.bzl",
2382 + "ruleClassName": "_apple_cc_autoconf_toolchains",
2383 + "attributes": {}
2384 + }
2385 + },
2386 + "recordedRepoMappingEntries": [
2387 + [
2388 + "apple_support~",
2389 + "bazel_tools",
2390 + "bazel_tools"
2391 + ]
2392 + ]
2393 + }
2394 + },
2395 + "@@aspect_bazel_lib~//lib:extensions.bzl%toolchains": {
2396 + "general": {
2397 + "bzlTransitiveDigest": "LoeicIyFr5kXBtH9APMAstTzgvtoA8USK4wujRLQUeg=",
2398 + "recordedFileInputs": {},
2399 + "recordedDirentsInputs": {},
2400 + "envVariables": {},
2401 + "generatedRepoSpecs": {
2402 + "expand_template_windows_amd64": {
2403 + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl",
2404 + "ruleClassName": "expand_template_platform_repo",
2405 + "attributes": {
2406 + "platform": "windows_amd64"
2407 + }
2408 + },
2409 + "copy_to_directory_windows_amd64": {
2410 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl",
2411 + "ruleClassName": "copy_to_directory_platform_repo",
2412 + "attributes": {
2413 + "platform": "windows_amd64"
2414 + }
2415 + },
2416 + "jq_darwin_amd64": {
2417 + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl",
2418 + "ruleClassName": "jq_platform_repo",
2419 + "attributes": {
2420 + "platform": "darwin_amd64",
2421 + "version": "1.7"
2422 + }
2423 + },
2424 + "copy_to_directory_freebsd_amd64": {
2425 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl",
2426 + "ruleClassName": "copy_to_directory_platform_repo",
2427 + "attributes": {
2428 + "platform": "freebsd_amd64"
2429 + }
2430 + },
2431 + "expand_template_linux_amd64": {
2432 + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl",
2433 + "ruleClassName": "expand_template_platform_repo",
2434 + "attributes": {
2435 + "platform": "linux_amd64"
2436 + }
2437 + },
2438 + "jq_linux_arm64": {
2439 + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl",
2440 + "ruleClassName": "jq_platform_repo",
2441 + "attributes": {
2442 + "platform": "linux_arm64",
2443 + "version": "1.7"
2444 + }
2445 + },
2446 + "coreutils_darwin_arm64": {
2447 + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl",
2448 + "ruleClassName": "coreutils_platform_repo",
2449 + "attributes": {
2450 + "platform": "darwin_arm64",
2451 + "version": "0.0.23"
2452 + }
2453 + },
2454 + "copy_to_directory_linux_arm64": {
2455 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl",
2456 + "ruleClassName": "copy_to_directory_platform_repo",
2457 + "attributes": {
2458 + "platform": "linux_arm64"
2459 + }
2460 + },
2461 + "bsd_tar_linux_arm64": {
2462 + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl",
2463 + "ruleClassName": "bsdtar_binary_repo",
2464 + "attributes": {
2465 + "platform": "linux_arm64"
2466 + }
2467 + },
2468 + "copy_directory_darwin_amd64": {
2469 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl",
2470 + "ruleClassName": "copy_directory_platform_repo",
2471 + "attributes": {
2472 + "platform": "darwin_amd64"
2473 + }
2474 + },
2475 + "coreutils_darwin_amd64": {
2476 + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl",
2477 + "ruleClassName": "coreutils_platform_repo",
2478 + "attributes": {
2479 + "platform": "darwin_amd64",
2480 + "version": "0.0.23"
2481 + }
2482 + },
2483 + "coreutils_linux_arm64": {
2484 + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl",
2485 + "ruleClassName": "coreutils_platform_repo",
2486 + "attributes": {
2487 + "platform": "linux_arm64",
2488 + "version": "0.0.23"
2489 + }
2490 + },
2491 + "yq_linux_s390x": {
2492 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2493 + "ruleClassName": "yq_platform_repo",
2494 + "attributes": {
2495 + "platform": "linux_s390x",
2496 + "version": "4.25.2"
2497 + }
2498 + },
2499 + "yq": {
2500 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2501 + "ruleClassName": "yq_host_alias_repo",
2502 + "attributes": {}
2503 + },
2504 + "expand_template_darwin_amd64": {
2505 + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl",
2506 + "ruleClassName": "expand_template_platform_repo",
2507 + "attributes": {
2508 + "platform": "darwin_amd64"
2509 + }
2510 + },
2511 + "copy_directory_linux_amd64": {
2512 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl",
2513 + "ruleClassName": "copy_directory_platform_repo",
2514 + "attributes": {
2515 + "platform": "linux_amd64"
2516 + }
2517 + },
2518 + "jq_darwin_arm64": {
2519 + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl",
2520 + "ruleClassName": "jq_platform_repo",
2521 + "attributes": {
2522 + "platform": "darwin_arm64",
2523 + "version": "1.7"
2524 + }
2525 + },
2526 + "yq_darwin_amd64": {
2527 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2528 + "ruleClassName": "yq_platform_repo",
2529 + "attributes": {
2530 + "platform": "darwin_amd64",
2531 + "version": "4.25.2"
2532 + }
2533 + },
2534 + "copy_directory_linux_arm64": {
2535 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl",
2536 + "ruleClassName": "copy_directory_platform_repo",
2537 + "attributes": {
2538 + "platform": "linux_arm64"
2539 + }
2540 + },
2541 + "expand_template_toolchains": {
2542 + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl",
2543 + "ruleClassName": "expand_template_toolchains_repo",
2544 + "attributes": {
2545 + "user_repository_name": "expand_template"
2546 + }
2547 + },
2548 + "bats_assert": {
2549 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2550 + "ruleClassName": "http_archive",
2551 + "attributes": {
2552 + "sha256": "98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd",
2553 + "urls": [
2554 + "https://github.com/bats-core/bats-assert/archive/v2.1.0.tar.gz"
2555 + ],
2556 + "strip_prefix": "bats-assert-2.1.0",
2557 + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"assert\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-assert\",\n visibility = [\"//visibility:public\"]\n)\n"
2558 + }
2559 + },
2560 + "copy_to_directory_darwin_amd64": {
2561 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl",
2562 + "ruleClassName": "copy_to_directory_platform_repo",
2563 + "attributes": {
2564 + "platform": "darwin_amd64"
2565 + }
2566 + },
2567 + "bsd_tar_linux_amd64": {
2568 + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl",
2569 + "ruleClassName": "bsdtar_binary_repo",
2570 + "attributes": {
2571 + "platform": "linux_amd64"
2572 + }
2573 + },
2574 + "yq_toolchains": {
2575 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2576 + "ruleClassName": "yq_toolchains_repo",
2577 + "attributes": {
2578 + "user_repository_name": "yq"
2579 + }
2580 + },
2581 + "bats_support": {
2582 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2583 + "ruleClassName": "http_archive",
2584 + "attributes": {
2585 + "sha256": "7815237aafeb42ddcc1b8c698fc5808026d33317d8701d5ec2396e9634e2918f",
2586 + "urls": [
2587 + "https://github.com/bats-core/bats-support/archive/v0.3.0.tar.gz"
2588 + ],
2589 + "strip_prefix": "bats-support-0.3.0",
2590 + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"support\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-support\",\n visibility = [\"//visibility:public\"]\n)\n"
2591 + }
2592 + },
2593 + "bsd_tar_windows_amd64": {
2594 + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl",
2595 + "ruleClassName": "bsdtar_binary_repo",
2596 + "attributes": {
2597 + "platform": "windows_amd64"
2598 + }
2599 + },
2600 + "jq": {
2601 + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl",
2602 + "ruleClassName": "jq_host_alias_repo",
2603 + "attributes": {}
2604 + },
2605 + "expand_template_darwin_arm64": {
2606 + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl",
2607 + "ruleClassName": "expand_template_platform_repo",
2608 + "attributes": {
2609 + "platform": "darwin_arm64"
2610 + }
2611 + },
2612 + "bsd_tar_darwin_arm64": {
2613 + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl",
2614 + "ruleClassName": "bsdtar_binary_repo",
2615 + "attributes": {
2616 + "platform": "darwin_arm64"
2617 + }
2618 + },
2619 + "copy_to_directory_linux_amd64": {
2620 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl",
2621 + "ruleClassName": "copy_to_directory_platform_repo",
2622 + "attributes": {
2623 + "platform": "linux_amd64"
2624 + }
2625 + },
2626 + "coreutils_linux_amd64": {
2627 + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl",
2628 + "ruleClassName": "coreutils_platform_repo",
2629 + "attributes": {
2630 + "platform": "linux_amd64",
2631 + "version": "0.0.23"
2632 + }
2633 + },
2634 + "copy_directory_toolchains": {
2635 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl",
2636 + "ruleClassName": "copy_directory_toolchains_repo",
2637 + "attributes": {
2638 + "user_repository_name": "copy_directory"
2639 + }
2640 + },
2641 + "yq_linux_amd64": {
2642 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2643 + "ruleClassName": "yq_platform_repo",
2644 + "attributes": {
2645 + "platform": "linux_amd64",
2646 + "version": "4.25.2"
2647 + }
2648 + },
2649 + "copy_to_directory_darwin_arm64": {
2650 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl",
2651 + "ruleClassName": "copy_to_directory_platform_repo",
2652 + "attributes": {
2653 + "platform": "darwin_arm64"
2654 + }
2655 + },
2656 + "coreutils_toolchains": {
2657 + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl",
2658 + "ruleClassName": "coreutils_toolchains_repo",
2659 + "attributes": {
2660 + "user_repository_name": "coreutils"
2661 + }
2662 + },
2663 + "copy_directory_freebsd_amd64": {
2664 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl",
2665 + "ruleClassName": "copy_directory_platform_repo",
2666 + "attributes": {
2667 + "platform": "freebsd_amd64"
2668 + }
2669 + },
2670 + "bats_file": {
2671 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2672 + "ruleClassName": "http_archive",
2673 + "attributes": {
2674 + "sha256": "9b69043241f3af1c2d251f89b4fcafa5df3f05e97b89db18d7c9bdf5731bb27a",
2675 + "urls": [
2676 + "https://github.com/bats-core/bats-file/archive/v0.4.0.tar.gz"
2677 + ],
2678 + "strip_prefix": "bats-file-0.4.0",
2679 + "build_file_content": "load(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"file\",\n hardlink = \"on\",\n srcs = glob([\n \"src/**\",\n \"load.bash\",\n ]),\n out = \"bats-file\",\n visibility = [\"//visibility:public\"]\n)\n"
2680 + }
2681 + },
2682 + "expand_template_linux_arm64": {
2683 + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl",
2684 + "ruleClassName": "expand_template_platform_repo",
2685 + "attributes": {
2686 + "platform": "linux_arm64"
2687 + }
2688 + },
2689 + "jq_linux_amd64": {
2690 + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl",
2691 + "ruleClassName": "jq_platform_repo",
2692 + "attributes": {
2693 + "platform": "linux_amd64",
2694 + "version": "1.7"
2695 + }
2696 + },
2697 + "bsd_tar_darwin_amd64": {
2698 + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl",
2699 + "ruleClassName": "bsdtar_binary_repo",
2700 + "attributes": {
2701 + "platform": "darwin_amd64"
2702 + }
2703 + },
2704 + "bsd_tar_toolchains": {
2705 + "bzlFile": "@@aspect_bazel_lib~//lib/private:tar_toolchain.bzl",
2706 + "ruleClassName": "tar_toolchains_repo",
2707 + "attributes": {
2708 + "user_repository_name": "bsd_tar"
2709 + }
2710 + },
2711 + "bats_toolchains": {
2712 + "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
2713 + "ruleClassName": "http_archive",
2714 + "attributes": {
2715 + "sha256": "a1a9f7875aa4b6a9480ca384d5865f1ccf1b0b1faead6b47aa47d79709a5c5fd",
2716 + "urls": [
2717 + "https://github.com/bats-core/bats-core/archive/v1.10.0.tar.gz"
2718 + ],
2719 + "strip_prefix": "bats-core-1.10.0",
2720 + "build_file_content": "load(\"@local_config_platform//:constraints.bzl\", \"HOST_CONSTRAINTS\")\nload(\"@aspect_bazel_lib//lib/private:bats_toolchain.bzl\", \"bats_toolchain\")\nload(\"@aspect_bazel_lib//lib:copy_to_directory.bzl\", \"copy_to_directory\")\n\ncopy_to_directory(\n name = \"core\",\n hardlink = \"on\",\n srcs = glob([\n \"lib/**\",\n \"libexec/**\"\n ]) + [\"bin/bats\"],\n out = \"bats-core\",\n)\n\nbats_toolchain(\n name = \"toolchain\",\n core = \":core\",\n libraries = [\"@bats_support//:support\", \"@bats_assert//:assert\", \"@bats_file//:file\"]\n)\n\ntoolchain(\n name = \"bats_toolchain\",\n exec_compatible_with = HOST_CONSTRAINTS,\n toolchain = \":toolchain\",\n toolchain_type = \"@aspect_bazel_lib//lib:bats_toolchain_type\",\n)\n"
2721 + }
2722 + },
2723 + "yq_windows_amd64": {
2724 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2725 + "ruleClassName": "yq_platform_repo",
2726 + "attributes": {
2727 + "platform": "windows_amd64",
2728 + "version": "4.25.2"
2729 + }
2730 + },
2731 + "jq_windows_amd64": {
2732 + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl",
2733 + "ruleClassName": "jq_platform_repo",
2734 + "attributes": {
2735 + "platform": "windows_amd64",
2736 + "version": "1.7"
2737 + }
2738 + },
2739 + "expand_template_freebsd_amd64": {
2740 + "bzlFile": "@@aspect_bazel_lib~//lib/private:expand_template_toolchain.bzl",
2741 + "ruleClassName": "expand_template_platform_repo",
2742 + "attributes": {
2743 + "platform": "freebsd_amd64"
2744 + }
2745 + },
2746 + "yq_linux_ppc64le": {
2747 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2748 + "ruleClassName": "yq_platform_repo",
2749 + "attributes": {
2750 + "platform": "linux_ppc64le",
2751 + "version": "4.25.2"
2752 + }
2753 + },
2754 + "copy_to_directory_toolchains": {
2755 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_to_directory_toolchain.bzl",
2756 + "ruleClassName": "copy_to_directory_toolchains_repo",
2757 + "attributes": {
2758 + "user_repository_name": "copy_to_directory"
2759 + }
2760 + },
2761 + "jq_toolchains": {
2762 + "bzlFile": "@@aspect_bazel_lib~//lib/private:jq_toolchain.bzl",
2763 + "ruleClassName": "jq_toolchains_repo",
2764 + "attributes": {
2765 + "user_repository_name": "jq"
2766 + }
2767 + },
2768 + "copy_directory_darwin_arm64": {
2769 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl",
2770 + "ruleClassName": "copy_directory_platform_repo",
2771 + "attributes": {
2772 + "platform": "darwin_arm64"
2773 + }
2774 + },
2775 + "copy_directory_windows_amd64": {
2776 + "bzlFile": "@@aspect_bazel_lib~//lib/private:copy_directory_toolchain.bzl",
2777 + "ruleClassName": "copy_directory_platform_repo",
2778 + "attributes": {
2779 + "platform": "windows_amd64"
2780 + }
2781 + },
2782 + "yq_darwin_arm64": {
2783 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2784 + "ruleClassName": "yq_platform_repo",
2785 + "attributes": {
2786 + "platform": "darwin_arm64",
2787 + "version": "4.25.2"
2788 + }
2789 + },
2790 + "coreutils_windows_amd64": {
2791 + "bzlFile": "@@aspect_bazel_lib~//lib/private:coreutils_toolchain.bzl",
2792 + "ruleClassName": "coreutils_platform_repo",
2793 + "attributes": {
2794 + "platform": "windows_amd64",
2795 + "version": "0.0.23"
2796 + }
2797 + },
2798 + "yq_linux_arm64": {
2799 + "bzlFile": "@@aspect_bazel_lib~//lib/private:yq_toolchain.bzl",
2800 + "ruleClassName": "yq_platform_repo",
2801 + "attributes": {
2802 + "platform": "linux_arm64",
2803 + "version": "4.25.2"
2804 + }
2805 + }
2806 + },
2807 + "recordedRepoMappingEntries": [
2808 + [
2809 + "aspect_bazel_lib~",
2810 + "aspect_bazel_lib",
2811 + "aspect_bazel_lib~"
2812 + ],
2813 + [
2814 + "aspect_bazel_lib~",
2815 + "bazel_skylib",
2816 + "bazel_skylib~"
2817 + ],
2818 + [
2819 + "aspect_bazel_lib~",
2820 + "bazel_tools",
2821 + "bazel_tools"
2822 + ]
2823 + ]
2824 + }
2825 + },
2826 + "@@aspect_rules_js~//npm:extensions.bzl%npm": {
2827 + "general": {
2828 + "bzlTransitiveDigest": "0n19IsXsPAjFPZgRmK/fLbl0gll4lSHYOvB6i7vjgeM=",
2829 + "recordedFileInputs": {
2830 + "@@//pnpm-lock.yaml": "9359c8ab6b7356aad05bd9dbc75f49bf57ff65f4a2ea8eaab37158f73768a8e7",
2831 + "@@//.npmrc": "04b75797cb2bbcfff4da99e596af4f17394c7a8f2e6ea2ed0e38a8f6bdc5843d",
2832 + "@@aspect_bazel_lib~~toolchains~yq_darwin_arm64//yq": "db8c11ca4c1dda8fe7c211e82e28191d48bd9ae83471b952003e819de79bcb51"
2833 + },
2834 + "recordedDirentsInputs": {},
2835 + "envVariables": {},
2836 + "generatedRepoSpecs": {
2837 + "npm__at_isaacs_cliui__8.0.2": {
2838 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
2839 + "ruleClassName": "npm_import_rule",
2840 + "attributes": {
2841 + "package": "@isaacs/cliui",
2842 + "version": "8.0.2",
2843 + "root_package": "",
2844 + "link_workspace": "",
2845 + "link_packages": {},
2846 + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
2847 + "url": "https://registry.npmjs.com/@isaacs/cliui/-/cliui-8.0.2.tgz",
2848 + "commit": "",
2849 + "patch_args": [
2850 + "-p0"
2851 + ],
2852 + "patches": [],
2853 + "custom_postinstall": "",
2854 + "npm_auth": "",
2855 + "npm_auth_basic": "",
2856 + "npm_auth_username": "",
2857 + "npm_auth_password": "",
2858 + "lifecycle_hooks": [],
2859 + "extra_build_content": "",
2860 + "generate_bzl_library_targets": false,
2861 + "extract_full_archive": false
2862 + }
2863 + },
2864 + "npm__to-fast-properties__2.0.0": {
2865 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
2866 + "ruleClassName": "npm_import_rule",
2867 + "attributes": {
2868 + "package": "to-fast-properties",
2869 + "version": "2.0.0",
2870 + "root_package": "",
2871 + "link_workspace": "",
2872 + "link_packages": {},
2873 + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
2874 + "url": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
2875 + "commit": "",
2876 + "patch_args": [
2877 + "-p0"
2878 + ],
2879 + "patches": [],
2880 + "custom_postinstall": "",
2881 + "npm_auth": "",
2882 + "npm_auth_basic": "",
2883 + "npm_auth_username": "",
2884 + "npm_auth_password": "",
2885 + "lifecycle_hooks": [],
2886 + "extra_build_content": "",
2887 + "generate_bzl_library_targets": false,
2888 + "extract_full_archive": false
2889 + }
2890 + },
2891 + "npm__color-convert__2.0.1__links": {
2892 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
2893 + "ruleClassName": "npm_import_links",
2894 + "attributes": {
2895 + "package": "color-convert",
2896 + "version": "2.0.1",
2897 + "dev": false,
2898 + "root_package": "",
2899 + "link_packages": {},
2900 + "deps": {
2901 + "color-name": "1.1.4"
2902 + },
2903 + "transitive_closure": {
2904 + "color-convert": [
2905 + "2.0.1"
2906 + ],
2907 + "color-name": [
2908 + "1.1.4"
2909 + ]
2910 + },
2911 + "lifecycle_build_target": false,
2912 + "lifecycle_hooks_env": [],
2913 + "lifecycle_hooks_execution_requirements": [],
2914 + "lifecycle_hooks_use_default_shell_env": false,
2915 + "bins": {},
2916 + "package_visibility": [
2917 + "//visibility:public"
2918 + ],
2919 + "replace_package": ""
2920 + }
2921 + },
2922 + "npm__merge2__1.4.1__links": {
2923 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
2924 + "ruleClassName": "npm_import_links",
2925 + "attributes": {
2926 + "package": "merge2",
2927 + "version": "1.4.1",
2928 + "dev": false,
2929 + "root_package": "",
2930 + "link_packages": {},
2931 + "deps": {},
2932 + "transitive_closure": {
2933 + "merge2": [
2934 + "1.4.1"
2935 + ]
2936 + },
2937 + "lifecycle_build_target": false,
2938 + "lifecycle_hooks_env": [],
2939 + "lifecycle_hooks_execution_requirements": [],
2940 + "lifecycle_hooks_use_default_shell_env": false,
2941 + "bins": {},
2942 + "package_visibility": [
2943 + "//visibility:public"
2944 + ],
2945 + "replace_package": ""
2946 + }
2947 + },
2948 + "npm__typed-array-buffer__1.0.2": {
2949 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
2950 + "ruleClassName": "npm_import_rule",
2951 + "attributes": {
2952 + "package": "typed-array-buffer",
2953 + "version": "1.0.2",
2954 + "root_package": "",
2955 + "link_workspace": "",
2956 + "link_packages": {},
2957 + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==",
2958 + "url": "https://registry.npmjs.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz",
2959 + "commit": "",
2960 + "patch_args": [
2961 + "-p0"
2962 + ],
2963 + "patches": [],
2964 + "custom_postinstall": "",
2965 + "npm_auth": "",
2966 + "npm_auth_basic": "",
2967 + "npm_auth_username": "",
2968 + "npm_auth_password": "",
2969 + "lifecycle_hooks": [],
2970 + "extra_build_content": "",
2971 + "generate_bzl_library_targets": false,
2972 + "extract_full_archive": false
2973 + }
2974 + },
2975 + "npm__at_tauri-apps_cli-linux-x64-musl__1.5.14": {
2976 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
2977 + "ruleClassName": "npm_import_rule",
2978 + "attributes": {
2979 + "package": "@tauri-apps/cli-linux-x64-musl",
2980 + "version": "1.5.14",
2981 + "root_package": "",
2982 + "link_workspace": "",
2983 + "link_packages": {},
2984 + "integrity": "sha512-204Drgg9Zx0+THKndqASz4+iPCwqA3gQVF9C0CDIArNXrjPyJjVvW8VP5CHiZYaTNWxlz/ltyxluM6UFWbXNFw==",
2985 + "url": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.5.14.tgz",
2986 + "commit": "",
2987 + "patch_args": [
2988 + "-p0"
2989 + ],
2990 + "patches": [],
2991 + "custom_postinstall": "",
2992 + "npm_auth": "",
2993 + "npm_auth_basic": "",
2994 + "npm_auth_username": "",
2995 + "npm_auth_password": "",
2996 + "lifecycle_hooks": [
2997 + "preinstall",
2998 + "install",
2999 + "postinstall"
3000 + ],
3001 + "extra_build_content": "",
3002 + "generate_bzl_library_targets": false,
3003 + "extract_full_archive": false
3004 + }
3005 + },
3006 + "npm__wrap-ansi__7.0.0__links": {
3007 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3008 + "ruleClassName": "npm_import_links",
3009 + "attributes": {
3010 + "package": "wrap-ansi",
3011 + "version": "7.0.0",
3012 + "dev": false,
3013 + "root_package": "",
3014 + "link_packages": {},
3015 + "deps": {
3016 + "ansi-styles": "4.3.0",
3017 + "string-width": "4.2.3",
3018 + "strip-ansi": "6.0.1"
3019 + },
3020 + "transitive_closure": {
3021 + "ansi-regex": [
3022 + "5.0.1"
3023 + ],
3024 + "ansi-styles": [
3025 + "4.3.0"
3026 + ],
3027 + "color-convert": [
3028 + "2.0.1"
3029 + ],
3030 + "color-name": [
3031 + "1.1.4"
3032 + ],
3033 + "emoji-regex": [
3034 + "8.0.0"
3035 + ],
3036 + "is-fullwidth-code-point": [
3037 + "3.0.0"
3038 + ],
3039 + "string-width": [
3040 + "4.2.3"
3041 + ],
3042 + "strip-ansi": [
3043 + "6.0.1"
3044 + ],
3045 + "wrap-ansi": [
3046 + "7.0.0"
3047 + ]
3048 + },
3049 + "lifecycle_build_target": false,
3050 + "lifecycle_hooks_env": [],
3051 + "lifecycle_hooks_execution_requirements": [],
3052 + "lifecycle_hooks_use_default_shell_env": false,
3053 + "bins": {},
3054 + "package_visibility": [
3055 + "//visibility:public"
3056 + ],
3057 + "replace_package": ""
3058 + }
3059 + },
3060 + "npm__at_typescript-eslint_types__6.21.0__links": {
3061 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3062 + "ruleClassName": "npm_import_links",
3063 + "attributes": {
3064 + "package": "@typescript-eslint/types",
3065 + "version": "6.21.0",
3066 + "dev": false,
3067 + "root_package": "",
3068 + "link_packages": {},
3069 + "deps": {},
3070 + "transitive_closure": {
3071 + "@typescript-eslint/types": [
3072 + "6.21.0"
3073 + ]
3074 + },
3075 + "lifecycle_build_target": false,
3076 + "lifecycle_hooks_env": [],
3077 + "lifecycle_hooks_execution_requirements": [],
3078 + "lifecycle_hooks_use_default_shell_env": false,
3079 + "bins": {},
3080 + "package_visibility": [
3081 + "//visibility:public"
3082 + ],
3083 + "replace_package": ""
3084 + }
3085 + },
3086 + "npm__at_radix-ui_rect__1.0.1": {
3087 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3088 + "ruleClassName": "npm_import_rule",
3089 + "attributes": {
3090 + "package": "@radix-ui/rect",
3091 + "version": "1.0.1",
3092 + "root_package": "",
3093 + "link_workspace": "",
3094 + "link_packages": {},
3095 + "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==",
3096 + "url": "https://registry.npmjs.com/@radix-ui/rect/-/rect-1.0.1.tgz",
3097 + "commit": "",
3098 + "patch_args": [
3099 + "-p0"
3100 + ],
3101 + "patches": [],
3102 + "custom_postinstall": "",
3103 + "npm_auth": "",
3104 + "npm_auth_basic": "",
3105 + "npm_auth_username": "",
3106 + "npm_auth_password": "",
3107 + "lifecycle_hooks": [],
3108 + "extra_build_content": "",
3109 + "generate_bzl_library_targets": false,
3110 + "extract_full_archive": false
3111 + }
3112 + },
3113 + "npm__at_tauri-apps_cli-win32-ia32-msvc__1.5.14__links": {
3114 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3115 + "ruleClassName": "npm_import_links",
3116 + "attributes": {
3117 + "package": "@tauri-apps/cli-win32-ia32-msvc",
3118 + "version": "1.5.14",
3119 + "dev": true,
3120 + "root_package": "",
3121 + "link_packages": {},
3122 + "deps": {},
3123 + "transitive_closure": {
3124 + "@tauri-apps/cli-win32-ia32-msvc": [
3125 + "1.5.14"
3126 + ]
3127 + },
3128 + "lifecycle_build_target": true,
3129 + "lifecycle_hooks_env": [],
3130 + "lifecycle_hooks_execution_requirements": [
3131 + "no-sandbox"
3132 + ],
3133 + "lifecycle_hooks_use_default_shell_env": false,
3134 + "bins": {},
3135 + "package_visibility": [
3136 + "//visibility:public"
3137 + ],
3138 + "replace_package": ""
3139 + }
3140 + },
3141 + "npm__internal-slot__1.0.7__links": {
3142 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3143 + "ruleClassName": "npm_import_links",
3144 + "attributes": {
3145 + "package": "internal-slot",
3146 + "version": "1.0.7",
3147 + "dev": false,
3148 + "root_package": "",
3149 + "link_packages": {},
3150 + "deps": {
3151 + "es-errors": "1.3.0",
3152 + "hasown": "2.0.2",
3153 + "side-channel": "1.0.6"
3154 + },
3155 + "transitive_closure": {
3156 + "call-bind": [
3157 + "1.0.7"
3158 + ],
3159 + "define-data-property": [
3160 + "1.1.4"
3161 + ],
3162 + "es-define-property": [
3163 + "1.0.0"
3164 + ],
3165 + "es-errors": [
3166 + "1.3.0"
3167 + ],
3168 + "function-bind": [
3169 + "1.1.2"
3170 + ],
3171 + "get-intrinsic": [
3172 + "1.2.4"
3173 + ],
3174 + "gopd": [
3175 + "1.0.1"
3176 + ],
3177 + "has-property-descriptors": [
3178 + "1.0.2"
3179 + ],
3180 + "has-proto": [
3181 + "1.0.3"
3182 + ],
3183 + "has-symbols": [
3184 + "1.0.3"
3185 + ],
3186 + "hasown": [
3187 + "2.0.2"
3188 + ],
3189 + "internal-slot": [
3190 + "1.0.7"
3191 + ],
3192 + "object-inspect": [
3193 + "1.13.1"
3194 + ],
3195 + "set-function-length": [
3196 + "1.2.2"
3197 + ],
3198 + "side-channel": [
3199 + "1.0.6"
3200 + ]
3201 + },
3202 + "lifecycle_build_target": false,
3203 + "lifecycle_hooks_env": [],
3204 + "lifecycle_hooks_execution_requirements": [],
3205 + "lifecycle_hooks_use_default_shell_env": false,
3206 + "bins": {},
3207 + "package_visibility": [
3208 + "//visibility:public"
3209 + ],
3210 + "replace_package": ""
3211 + }
3212 + },
3213 + "npm__deep-is__0.1.4": {
3214 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3215 + "ruleClassName": "npm_import_rule",
3216 + "attributes": {
3217 + "package": "deep-is",
3218 + "version": "0.1.4",
3219 + "root_package": "",
3220 + "link_workspace": "",
3221 + "link_packages": {},
3222 + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
3223 + "url": "https://registry.npmjs.com/deep-is/-/deep-is-0.1.4.tgz",
3224 + "commit": "",
3225 + "patch_args": [
3226 + "-p0"
3227 + ],
3228 + "patches": [],
3229 + "custom_postinstall": "",
3230 + "npm_auth": "",
3231 + "npm_auth_basic": "",
3232 + "npm_auth_username": "",
3233 + "npm_auth_password": "",
3234 + "lifecycle_hooks": [],
3235 + "extra_build_content": "",
3236 + "generate_bzl_library_targets": false,
3237 + "extract_full_archive": false
3238 + }
3239 + },
3240 + "npm__is-reference__3.0.2__links": {
3241 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3242 + "ruleClassName": "npm_import_links",
3243 + "attributes": {
3244 + "package": "is-reference",
3245 + "version": "3.0.2",
3246 + "dev": false,
3247 + "root_package": "",
3248 + "link_packages": {},
3249 + "deps": {
3250 + "@types/estree": "1.0.5"
3251 + },
3252 + "transitive_closure": {
3253 + "@types/estree": [
3254 + "1.0.5"
3255 + ],
3256 + "is-reference": [
3257 + "3.0.2"
3258 + ]
3259 + },
3260 + "lifecycle_build_target": false,
3261 + "lifecycle_hooks_env": [],
3262 + "lifecycle_hooks_execution_requirements": [],
3263 + "lifecycle_hooks_use_default_shell_env": false,
3264 + "bins": {},
3265 + "package_visibility": [
3266 + "//visibility:public"
3267 + ],
3268 + "replace_package": ""
3269 + }
3270 + },
3271 + "npm__estree-walker__2.0.2": {
3272 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3273 + "ruleClassName": "npm_import_rule",
3274 + "attributes": {
3275 + "package": "estree-walker",
3276 + "version": "2.0.2",
3277 + "root_package": "",
3278 + "link_workspace": "",
3279 + "link_packages": {},
3280 + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
3281 + "url": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
3282 + "commit": "",
3283 + "patch_args": [
3284 + "-p0"
3285 + ],
3286 + "patches": [],
3287 + "custom_postinstall": "",
3288 + "npm_auth": "",
3289 + "npm_auth_basic": "",
3290 + "npm_auth_username": "",
3291 + "npm_auth_password": "",
3292 + "lifecycle_hooks": [],
3293 + "extra_build_content": "",
3294 + "generate_bzl_library_targets": false,
3295 + "extract_full_archive": false
3296 + }
3297 + },
3298 + "npm__safe-array-concat__1.1.2__links": {
3299 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3300 + "ruleClassName": "npm_import_links",
3301 + "attributes": {
3302 + "package": "safe-array-concat",
3303 + "version": "1.1.2",
3304 + "dev": false,
3305 + "root_package": "",
3306 + "link_packages": {},
3307 + "deps": {
3308 + "call-bind": "1.0.7",
3309 + "get-intrinsic": "1.2.4",
3310 + "has-symbols": "1.0.3",
3311 + "isarray": "2.0.5"
3312 + },
3313 + "transitive_closure": {
3314 + "call-bind": [
3315 + "1.0.7"
3316 + ],
3317 + "define-data-property": [
3318 + "1.1.4"
3319 + ],
3320 + "es-define-property": [
3321 + "1.0.0"
3322 + ],
3323 + "es-errors": [
3324 + "1.3.0"
3325 + ],
3326 + "function-bind": [
3327 + "1.1.2"
3328 + ],
3329 + "get-intrinsic": [
3330 + "1.2.4"
3331 + ],
3332 + "gopd": [
3333 + "1.0.1"
3334 + ],
3335 + "has-property-descriptors": [
3336 + "1.0.2"
3337 + ],
3338 + "has-proto": [
3339 + "1.0.3"
3340 + ],
3341 + "has-symbols": [
3342 + "1.0.3"
3343 + ],
3344 + "hasown": [
3345 + "2.0.2"
3346 + ],
3347 + "isarray": [
3348 + "2.0.5"
3349 + ],
3350 + "safe-array-concat": [
3351 + "1.1.2"
3352 + ],
3353 + "set-function-length": [
3354 + "1.2.2"
3355 + ]
3356 + },
3357 + "lifecycle_build_target": false,
3358 + "lifecycle_hooks_env": [],
3359 + "lifecycle_hooks_execution_requirements": [],
3360 + "lifecycle_hooks_use_default_shell_env": false,
3361 + "bins": {},
3362 + "package_visibility": [
3363 + "//visibility:public"
3364 + ],
3365 + "replace_package": ""
3366 + }
3367 + },
3368 + "npm__fsevents__2.3.3": {
3369 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3370 + "ruleClassName": "npm_import_rule",
3371 + "attributes": {
3372 + "package": "fsevents",
3373 + "version": "2.3.3",
3374 + "root_package": "",
3375 + "link_workspace": "",
3376 + "link_packages": {},
3377 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
3378 + "url": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
3379 + "commit": "",
3380 + "patch_args": [
3381 + "-p0"
3382 + ],
3383 + "patches": [],
3384 + "custom_postinstall": "",
3385 + "npm_auth": "",
3386 + "npm_auth_basic": "",
3387 + "npm_auth_username": "",
3388 + "npm_auth_password": "",
3389 + "lifecycle_hooks": [
3390 + "preinstall",
3391 + "install",
3392 + "postinstall"
3393 + ],
3394 + "extra_build_content": "",
3395 + "generate_bzl_library_targets": false,
3396 + "extract_full_archive": false
3397 + }
3398 + },
3399 + "npm__array-includes__3.1.8__links": {
3400 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3401 + "ruleClassName": "npm_import_links",
3402 + "attributes": {
3403 + "package": "array-includes",
3404 + "version": "3.1.8",
3405 + "dev": false,
3406 + "root_package": "",
3407 + "link_packages": {},
3408 + "deps": {
3409 + "call-bind": "1.0.7",
3410 + "define-properties": "1.2.1",
3411 + "es-abstract": "1.23.3",
3412 + "es-object-atoms": "1.0.0",
3413 + "get-intrinsic": "1.2.4",
3414 + "is-string": "1.0.7"
3415 + },
3416 + "transitive_closure": {
3417 + "array-buffer-byte-length": [
3418 + "1.0.1"
3419 + ],
3420 + "array-includes": [
3421 + "3.1.8"
3422 + ],
3423 + "arraybuffer.prototype.slice": [
3424 + "1.0.3"
3425 + ],
3426 + "available-typed-arrays": [
3427 + "1.0.7"
3428 + ],
3429 + "call-bind": [
3430 + "1.0.7"
3431 + ],
3432 + "data-view-buffer": [
3433 + "1.0.1"
3434 + ],
3435 + "data-view-byte-length": [
3436 + "1.0.1"
3437 + ],
3438 + "data-view-byte-offset": [
3439 + "1.0.0"
3440 + ],
3441 + "define-data-property": [
3442 + "1.1.4"
3443 + ],
3444 + "define-properties": [
3445 + "1.2.1"
3446 + ],
3447 + "es-abstract": [
3448 + "1.23.3"
3449 + ],
3450 + "es-define-property": [
3451 + "1.0.0"
3452 + ],
3453 + "es-errors": [
3454 + "1.3.0"
3455 + ],
3456 + "es-object-atoms": [
3457 + "1.0.0"
3458 + ],
3459 + "es-set-tostringtag": [
3460 + "2.0.3"
3461 + ],
3462 + "es-to-primitive": [
3463 + "1.2.1"
3464 + ],
3465 + "for-each": [
3466 + "0.3.3"
3467 + ],
3468 + "function-bind": [
3469 + "1.1.2"
3470 + ],
3471 + "function.prototype.name": [
3472 + "1.1.6"
3473 + ],
3474 + "functions-have-names": [
3475 + "1.2.3"
3476 + ],
3477 + "get-intrinsic": [
3478 + "1.2.4"
3479 + ],
3480 + "get-symbol-description": [
3481 + "1.0.2"
3482 + ],
3483 + "globalthis": [
3484 + "1.0.3"
3485 + ],
3486 + "gopd": [
3487 + "1.0.1"
3488 + ],
3489 + "has-bigints": [
3490 + "1.0.2"
3491 + ],
3492 + "has-property-descriptors": [
3493 + "1.0.2"
3494 + ],
3495 + "has-proto": [
3496 + "1.0.3"
3497 + ],
3498 + "has-symbols": [
3499 + "1.0.3"
3500 + ],
3501 + "has-tostringtag": [
3502 + "1.0.2"
3503 + ],
3504 + "hasown": [
3505 + "2.0.2"
3506 + ],
3507 + "internal-slot": [
3508 + "1.0.7"
3509 + ],
3510 + "is-array-buffer": [
3511 + "3.0.4"
3512 + ],
3513 + "is-bigint": [
3514 + "1.0.4"
3515 + ],
3516 + "is-boolean-object": [
3517 + "1.1.2"
3518 + ],
3519 + "is-callable": [
3520 + "1.2.7"
3521 + ],
3522 + "is-data-view": [
3523 + "1.0.1"
3524 + ],
3525 + "is-date-object": [
3526 + "1.0.5"
3527 + ],
3528 + "is-negative-zero": [
3529 + "2.0.3"
3530 + ],
3531 + "is-number-object": [
3532 + "1.0.7"
3533 + ],
3534 + "is-regex": [
3535 + "1.1.4"
3536 + ],
3537 + "is-shared-array-buffer": [
3538 + "1.0.3"
3539 + ],
3540 + "is-string": [
3541 + "1.0.7"
3542 + ],
3543 + "is-symbol": [
3544 + "1.0.4"
3545 + ],
3546 + "is-typed-array": [
3547 + "1.1.13"
3548 + ],
3549 + "is-weakref": [
3550 + "1.0.2"
3551 + ],
3552 + "isarray": [
3553 + "2.0.5"
3554 + ],
3555 + "object-inspect": [
3556 + "1.13.1"
3557 + ],
3558 + "object-keys": [
3559 + "1.1.1"
3560 + ],
3561 + "object.assign": [
3562 + "4.1.5"
3563 + ],
3564 + "possible-typed-array-names": [
3565 + "1.0.0"
3566 + ],
3567 + "regexp.prototype.flags": [
3568 + "1.5.2"
3569 + ],
3570 + "safe-array-concat": [
3571 + "1.1.2"
3572 + ],
3573 + "safe-regex-test": [
3574 + "1.0.3"
3575 + ],
3576 + "set-function-length": [
3577 + "1.2.2"
3578 + ],
3579 + "set-function-name": [
3580 + "2.0.2"
3581 + ],
3582 + "side-channel": [
3583 + "1.0.6"
3584 + ],
3585 + "string.prototype.trim": [
3586 + "1.2.9"
3587 + ],
3588 + "string.prototype.trimend": [
3589 + "1.0.8"
3590 + ],
3591 + "string.prototype.trimstart": [
3592 + "1.0.8"
3593 + ],
3594 + "typed-array-buffer": [
3595 + "1.0.2"
3596 + ],
3597 + "typed-array-byte-length": [
3598 + "1.0.1"
3599 + ],
3600 + "typed-array-byte-offset": [
3601 + "1.0.2"
3602 + ],
3603 + "typed-array-length": [
3604 + "1.0.6"
3605 + ],
3606 + "unbox-primitive": [
3607 + "1.0.2"
3608 + ],
3609 + "which-boxed-primitive": [
3610 + "1.0.2"
3611 + ],
3612 + "which-typed-array": [
3613 + "1.1.15"
3614 + ]
3615 + },
3616 + "lifecycle_build_target": false,
3617 + "lifecycle_hooks_env": [],
3618 + "lifecycle_hooks_execution_requirements": [],
3619 + "lifecycle_hooks_use_default_shell_env": false,
3620 + "bins": {},
3621 + "package_visibility": [
3622 + "//visibility:public"
3623 + ],
3624 + "replace_package": ""
3625 + }
3626 + },
3627 + "npm__merge2__1.4.1": {
3628 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3629 + "ruleClassName": "npm_import_rule",
3630 + "attributes": {
3631 + "package": "merge2",
3632 + "version": "1.4.1",
3633 + "root_package": "",
3634 + "link_workspace": "",
3635 + "link_packages": {},
3636 + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
3637 + "url": "https://registry.npmjs.com/merge2/-/merge2-1.4.1.tgz",
3638 + "commit": "",
3639 + "patch_args": [
3640 + "-p0"
3641 + ],
3642 + "patches": [],
3643 + "custom_postinstall": "",
3644 + "npm_auth": "",
3645 + "npm_auth_basic": "",
3646 + "npm_auth_username": "",
3647 + "npm_auth_password": "",
3648 + "lifecycle_hooks": [],
3649 + "extra_build_content": "",
3650 + "generate_bzl_library_targets": false,
3651 + "extract_full_archive": false
3652 + }
3653 + },
3654 + "npm__at_jridgewell_gen-mapping__0.3.5__links": {
3655 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3656 + "ruleClassName": "npm_import_links",
3657 + "attributes": {
3658 + "package": "@jridgewell/gen-mapping",
3659 + "version": "0.3.5",
3660 + "dev": false,
3661 + "root_package": "",
3662 + "link_packages": {},
3663 + "deps": {
3664 + "@jridgewell/set-array": "1.2.1",
3665 + "@jridgewell/sourcemap-codec": "1.4.15",
3666 + "@jridgewell/trace-mapping": "0.3.25"
3667 + },
3668 + "transitive_closure": {
3669 + "@jridgewell/gen-mapping": [
3670 + "0.3.5"
3671 + ],
3672 + "@jridgewell/resolve-uri": [
3673 + "3.1.2"
3674 + ],
3675 + "@jridgewell/set-array": [
3676 + "1.2.1"
3677 + ],
3678 + "@jridgewell/sourcemap-codec": [
3679 + "1.4.15"
3680 + ],
3681 + "@jridgewell/trace-mapping": [
3682 + "0.3.25"
3683 + ]
3684 + },
3685 + "lifecycle_build_target": false,
3686 + "lifecycle_hooks_env": [],
3687 + "lifecycle_hooks_execution_requirements": [],
3688 + "lifecycle_hooks_use_default_shell_env": false,
3689 + "bins": {},
3690 + "package_visibility": [
3691 + "//visibility:public"
3692 + ],
3693 + "replace_package": ""
3694 + }
3695 + },
3696 + "npm__postcss-value-parser__4.2.0__links": {
3697 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3698 + "ruleClassName": "npm_import_links",
3699 + "attributes": {
3700 + "package": "postcss-value-parser",
3701 + "version": "4.2.0",
3702 + "dev": true,
3703 + "root_package": "",
3704 + "link_packages": {},
3705 + "deps": {},
3706 + "transitive_closure": {
3707 + "postcss-value-parser": [
3708 + "4.2.0"
3709 + ]
3710 + },
3711 + "lifecycle_build_target": false,
3712 + "lifecycle_hooks_env": [],
3713 + "lifecycle_hooks_execution_requirements": [],
3714 + "lifecycle_hooks_use_default_shell_env": false,
3715 + "bins": {},
3716 + "package_visibility": [
3717 + "//visibility:public"
3718 + ],
3719 + "replace_package": ""
3720 + }
3721 + },
3722 + "npm__tapable__2.2.1": {
3723 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3724 + "ruleClassName": "npm_import_rule",
3725 + "attributes": {
3726 + "package": "tapable",
3727 + "version": "2.2.1",
3728 + "root_package": "",
3729 + "link_workspace": "",
3730 + "link_packages": {},
3731 + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
3732 + "url": "https://registry.npmjs.com/tapable/-/tapable-2.2.1.tgz",
3733 + "commit": "",
3734 + "patch_args": [
3735 + "-p0"
3736 + ],
3737 + "patches": [],
3738 + "custom_postinstall": "",
3739 + "npm_auth": "",
3740 + "npm_auth_basic": "",
3741 + "npm_auth_username": "",
3742 + "npm_auth_password": "",
3743 + "lifecycle_hooks": [],
3744 + "extra_build_content": "",
3745 + "generate_bzl_library_targets": false,
3746 + "extract_full_archive": false
3747 + }
3748 + },
3749 + "npm__at_radix-ui_react-context__1.0.1__-206725401": {
3750 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3751 + "ruleClassName": "npm_import_rule",
3752 + "attributes": {
3753 + "package": "@radix-ui/react-context",
3754 + "version": "1.0.1_-206725401",
3755 + "root_package": "",
3756 + "link_workspace": "",
3757 + "link_packages": {},
3758 + "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==",
3759 + "url": "https://registry.npmjs.com/@radix-ui/react-context/-/react-context-1.0.1.tgz",
3760 + "commit": "",
3761 + "patch_args": [
3762 + "-p0"
3763 + ],
3764 + "patches": [],
3765 + "custom_postinstall": "",
3766 + "npm_auth": "",
3767 + "npm_auth_basic": "",
3768 + "npm_auth_username": "",
3769 + "npm_auth_password": "",
3770 + "lifecycle_hooks": [],
3771 + "extra_build_content": "",
3772 + "generate_bzl_library_targets": false,
3773 + "extract_full_archive": false
3774 + }
3775 + },
3776 + "npm__balanced-match__1.0.2__links": {
3777 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3778 + "ruleClassName": "npm_import_links",
3779 + "attributes": {
3780 + "package": "balanced-match",
3781 + "version": "1.0.2",
3782 + "dev": false,
3783 + "root_package": "",
3784 + "link_packages": {},
3785 + "deps": {},
3786 + "transitive_closure": {
3787 + "balanced-match": [
3788 + "1.0.2"
3789 + ]
3790 + },
3791 + "lifecycle_build_target": false,
3792 + "lifecycle_hooks_env": [],
3793 + "lifecycle_hooks_execution_requirements": [],
3794 + "lifecycle_hooks_use_default_shell_env": false,
3795 + "bins": {},
3796 + "package_visibility": [
3797 + "//visibility:public"
3798 + ],
3799 + "replace_package": ""
3800 + }
3801 + },
3802 + "npm__which-boxed-primitive__1.0.2__links": {
3803 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3804 + "ruleClassName": "npm_import_links",
3805 + "attributes": {
3806 + "package": "which-boxed-primitive",
3807 + "version": "1.0.2",
3808 + "dev": false,
3809 + "root_package": "",
3810 + "link_packages": {},
3811 + "deps": {
3812 + "is-bigint": "1.0.4",
3813 + "is-boolean-object": "1.1.2",
3814 + "is-number-object": "1.0.7",
3815 + "is-string": "1.0.7",
3816 + "is-symbol": "1.0.4"
3817 + },
3818 + "transitive_closure": {
3819 + "call-bind": [
3820 + "1.0.7"
3821 + ],
3822 + "define-data-property": [
3823 + "1.1.4"
3824 + ],
3825 + "es-define-property": [
3826 + "1.0.0"
3827 + ],
3828 + "es-errors": [
3829 + "1.3.0"
3830 + ],
3831 + "function-bind": [
3832 + "1.1.2"
3833 + ],
3834 + "get-intrinsic": [
3835 + "1.2.4"
3836 + ],
3837 + "gopd": [
3838 + "1.0.1"
3839 + ],
3840 + "has-bigints": [
3841 + "1.0.2"
3842 + ],
3843 + "has-property-descriptors": [
3844 + "1.0.2"
3845 + ],
3846 + "has-proto": [
3847 + "1.0.3"
3848 + ],
3849 + "has-symbols": [
3850 + "1.0.3"
3851 + ],
3852 + "has-tostringtag": [
3853 + "1.0.2"
3854 + ],
3855 + "hasown": [
3856 + "2.0.2"
3857 + ],
3858 + "is-bigint": [
3859 + "1.0.4"
3860 + ],
3861 + "is-boolean-object": [
3862 + "1.1.2"
3863 + ],
3864 + "is-number-object": [
3865 + "1.0.7"
3866 + ],
3867 + "is-string": [
3868 + "1.0.7"
3869 + ],
3870 + "is-symbol": [
3871 + "1.0.4"
3872 + ],
3873 + "set-function-length": [
3874 + "1.2.2"
3875 + ],
3876 + "which-boxed-primitive": [
3877 + "1.0.2"
3878 + ]
3879 + },
3880 + "lifecycle_build_target": false,
3881 + "lifecycle_hooks_env": [],
3882 + "lifecycle_hooks_execution_requirements": [],
3883 + "lifecycle_hooks_use_default_shell_env": false,
3884 + "bins": {},
3885 + "package_visibility": [
3886 + "//visibility:public"
3887 + ],
3888 + "replace_package": ""
3889 + }
3890 + },
3891 + "npm__is-number-object__1.0.7": {
3892 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3893 + "ruleClassName": "npm_import_rule",
3894 + "attributes": {
3895 + "package": "is-number-object",
3896 + "version": "1.0.7",
3897 + "root_package": "",
3898 + "link_workspace": "",
3899 + "link_packages": {},
3900 + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
3901 + "url": "https://registry.npmjs.com/is-number-object/-/is-number-object-1.0.7.tgz",
3902 + "commit": "",
3903 + "patch_args": [
3904 + "-p0"
3905 + ],
3906 + "patches": [],
3907 + "custom_postinstall": "",
3908 + "npm_auth": "",
3909 + "npm_auth_basic": "",
3910 + "npm_auth_username": "",
3911 + "npm_auth_password": "",
3912 + "lifecycle_hooks": [],
3913 + "extra_build_content": "",
3914 + "generate_bzl_library_targets": false,
3915 + "extract_full_archive": false
3916 + }
3917 + },
3918 + "npm__at_radix-ui_react-use-rect__1.0.1__-206725401__links": {
3919 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3920 + "ruleClassName": "npm_import_links",
3921 + "attributes": {
3922 + "package": "@radix-ui/react-use-rect",
3923 + "version": "1.0.1_-206725401",
3924 + "dev": false,
3925 + "root_package": "",
3926 + "link_packages": {},
3927 + "deps": {
3928 + "@babel/runtime": "7.24.4",
3929 + "@radix-ui/rect": "1.0.1",
3930 + "@types/react": "18.2.78",
3931 + "react": "18.2.0"
3932 + },
3933 + "transitive_closure": {
3934 + "@babel/runtime": [
3935 + "7.24.4"
3936 + ],
3937 + "@radix-ui/react-use-rect": [
3938 + "1.0.1_-206725401"
3939 + ],
3940 + "@radix-ui/rect": [
3941 + "1.0.1"
3942 + ],
3943 + "@types/prop-types": [
3944 + "15.7.12"
3945 + ],
3946 + "@types/react": [
3947 + "18.2.78"
3948 + ],
3949 + "csstype": [
3950 + "3.1.3"
3951 + ],
3952 + "js-tokens": [
3953 + "4.0.0"
3954 + ],
3955 + "loose-envify": [
3956 + "1.4.0"
3957 + ],
3958 + "react": [
3959 + "18.2.0"
3960 + ],
3961 + "regenerator-runtime": [
3962 + "0.14.1"
3963 + ]
3964 + },
3965 + "lifecycle_build_target": false,
3966 + "lifecycle_hooks_env": [],
3967 + "lifecycle_hooks_execution_requirements": [],
3968 + "lifecycle_hooks_use_default_shell_env": false,
3969 + "bins": {},
3970 + "package_visibility": [
3971 + "//visibility:public"
3972 + ],
3973 + "replace_package": ""
3974 + }
3975 + },
3976 + "npm__browserslist__4.23.0__links": {
3977 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
3978 + "ruleClassName": "npm_import_links",
3979 + "attributes": {
3980 + "package": "browserslist",
3981 + "version": "4.23.0",
3982 + "dev": true,
3983 + "root_package": "",
3984 + "link_packages": {},
3985 + "deps": {
3986 + "caniuse-lite": "1.0.30001611",
3987 + "electron-to-chromium": "1.4.745",
3988 + "node-releases": "2.0.14",
3989 + "update-browserslist-db": "1.0.13_browserslist_4.23.0"
3990 + },
3991 + "transitive_closure": {
3992 + "browserslist": [
3993 + "4.23.0"
3994 + ],
3995 + "caniuse-lite": [
3996 + "1.0.30001611"
3997 + ],
3998 + "electron-to-chromium": [
3999 + "1.4.745"
4000 + ],
4001 + "escalade": [
4002 + "3.1.2"
4003 + ],
4004 + "node-releases": [
4005 + "2.0.14"
4006 + ],
4007 + "picocolors": [
4008 + "1.0.0"
4009 + ],
4010 + "update-browserslist-db": [
4011 + "1.0.13_browserslist_4.23.0"
4012 + ]
4013 + },
4014 + "lifecycle_build_target": false,
4015 + "lifecycle_hooks_env": [],
4016 + "lifecycle_hooks_execution_requirements": [],
4017 + "lifecycle_hooks_use_default_shell_env": false,
4018 + "bins": {},
4019 + "package_visibility": [
4020 + "//visibility:public"
4021 + ],
4022 + "replace_package": ""
4023 + }
4024 + },
4025 + "npm__js-tokens__4.0.0": {
4026 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4027 + "ruleClassName": "npm_import_rule",
4028 + "attributes": {
4029 + "package": "js-tokens",
4030 + "version": "4.0.0",
4031 + "root_package": "",
4032 + "link_workspace": "",
4033 + "link_packages": {},
4034 + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
4035 + "url": "https://registry.npmjs.com/js-tokens/-/js-tokens-4.0.0.tgz",
4036 + "commit": "",
4037 + "patch_args": [
4038 + "-p0"
4039 + ],
4040 + "patches": [],
4041 + "custom_postinstall": "",
4042 + "npm_auth": "",
4043 + "npm_auth_basic": "",
4044 + "npm_auth_username": "",
4045 + "npm_auth_password": "",
4046 + "lifecycle_hooks": [],
4047 + "extra_build_content": "",
4048 + "generate_bzl_library_targets": false,
4049 + "extract_full_archive": false
4050 + }
4051 + },
4052 + "npm__react-textarea-autosize__8.5.3__-206725401": {
4053 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4054 + "ruleClassName": "npm_import_rule",
4055 + "attributes": {
4056 + "package": "react-textarea-autosize",
4057 + "version": "8.5.3_-206725401",
4058 + "root_package": "",
4059 + "link_workspace": "",
4060 + "link_packages": {
4061 + "": [
4062 + "react-textarea-autosize"
4063 + ]
4064 + },
4065 + "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==",
4066 + "url": "https://registry.npmjs.com/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz",
4067 + "commit": "",
4068 + "patch_args": [
4069 + "-p0"
4070 + ],
4071 + "patches": [],
4072 + "custom_postinstall": "",
4073 + "npm_auth": "",
4074 + "npm_auth_basic": "",
4075 + "npm_auth_username": "",
4076 + "npm_auth_password": "",
4077 + "lifecycle_hooks": [],
4078 + "extra_build_content": "",
4079 + "generate_bzl_library_targets": false,
4080 + "extract_full_archive": false
4081 + }
4082 + },
4083 + "npm__path-exists__4.0.0__links": {
4084 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4085 + "ruleClassName": "npm_import_links",
4086 + "attributes": {
4087 + "package": "path-exists",
4088 + "version": "4.0.0",
4089 + "dev": false,
4090 + "root_package": "",
4091 + "link_packages": {},
4092 + "deps": {},
4093 + "transitive_closure": {
4094 + "path-exists": [
4095 + "4.0.0"
4096 + ]
4097 + },
4098 + "lifecycle_build_target": false,
4099 + "lifecycle_hooks_env": [],
4100 + "lifecycle_hooks_execution_requirements": [],
4101 + "lifecycle_hooks_use_default_shell_env": false,
4102 + "bins": {},
4103 + "package_visibility": [
4104 + "//visibility:public"
4105 + ],
4106 + "replace_package": ""
4107 + }
4108 + },
4109 + "npm__at_jridgewell_set-array__1.2.1__links": {
4110 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4111 + "ruleClassName": "npm_import_links",
4112 + "attributes": {
4113 + "package": "@jridgewell/set-array",
4114 + "version": "1.2.1",
4115 + "dev": false,
4116 + "root_package": "",
4117 + "link_packages": {},
4118 + "deps": {},
4119 + "transitive_closure": {
4120 + "@jridgewell/set-array": [
4121 + "1.2.1"
4122 + ]
4123 + },
4124 + "lifecycle_build_target": false,
4125 + "lifecycle_hooks_env": [],
4126 + "lifecycle_hooks_execution_requirements": [],
4127 + "lifecycle_hooks_use_default_shell_env": false,
4128 + "bins": {},
4129 + "package_visibility": [
4130 + "//visibility:public"
4131 + ],
4132 + "replace_package": ""
4133 + }
4134 + },
4135 + "npm__at_vue_compiler-ssr__3.4.23__links": {
4136 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4137 + "ruleClassName": "npm_import_links",
4138 + "attributes": {
4139 + "package": "@vue/compiler-ssr",
4140 + "version": "3.4.23",
4141 + "dev": false,
4142 + "root_package": "",
4143 + "link_packages": {},
4144 + "deps": {
4145 + "@vue/compiler-dom": "3.4.23",
4146 + "@vue/shared": "3.4.23"
4147 + },
4148 + "transitive_closure": {
4149 + "@babel/helper-string-parser": [
4150 + "7.24.1"
4151 + ],
4152 + "@babel/helper-validator-identifier": [
4153 + "7.22.20"
4154 + ],
4155 + "@babel/parser": [
4156 + "7.24.4"
4157 + ],
4158 + "@babel/types": [
4159 + "7.24.0"
4160 + ],
4161 + "@vue/compiler-core": [
4162 + "3.4.23"
4163 + ],
4164 + "@vue/compiler-dom": [
4165 + "3.4.23"
4166 + ],
4167 + "@vue/compiler-ssr": [
4168 + "3.4.23"
4169 + ],
4170 + "@vue/shared": [
4171 + "3.4.23"
4172 + ],
4173 + "entities": [
4174 + "4.5.0"
4175 + ],
4176 + "estree-walker": [
4177 + "2.0.2"
4178 + ],
4179 + "source-map-js": [
4180 + "1.2.0"
4181 + ],
4182 + "to-fast-properties": [
4183 + "2.0.0"
4184 + ]
4185 + },
4186 + "lifecycle_build_target": false,
4187 + "lifecycle_hooks_env": [],
4188 + "lifecycle_hooks_execution_requirements": [],
4189 + "lifecycle_hooks_use_default_shell_env": false,
4190 + "bins": {},
4191 + "package_visibility": [
4192 + "//visibility:public"
4193 + ],
4194 + "replace_package": ""
4195 + }
4196 + },
4197 + "npm__p-limit__3.1.0__links": {
4198 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4199 + "ruleClassName": "npm_import_links",
4200 + "attributes": {
4201 + "package": "p-limit",
4202 + "version": "3.1.0",
4203 + "dev": false,
4204 + "root_package": "",
4205 + "link_packages": {},
4206 + "deps": {
4207 + "yocto-queue": "0.1.0"
4208 + },
4209 + "transitive_closure": {
4210 + "p-limit": [
4211 + "3.1.0"
4212 + ],
4213 + "yocto-queue": [
4214 + "0.1.0"
4215 + ]
4216 + },
4217 + "lifecycle_build_target": false,
4218 + "lifecycle_hooks_env": [],
4219 + "lifecycle_hooks_execution_requirements": [],
4220 + "lifecycle_hooks_use_default_shell_env": false,
4221 + "bins": {},
4222 + "package_visibility": [
4223 + "//visibility:public"
4224 + ],
4225 + "replace_package": ""
4226 + }
4227 + },
4228 + "npm__string-width__5.1.2__links": {
4229 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4230 + "ruleClassName": "npm_import_links",
4231 + "attributes": {
4232 + "package": "string-width",
4233 + "version": "5.1.2",
4234 + "dev": false,
4235 + "root_package": "",
4236 + "link_packages": {},
4237 + "deps": {
4238 + "eastasianwidth": "0.2.0",
4239 + "emoji-regex": "9.2.2",
4240 + "strip-ansi": "7.1.0"
4241 + },
4242 + "transitive_closure": {
4243 + "ansi-regex": [
4244 + "6.0.1"
4245 + ],
4246 + "eastasianwidth": [
4247 + "0.2.0"
4248 + ],
4249 + "emoji-regex": [
4250 + "9.2.2"
4251 + ],
4252 + "string-width": [
4253 + "5.1.2"
4254 + ],
4255 + "strip-ansi": [
4256 + "7.1.0"
4257 + ]
4258 + },
4259 + "lifecycle_build_target": false,
4260 + "lifecycle_hooks_env": [],
4261 + "lifecycle_hooks_execution_requirements": [],
4262 + "lifecycle_hooks_use_default_shell_env": false,
4263 + "bins": {},
4264 + "package_visibility": [
4265 + "//visibility:public"
4266 + ],
4267 + "replace_package": ""
4268 + }
4269 + },
4270 + "npm__nanoid__3.3.7": {
4271 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4272 + "ruleClassName": "npm_import_rule",
4273 + "attributes": {
4274 + "package": "nanoid",
4275 + "version": "3.3.7",
4276 + "root_package": "",
4277 + "link_workspace": "",
4278 + "link_packages": {},
4279 + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
4280 + "url": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
4281 + "commit": "",
4282 + "patch_args": [
4283 + "-p0"
4284 + ],
4285 + "patches": [],
4286 + "custom_postinstall": "",
4287 + "npm_auth": "",
4288 + "npm_auth_basic": "",
4289 + "npm_auth_username": "",
4290 + "npm_auth_password": "",
4291 + "lifecycle_hooks": [],
4292 + "extra_build_content": "",
4293 + "generate_bzl_library_targets": false,
4294 + "extract_full_archive": false
4295 + }
4296 + },
4297 + "npm__nanoid__3.3.6": {
4298 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4299 + "ruleClassName": "npm_import_rule",
4300 + "attributes": {
4301 + "package": "nanoid",
4302 + "version": "3.3.6",
4303 + "root_package": "",
4304 + "link_workspace": "",
4305 + "link_packages": {},
4306 + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
4307 + "url": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
4308 + "commit": "",
4309 + "patch_args": [
4310 + "-p0"
4311 + ],
4312 + "patches": [],
4313 + "custom_postinstall": "",
4314 + "npm_auth": "",
4315 + "npm_auth_basic": "",
4316 + "npm_auth_username": "",
4317 + "npm_auth_password": "",
4318 + "lifecycle_hooks": [],
4319 + "extra_build_content": "",
4320 + "generate_bzl_library_targets": false,
4321 + "extract_full_archive": false
4322 + }
4323 + },
4324 + "npm__at_vue_reactivity__3.4.23": {
4325 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4326 + "ruleClassName": "npm_import_rule",
4327 + "attributes": {
4328 + "package": "@vue/reactivity",
4329 + "version": "3.4.23",
4330 + "root_package": "",
4331 + "link_workspace": "",
4332 + "link_packages": {},
4333 + "integrity": "sha512-GlXR9PL+23fQ3IqnbSQ8OQKLodjqCyoCrmdLKZk3BP7jN6prWheAfU7a3mrltewTkoBm+N7qMEb372VHIkQRMQ==",
4334 + "url": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.23.tgz",
4335 + "commit": "",
4336 + "patch_args": [
4337 + "-p0"
4338 + ],
4339 + "patches": [],
4340 + "custom_postinstall": "",
4341 + "npm_auth": "",
4342 + "npm_auth_basic": "",
4343 + "npm_auth_username": "",
4344 + "npm_auth_password": "",
4345 + "lifecycle_hooks": [],
4346 + "extra_build_content": "",
4347 + "generate_bzl_library_targets": false,
4348 + "extract_full_archive": false
4349 + }
4350 + },
4351 + "npm__at_radix-ui_react-compose-refs__1.0.1__-206725401": {
4352 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4353 + "ruleClassName": "npm_import_rule",
4354 + "attributes": {
4355 + "package": "@radix-ui/react-compose-refs",
4356 + "version": "1.0.1_-206725401",
4357 + "root_package": "",
4358 + "link_workspace": "",
4359 + "link_packages": {},
4360 + "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==",
4361 + "url": "https://registry.npmjs.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz",
4362 + "commit": "",
4363 + "patch_args": [
4364 + "-p0"
4365 + ],
4366 + "patches": [],
4367 + "custom_postinstall": "",
4368 + "npm_auth": "",
4369 + "npm_auth_basic": "",
4370 + "npm_auth_username": "",
4371 + "npm_auth_password": "",
4372 + "lifecycle_hooks": [],
4373 + "extra_build_content": "",
4374 + "generate_bzl_library_targets": false,
4375 + "extract_full_archive": false
4376 + }
4377 + },
4378 + "npm__at_humanwhocodes_config-array__0.11.14": {
4379 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4380 + "ruleClassName": "npm_import_rule",
4381 + "attributes": {
4382 + "package": "@humanwhocodes/config-array",
4383 + "version": "0.11.14",
4384 + "root_package": "",
4385 + "link_workspace": "",
4386 + "link_packages": {},
4387 + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
4388 + "url": "https://registry.npmjs.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
4389 + "commit": "",
4390 + "patch_args": [
4391 + "-p0"
4392 + ],
4393 + "patches": [],
4394 + "custom_postinstall": "",
4395 + "npm_auth": "",
4396 + "npm_auth_basic": "",
4397 + "npm_auth_username": "",
4398 + "npm_auth_password": "",
4399 + "lifecycle_hooks": [],
4400 + "extra_build_content": "",
4401 + "generate_bzl_library_targets": false,
4402 + "extract_full_archive": false
4403 + }
4404 + },
4405 + "npm__is-generator-function__1.0.10__links": {
4406 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4407 + "ruleClassName": "npm_import_links",
4408 + "attributes": {
4409 + "package": "is-generator-function",
4410 + "version": "1.0.10",
4411 + "dev": false,
4412 + "root_package": "",
4413 + "link_packages": {},
4414 + "deps": {
4415 + "has-tostringtag": "1.0.2"
4416 + },
4417 + "transitive_closure": {
4418 + "has-symbols": [
4419 + "1.0.3"
4420 + ],
4421 + "has-tostringtag": [
4422 + "1.0.2"
4423 + ],
4424 + "is-generator-function": [
4425 + "1.0.10"
4426 + ]
4427 + },
4428 + "lifecycle_build_target": false,
4429 + "lifecycle_hooks_env": [],
4430 + "lifecycle_hooks_execution_requirements": [],
4431 + "lifecycle_hooks_use_default_shell_env": false,
4432 + "bins": {},
4433 + "package_visibility": [
4434 + "//visibility:public"
4435 + ],
4436 + "replace_package": ""
4437 + }
4438 + },
4439 + "npm__at_ampproject_remapping__2.3.0__links": {
4440 + "bzlFile": "@@aspect_rules_js~//npm/private:npm_import.bzl",
4441 + "ruleClassName": "npm_import_links",
4442 + "attributes": {
4443 + "package": "@ampproject/remapping",
4444 + "version": "2.3.0",
4445 + "dev": false,
4446 + "root_package": "",
4447 + "link_packages": {},
4448 + "deps": {
4449 + "@jridgewell/gen-mapping": "0.3.5",
4450 + "@jridgewell/trace-mapping": "0.3.25"
4451 + },
4452 + "transitive_closure": {
4453 + "@ampproject/remapping": [
4454 + "2.3.0"

This file is too large to show in full.

WORKSPACE deleted
-54
@@ -1,54 +0,0 @@
1 -workspace(
2 - name = "app",
3 -)
4 -
5 -load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
6 -
7 -http_archive(
8 - name = "bazel_skylib",
9 - sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728",
10 - urls = [
11 - "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
12 - "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
13 - ],
14 -)
15 -
16 -load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
17 -
18 -bazel_skylib_workspace()
19 -
20 -http_archive(
21 - name = "build_bazel_rules_nodejs",
22 - sha256 = "709cc0dcb51cf9028dd57c268066e5bc8f03a119ded410a13b5c3925d6e43c48",
23 - urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.8.4/rules_nodejs-5.8.4.tar.gz"],
24 -)
25 -
26 -http_archive(
27 - name = "rules_nodejs",
28 - sha256 = "8fc8e300cb67b89ceebd5b8ba6896ff273c84f6099fc88d23f24e7102319d8fd",
29 - urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.8.4/rules_nodejs-core-5.8.4.tar.gz"],
30 -)
31 -
32 -load("@build_bazel_rules_nodejs//:repositories.bzl", "build_bazel_rules_nodejs_dependencies")
33 -
34 -build_bazel_rules_nodejs_dependencies()
35 -
36 -load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains")
37 -
38 -node_version = "18.17.0"
39 -
40 -nodejs_register_toolchains(
41 - name = "nodejs",
42 - node_version = node_version,
43 -)
44 -
45 -load("@build_bazel_rules_nodejs//:index.bzl", "npm_install")
46 -
47 -npm_install(
48 - name = "npm",
49 - package_json = "//:package.json",
50 - package_lock_json = "//:package-lock.json",
51 - package_path = "/",
52 - quiet = False,
53 - symlink_node_modules = True,
54 -)
WORKSPACE.bazel new
+1
@@ -0,0 +1 @@
1 +# Marker that this folder is the root of a Bazel workspace
app/BUILD.bazel new
+32
@@ -0,0 +1,32 @@
1 +load("@aspect_rules_ts//ts:defs.bzl", "ts_project")
2 +
3 +ts_project(
4 + name = "app",
5 + allow_js = True,
6 + incremental = True,
7 + preserve_jsx = True,
8 + resolve_json_module = True,
9 + assets = ["globals.css"],
10 + transpiler = "tsc",
11 + tsconfig = "//:tsconfig",
12 + visibility = ["//:__subpackages__"],
13 + deps = [
14 + "//:node_modules/@types/react",
15 + "//:node_modules/@types/react-dom",
16 + "//:node_modules/next",
17 + "//:node_modules/typescript",
18 + "//:node_modules/@radix-ui/react-tooltip",
19 + "//:node_modules/@radix-ui/react-slot",
20 + "//:node_modules/react-textarea-autosize",
21 + "//:node_modules/class-variance-authority",
22 + "//:node_modules/ai",
23 + "//:node_modules/@tailwindcss",
24 + "//:node_modules/tailwind-merge",
25 + "//:node_modules/postcss",
26 + "//:node_modules/autoprefixer",
27 + "//:node_modules/nanoid",
28 + "//:node_modules/clsx",
29 + "//:node_modules/@heroicons/react",
30 + "//:node_modules/react-hot-toast",
31 + ],
32 +)
app/_ui/address-bar.tsx
-3
@@ -38,7 +38,6 @@ function Params() {
38
39 export function AddressBar() {
40 const pathname = usePathname();
41 - console.log('pathname', pathname);
41 return (
42 <div className="flex items-center gap-x-2 p-3.5 lg:px-5 lg:py-3">
43 <div className="text-gray-600">
@@ -62,8 +61,6 @@ export function AddressBar() {
61 {segment}
62 </span>
63 </span>
65 -
66 - <span className="text-gray-600">/</span>
64 </React.Fragment>
65 );
66 })}
app/_ui/components/button.tsx
-1
@@ -3,7 +3,6 @@ import { Slot } from '@radix-ui/react-slot'
3 import { cva, type VariantProps } from 'class-variance-authority'
4 import { cn } from '@/app/_lib/utils'
5
6 -
6 const buttonVariants = cva(
7 'inline-flex items-center justify-center rounded-md text-sm font-medium shadow ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50',
8 {
app/_ui/components/prompt-form.tsx
+2
@@ -11,6 +11,8 @@ import {
11 import { IconArrowElbow, IconPlus } from './icons'
12 import { useRouter } from 'next/navigation'
13 import { Button, buttonVariants } from './button';
14 +import { useEnterSubmit } from '@/app/_lib/hooks/use-enter-submit';
15 +import { cn } from '@/app/_lib/utils';
16
17 export interface PromptProps
18 extends Pick<UseChatHelpers, 'input' | 'setInput'> {
app/_ui/tab.tsx
+1 -1
@@ -1,9 +1,9 @@
1 'use client';
2
3 -import type { Item } from '#/ui/tab-group';
3 import clsx from 'clsx';
4 import Link from 'next/link';
5 import { useSelectedLayoutSegment } from 'next/navigation';
6 +import { Item } from './tab-group';
7
8 export const Tab = ({
9 path,
app/page.tsx
+5 -1
@@ -1,4 +1,6 @@
1 -export default function Page() {
1 +import React from 'react';
2 +
3 +const Page: React.FC = () => {
4 return (
5 <div className="space-y-8">
6 <h1 className="text-xl font-medium text-gray-300">Hello, Tauri on Bazel!</h1>
@@ -10,3 +12,5 @@ export default function Page() {
12 </div>
13 );
14 }
15 +
16 +export default Page;
defs.bzl new
+189
@@ -0,0 +1,189 @@
1 +"""Wrapper macro to make the next.js rules more ergonomic.
2 +
3 +This might be upstreamed to a "contrib" folder in rules_js at some point.
4 +Follow https://github.com/aspect-build/rules_js/issues/1292
5 +"""
6 +
7 +load("@aspect_rules_js//js:defs.bzl", "js_run_binary", "js_run_devserver")
8 +
9 +def next(
10 + name,
11 + srcs,
12 + data,
13 + next_js_binary,
14 + next_bin,
15 + next_build_out = ".next",
16 + next_export_out = "out",
17 + **kwargs):
18 + """Generates Next.js targets build, dev & start targets.
19 +
20 + `{name}` - a js_run_binary build target that runs `next build`
21 + `{name}_dev` - a js_run_devserver binary target that runs `next dev`
22 + `{name}_start` - a js_run_devserver binary target that runs `next start`
23 +
24 + Use this macro in the BUILD file at the root of a next app where the `next.config.js` file is
25 + located.
26 +
27 + For example, a target such as
28 +
29 + ```
30 + next(
31 + name = "next",
32 + srcs = [
33 + "//next.js/pages",
34 + "//next.js/public",
35 + "//next.js/styles",
36 + ],
37 + data = [
38 + "//next.js:node_modules/next",
39 + "//next.js:node_modules/react-dom",
40 + "//next.js:node_modules/react",
41 + "//next.js:node_modules/typescript",
42 + "next.config.js",
43 + "package.json",
44 + ],
45 + next_bin = "../../node_modules/.bin/next",
46 + next_js_binary = "//:next_js_binary",
47 + )
48 + ```
49 +
50 + in an `next.js/BUILD.bazel` file where the root `BUILD.bazel` file has
51 + next linked to `node_modules` and the `next_js_binary`:
52 +
53 + ```
54 + load("@npm//:defs.bzl", "npm_link_all_packages")
55 + load("@npm//:next/package_json.bzl", next_bin = "bin")
56 +
57 + npm_link_all_packages(name = "node_modules")
58 +
59 + next_bin.next_binary(
60 + name = "next_js_binary",
61 + visibility = ["//visibility:public"],
62 + )
63 + ```
64 +
65 + will create the targets:
66 +
67 + ```
68 + //next.js:next
69 + //next.js:next_dev
70 + //next.js:next_start
71 + ```
72 +
73 + To build the above next app, equivalent to running
74 + `next build` outside Bazel, run,
75 +
76 + ```
77 + bazel build //next.js:next
78 + ```
79 +
80 + To run the development server in watch mode with
81 + [ibazel](https://github.com/bazelbuild/bazel-watcher), equivalent to running
82 + `next dev` outside Bazel, run
83 +
84 + ```
85 + ibazel run //next.js:next_dev
86 + ```
87 +
88 + To run the production server in watch mode with
89 + [ibazel](https://github.com/bazelbuild/bazel-watcher), equivalent to running
90 + `next start` outside Bazel,
91 +
92 + ```
93 + ibazel run //next.js:next_start
94 + ```
95 +
96 + To export the above next app, equivalent to running
97 + `next export` outside Bazel, run,
98 +
99 + ```
100 + bazel build //next.js:next_export
101 + ```
102 +
103 + Args:
104 + name: The name of the build target.
105 +
106 + srcs: Source files to include in build & dev targets.
107 + Typically these are source files or transpiled source files in Next.js source folders
108 + such as `pages`, `public` & `styles`.
109 +
110 + data: Data files to include in all targets.
111 + These are typically npm packages required for the build & configuration files such as
112 + package.json and next.config.js.
113 +
114 + next_js_binary: The next js_binary. Used for the `build `target.
115 +
116 + Typically this is a js_binary target created using `bin` loaded from the `package_json.bzl`
117 + file of the npm package.
118 +
119 + See main docstring above for example usage.
120 +
121 + next_bin: The next bin command. Used for the `dev` and `start` targets.
122 +
123 + Typically the path to the next entry point from the current package. For example `./node_modules/.bin/next`,
124 + if next is linked to the current package, or a relative path such as `../node_modules/.bin/next`, if next is
125 + linked in the parent package.
126 +
127 + See main docstring above for example usage.
128 +
129 + next_build_out: The `next build` output directory. Defaults to `.next` which is the Next.js default output directory for the `build` command.
130 +
131 + next_export_out: The `next export` output directory. Defaults to `out` which is the Next.js default output directory for the `export` command.
132 +
133 + **kwargs: Other attributes passed to all targets such as `tags`.
134 + """
135 +
136 + tags = kwargs.pop("tags", [])
137 +
138 + # `next build` creates an optimized bundle of the application
139 + # https://nextjs.org/docs/api-reference/cli#build
140 + js_run_binary(
141 + name = name,
142 + tool = next_js_binary,
143 + args = ["build"],
144 + srcs = srcs + data,
145 + out_dirs = [next_build_out],
146 + chdir = native.package_name(),
147 + tags = tags,
148 + **kwargs
149 + )
150 +
151 + # `next dev` runs the application in development mode
152 + # https://nextjs.org/docs/api-reference/cli#development
153 + js_run_devserver(
154 + name = "{}_dev".format(name),
155 + command = next_bin,
156 + args = ["dev"],
157 + data = srcs + data,
158 + chdir = native.package_name(),
159 + tags = tags,
160 + **kwargs
161 + )
162 +
163 + # `next start` runs the application in production mode
164 + # https://nextjs.org/docs/api-reference/cli#production
165 + js_run_devserver(
166 + name = "{}_start".format(name),
167 + command = next_bin,
168 + args = ["start"],
169 + data = data + [name],
170 + chdir = native.package_name(),
171 + tags = tags,
172 + **kwargs
173 + )
174 +
175 + # `next export` runs the application in production mode
176 + # https://nextjs.org/docs/api-reference/cli#production
177 + js_run_binary(
178 + name = "{}_export".format(name),
179 + tool = next_js_binary,
180 + args = ["export"],
181 + srcs = data + [name],
182 + out_dirs = [next_export_out],
183 + chdir = native.package_name(),
184 + # Tagged as "manual" since this `next export` writes back to the `.next` directory which causes issues with
185 + # trying to write to an input. See https://github.com/vercel/next.js/issues/43344.
186 + # TODO: fix in Next.js (https://github.com/vercel/next.js/issues/43344) or find work-around.
187 + tags = tags + ["manual"],
188 + **kwargs
189 + )
docs/learn.md new
+6
@@ -0,0 +1,6 @@
1 +
2 +## Query all targets
3 +
4 +```bash
5 +bazel query //...
6 +```
jsconfig.json new
+42
@@ -0,0 +1,42 @@
1 +{
2 + "compilerOptions": {
3 + "target": "es5",
4 + "lib": [
5 + "dom",
6 + "dom.iterable",
7 + "esnext"
8 + ],
9 + "allowJs": true,
10 + "skipLibCheck": true,
11 + "strict": true,
12 + "forceConsistentCasingInFileNames": true,
13 + "esModuleInterop": true,
14 + "module": "esnext",
15 + "moduleResolution": "node",
16 + "resolveJsonModule": true,
17 + "isolatedModules": true,
18 + "jsx": "preserve",
19 + "incremental": true,
20 + "baseUrl": ".",
21 + "paths": {
22 + "@/app/*": [
23 + "./app/*",
24 + "./dist/tauri-on-bazel/app/*"
25 + ]
26 + },
27 + "plugins": [
28 + {
29 + "name": "next"
30 + }
31 + ]
32 + },
33 + "include": [
34 + "**/*.ts",
35 + "**/*.tsx",
36 + ".next/types/**/*.ts",
37 + "next-env.d.ts"
38 + ],
39 + "exclude": [
40 + "node_modules"
41 + ]
42 +}
package-lock.json deleted
-5792
@@ -1,5792 +0,0 @@
1 -{
2 - "name": "tauri-on-bazel",
3 - "version": "0.1.0",
4 - "lockfileVersion": 3,
5 - "requires": true,
6 - "packages": {
7 - "": {
8 - "name": "tauri-on-bazel",
9 - "version": "0.1.0",
10 - "dependencies": {
11 - "@heroicons/react": "1.0.6",
12 - "@radix-ui/react-slot": "^1.0.2",
13 - "@radix-ui/react-tooltip": "^1.0.7",
14 - "@tauri-apps/api": "^1.5.3",
15 - "@types/node": "18.17.0",
16 - "@types/react": "18.2.78",
17 - "@types/react-dom": "18.2.25",
18 - "ai": "^2.2.33",
19 - "class-variance-authority": "^0.7.0",
20 - "clsx": "1.2.1",
21 - "eslint": "8.32.0",
22 - "eslint-config-next": "14.1.0",
23 - "next": "14.1.0",
24 - "react": "18.2.0",
25 - "react-dom": "18.2.0",
26 - "react-hot-toast": "^2.4.1",
27 - "react-textarea-autosize": "^8.5.3",
28 - "tailwind-merge": "^2.2.1",
29 - "typescript": "4.9.4"
30 - },
31 - "devDependencies": {
32 - "@tailwindcss/forms": "0.5.3",
33 - "@tailwindcss/typography": "0.5.9",
34 - "@tauri-apps/cli": "^1.5.11",
35 - "autoprefixer": "^10.4.19",
36 - "postcss": "^8.4.38",
37 - "tailwindcss": "^3.4.3"
38 - }
39 - },
40 - "node_modules/@alloc/quick-lru": {
41 - "version": "5.2.0",
42 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
43 - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
44 - "dev": true,
45 - "engines": {
46 - "node": ">=10"
47 - }
48 - },
49 - "node_modules/@ampproject/remapping": {
50 - "version": "2.3.0",
51 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@ampproject/remapping/-/remapping-2.3.0.tgz",
52 - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
53 - "peer": true,
54 - "dependencies": {
55 - "@jridgewell/gen-mapping": "^0.3.5",
56 - "@jridgewell/trace-mapping": "^0.3.24"
57 - },
58 - "engines": {
59 - "node": ">=6.0.0"
60 - }
61 - },
62 - "node_modules/@babel/parser": {
63 - "version": "7.24.4",
64 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@babel/parser/-/parser-7.24.4.tgz",
65 - "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==",
66 - "peer": true,
67 - "bin": {
68 - "parser": "bin/babel-parser.js"
69 - },
70 - "engines": {
71 - "node": ">=6.0.0"
72 - }
73 - },
74 - "node_modules/@babel/runtime": {
75 - "version": "7.24.4",
76 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@babel/runtime/-/runtime-7.24.4.tgz",
77 - "integrity": "sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==",
78 - "dependencies": {
79 - "regenerator-runtime": "^0.14.0"
80 - },
81 - "engines": {
82 - "node": ">=6.9.0"
83 - }
84 - },
85 - "node_modules/@eslint/eslintrc": {
86 - "version": "1.4.1",
87 - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz",
88 - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==",
89 - "dependencies": {
90 - "ajv": "^6.12.4",
91 - "debug": "^4.3.2",
92 - "espree": "^9.4.0",
93 - "globals": "^13.19.0",
94 - "ignore": "^5.2.0",
95 - "import-fresh": "^3.2.1",
96 - "js-yaml": "^4.1.0",
97 - "minimatch": "^3.1.2",
98 - "strip-json-comments": "^3.1.1"
99 - },
100 - "engines": {
101 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
102 - },
103 - "funding": {
104 - "url": "https://opencollective.com/eslint"
105 - }
106 - },
107 - "node_modules/@floating-ui/core": {
108 - "version": "1.6.0",
109 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@floating-ui/core/-/core-1.6.0.tgz",
110 - "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==",
111 - "dependencies": {
112 - "@floating-ui/utils": "^0.2.1"
113 - }
114 - },
115 - "node_modules/@floating-ui/dom": {
116 - "version": "1.6.3",
117 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@floating-ui/dom/-/dom-1.6.3.tgz",
118 - "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==",
119 - "dependencies": {
120 - "@floating-ui/core": "^1.0.0",
121 - "@floating-ui/utils": "^0.2.0"
122 - }
123 - },
124 - "node_modules/@floating-ui/react-dom": {
125 - "version": "2.0.8",
126 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@floating-ui/react-dom/-/react-dom-2.0.8.tgz",
127 - "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==",
128 - "dependencies": {
129 - "@floating-ui/dom": "^1.6.1"
130 - },
131 - "peerDependencies": {
132 - "react": ">=16.8.0",
133 - "react-dom": ">=16.8.0"
134 - }
135 - },
136 - "node_modules/@floating-ui/utils": {
137 - "version": "0.2.1",
138 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@floating-ui/utils/-/utils-0.2.1.tgz",
139 - "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q=="
140 - },
141 - "node_modules/@heroicons/react": {
142 - "version": "1.0.6",
143 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@heroicons/react/-/react-1.0.6.tgz",
144 - "integrity": "sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==",
145 - "peerDependencies": {
146 - "react": ">= 16"
147 - }
148 - },
149 - "node_modules/@humanwhocodes/config-array": {
150 - "version": "0.11.8",
151 - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
152 - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
153 - "dependencies": {
154 - "@humanwhocodes/object-schema": "^1.2.1",
155 - "debug": "^4.1.1",
156 - "minimatch": "^3.0.5"
157 - },
158 - "engines": {
159 - "node": ">=10.10.0"
160 - }
161 - },
162 - "node_modules/@humanwhocodes/module-importer": {
163 - "version": "1.0.1",
164 - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
165 - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
166 - "engines": {
167 - "node": ">=12.22"
168 - },
169 - "funding": {
170 - "type": "github",
171 - "url": "https://github.com/sponsors/nzakas"
172 - }
173 - },
174 - "node_modules/@humanwhocodes/object-schema": {
175 - "version": "1.2.1",
176 - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
177 - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
178 - },
179 - "node_modules/@isaacs/cliui": {
180 - "version": "8.0.2",
181 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@isaacs/cliui/-/cliui-8.0.2.tgz",
182 - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
183 - "dependencies": {
184 - "string-width": "^5.1.2",
185 - "string-width-cjs": "npm:string-width@^4.2.0",
186 - "strip-ansi": "^7.0.1",
187 - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
188 - "wrap-ansi": "^8.1.0",
189 - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
190 - },
191 - "engines": {
192 - "node": ">=12"
193 - }
194 - },
195 - "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
196 - "version": "6.0.1",
197 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/ansi-regex/-/ansi-regex-6.0.1.tgz",
198 - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
199 - "engines": {
200 - "node": ">=12"
201 - }
202 - },
203 - "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
204 - "version": "7.1.0",
205 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/strip-ansi/-/strip-ansi-7.1.0.tgz",
206 - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
207 - "dependencies": {
208 - "ansi-regex": "^6.0.1"
209 - },
210 - "engines": {
211 - "node": ">=12"
212 - }
213 - },
214 - "node_modules/@jridgewell/gen-mapping": {
215 - "version": "0.3.5",
216 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
217 - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
218 - "dependencies": {
219 - "@jridgewell/set-array": "^1.2.1",
220 - "@jridgewell/sourcemap-codec": "^1.4.10",
221 - "@jridgewell/trace-mapping": "^0.3.24"
222 - },
223 - "engines": {
224 - "node": ">=6.0.0"
225 - }
226 - },
227 - "node_modules/@jridgewell/resolve-uri": {
228 - "version": "3.1.2",
229 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
230 - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
231 - "engines": {
232 - "node": ">=6.0.0"
233 - }
234 - },
235 - "node_modules/@jridgewell/set-array": {
236 - "version": "1.2.1",
237 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@jridgewell/set-array/-/set-array-1.2.1.tgz",
238 - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
239 - "engines": {
240 - "node": ">=6.0.0"
241 - }
242 - },
243 - "node_modules/@jridgewell/sourcemap-codec": {
244 - "version": "1.4.15",
245 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
246 - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
247 - },
248 - "node_modules/@jridgewell/trace-mapping": {
249 - "version": "0.3.25",
250 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
251 - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
252 - "dependencies": {
253 - "@jridgewell/resolve-uri": "^3.1.0",
254 - "@jridgewell/sourcemap-codec": "^1.4.14"
255 - }
256 - },
257 - "node_modules/@next/env": {
258 - "version": "14.1.0",
259 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/env/-/env-14.1.0.tgz",
260 - "integrity": "sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw=="
261 - },
262 - "node_modules/@next/eslint-plugin-next": {
263 - "version": "14.1.0",
264 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz",
265 - "integrity": "sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==",
266 - "dependencies": {
267 - "glob": "10.3.10"
268 - }
269 - },
270 - "node_modules/@next/eslint-plugin-next/node_modules/brace-expansion": {
271 - "version": "2.0.1",
272 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/brace-expansion/-/brace-expansion-2.0.1.tgz",
273 - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
274 - "dependencies": {
275 - "balanced-match": "^1.0.0"
276 - }
277 - },
278 - "node_modules/@next/eslint-plugin-next/node_modules/glob": {
279 - "version": "10.3.10",
280 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/glob/-/glob-10.3.10.tgz",
281 - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
282 - "dependencies": {
283 - "foreground-child": "^3.1.0",
284 - "jackspeak": "^2.3.5",
285 - "minimatch": "^9.0.1",
286 - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
287 - "path-scurry": "^1.10.1"
288 - },
289 - "bin": {
290 - "glob": "dist/esm/bin.mjs"
291 - },
292 - "engines": {
293 - "node": ">=16 || 14 >=14.17"
294 - }
295 - },
296 - "node_modules/@next/eslint-plugin-next/node_modules/minimatch": {
297 - "version": "9.0.4",
298 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/minimatch/-/minimatch-9.0.4.tgz",
299 - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
300 - "dependencies": {
301 - "brace-expansion": "^2.0.1"
302 - },
303 - "engines": {
304 - "node": ">=16 || 14 >=14.17"
305 - }
306 - },
307 - "node_modules/@next/swc-darwin-arm64": {
308 - "version": "14.1.0",
309 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.0.tgz",
310 - "integrity": "sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==",
311 - "cpu": [
312 - "arm64"
313 - ],
314 - "optional": true,
315 - "os": [
316 - "darwin"
317 - ],
318 - "engines": {
319 - "node": ">= 10"
320 - }
321 - },
322 - "node_modules/@next/swc-darwin-x64": {
323 - "version": "14.1.0",
324 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.0.tgz",
325 - "integrity": "sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==",
326 - "cpu": [
327 - "x64"
328 - ],
329 - "optional": true,
330 - "os": [
331 - "darwin"
332 - ],
333 - "engines": {
334 - "node": ">= 10"
335 - }
336 - },
337 - "node_modules/@next/swc-linux-arm64-gnu": {
338 - "version": "14.1.0",
339 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.0.tgz",
340 - "integrity": "sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==",
341 - "cpu": [
342 - "arm64"
343 - ],
344 - "optional": true,
345 - "os": [
346 - "linux"
347 - ],
348 - "engines": {
349 - "node": ">= 10"
350 - }
351 - },
352 - "node_modules/@next/swc-linux-arm64-musl": {
353 - "version": "14.1.0",
354 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.0.tgz",
355 - "integrity": "sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==",
356 - "cpu": [
357 - "arm64"
358 - ],
359 - "optional": true,
360 - "os": [
361 - "linux"
362 - ],
363 - "engines": {
364 - "node": ">= 10"
365 - }
366 - },
367 - "node_modules/@next/swc-linux-x64-gnu": {
368 - "version": "14.1.0",
369 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.0.tgz",
370 - "integrity": "sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==",
371 - "cpu": [
372 - "x64"
373 - ],
374 - "optional": true,
375 - "os": [
376 - "linux"
377 - ],
378 - "engines": {
379 - "node": ">= 10"
380 - }
381 - },
382 - "node_modules/@next/swc-linux-x64-musl": {
383 - "version": "14.1.0",
384 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.0.tgz",
385 - "integrity": "sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==",
386 - "cpu": [
387 - "x64"
388 - ],
389 - "optional": true,
390 - "os": [
391 - "linux"
392 - ],
393 - "engines": {
394 - "node": ">= 10"
395 - }
396 - },
397 - "node_modules/@next/swc-win32-arm64-msvc": {
398 - "version": "14.1.0",
399 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.0.tgz",
400 - "integrity": "sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==",
401 - "cpu": [
402 - "arm64"
403 - ],
404 - "optional": true,
405 - "os": [
406 - "win32"
407 - ],
408 - "engines": {
409 - "node": ">= 10"
410 - }
411 - },
412 - "node_modules/@next/swc-win32-ia32-msvc": {
413 - "version": "14.1.0",
414 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.0.tgz",
415 - "integrity": "sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==",
416 - "cpu": [
417 - "ia32"
418 - ],
419 - "optional": true,
420 - "os": [
421 - "win32"
422 - ],
423 - "engines": {
424 - "node": ">= 10"
425 - }
426 - },
427 - "node_modules/@next/swc-win32-x64-msvc": {
428 - "version": "14.1.0",
429 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.0.tgz",
430 - "integrity": "sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==",
431 - "cpu": [
432 - "x64"
433 - ],
434 - "optional": true,
435 - "os": [
436 - "win32"
437 - ],
438 - "engines": {
439 - "node": ">= 10"
440 - }
441 - },
442 - "node_modules/@nodelib/fs.scandir": {
443 - "version": "2.1.5",
444 - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
445 - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
446 - "dependencies": {
447 - "@nodelib/fs.stat": "2.0.5",
448 - "run-parallel": "^1.1.9"
449 - },
450 - "engines": {
451 - "node": ">= 8"
452 - }
453 - },
454 - "node_modules/@nodelib/fs.stat": {
455 - "version": "2.0.5",
456 - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
457 - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
458 - "engines": {
459 - "node": ">= 8"
460 - }
461 - },
462 - "node_modules/@nodelib/fs.walk": {
463 - "version": "1.2.8",
464 - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
465 - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
466 - "dependencies": {
467 - "@nodelib/fs.scandir": "2.1.5",
468 - "fastq": "^1.6.0"
469 - },
470 - "engines": {
471 - "node": ">= 8"
472 - }
473 - },
474 - "node_modules/@pkgjs/parseargs": {
475 - "version": "0.11.0",
476 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
477 - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
478 - "optional": true,
479 - "engines": {
480 - "node": ">=14"
481 - }
482 - },
483 - "node_modules/@pkgr/utils": {
484 - "version": "2.3.1",
485 - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz",
486 - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==",
487 - "dependencies": {
488 - "cross-spawn": "^7.0.3",
489 - "is-glob": "^4.0.3",
490 - "open": "^8.4.0",
491 - "picocolors": "^1.0.0",
492 - "tiny-glob": "^0.2.9",
493 - "tslib": "^2.4.0"
494 - },
495 - "engines": {
496 - "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
497 - },
498 - "funding": {
499 - "url": "https://opencollective.com/unts"
500 - }
501 - },
502 - "node_modules/@radix-ui/primitive": {
503 - "version": "1.0.1",
504 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/primitive/-/primitive-1.0.1.tgz",
505 - "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==",
506 - "dependencies": {
507 - "@babel/runtime": "^7.13.10"
508 - }
509 - },
510 - "node_modules/@radix-ui/react-arrow": {
511 - "version": "1.0.3",
512 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz",
513 - "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==",
514 - "dependencies": {
515 - "@babel/runtime": "^7.13.10",
516 - "@radix-ui/react-primitive": "1.0.3"
517 - },
518 - "peerDependencies": {
519 - "@types/react": "*",
520 - "@types/react-dom": "*",
521 - "react": "^16.8 || ^17.0 || ^18.0",
522 - "react-dom": "^16.8 || ^17.0 || ^18.0"
523 - },
524 - "peerDependenciesMeta": {
525 - "@types/react": {
526 - "optional": true
527 - },
528 - "@types/react-dom": {
529 - "optional": true
530 - }
531 - }
532 - },
533 - "node_modules/@radix-ui/react-compose-refs": {
534 - "version": "1.0.1",
535 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz",
536 - "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==",
537 - "dependencies": {
538 - "@babel/runtime": "^7.13.10"
539 - },
540 - "peerDependencies": {
541 - "@types/react": "*",
542 - "react": "^16.8 || ^17.0 || ^18.0"
543 - },
544 - "peerDependenciesMeta": {
545 - "@types/react": {
546 - "optional": true
547 - }
548 - }
549 - },
550 - "node_modules/@radix-ui/react-context": {
551 - "version": "1.0.1",
552 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-context/-/react-context-1.0.1.tgz",
553 - "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==",
554 - "dependencies": {
555 - "@babel/runtime": "^7.13.10"
556 - },
557 - "peerDependencies": {
558 - "@types/react": "*",
559 - "react": "^16.8 || ^17.0 || ^18.0"
560 - },
561 - "peerDependenciesMeta": {
562 - "@types/react": {
563 - "optional": true
564 - }
565 - }
566 - },
567 - "node_modules/@radix-ui/react-dismissable-layer": {
568 - "version": "1.0.5",
569 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz",
570 - "integrity": "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==",
571 - "dependencies": {
572 - "@babel/runtime": "^7.13.10",
573 - "@radix-ui/primitive": "1.0.1",
574 - "@radix-ui/react-compose-refs": "1.0.1",
575 - "@radix-ui/react-primitive": "1.0.3",
576 - "@radix-ui/react-use-callback-ref": "1.0.1",
577 - "@radix-ui/react-use-escape-keydown": "1.0.3"
578 - },
579 - "peerDependencies": {
580 - "@types/react": "*",
581 - "@types/react-dom": "*",
582 - "react": "^16.8 || ^17.0 || ^18.0",
583 - "react-dom": "^16.8 || ^17.0 || ^18.0"
584 - },
585 - "peerDependenciesMeta": {
586 - "@types/react": {
587 - "optional": true
588 - },
589 - "@types/react-dom": {
590 - "optional": true
591 - }
592 - }
593 - },
594 - "node_modules/@radix-ui/react-id": {
595 - "version": "1.0.1",
596 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-id/-/react-id-1.0.1.tgz",
597 - "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==",
598 - "dependencies": {
599 - "@babel/runtime": "^7.13.10",
600 - "@radix-ui/react-use-layout-effect": "1.0.1"
601 - },
602 - "peerDependencies": {
603 - "@types/react": "*",
604 - "react": "^16.8 || ^17.0 || ^18.0"
605 - },
606 - "peerDependenciesMeta": {
607 - "@types/react": {
608 - "optional": true
609 - }
610 - }
611 - },
612 - "node_modules/@radix-ui/react-popper": {
613 - "version": "1.1.3",
614 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-popper/-/react-popper-1.1.3.tgz",
615 - "integrity": "sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==",
616 - "dependencies": {
617 - "@babel/runtime": "^7.13.10",
618 - "@floating-ui/react-dom": "^2.0.0",
619 - "@radix-ui/react-arrow": "1.0.3",
620 - "@radix-ui/react-compose-refs": "1.0.1",
621 - "@radix-ui/react-context": "1.0.1",
622 - "@radix-ui/react-primitive": "1.0.3",
623 - "@radix-ui/react-use-callback-ref": "1.0.1",
624 - "@radix-ui/react-use-layout-effect": "1.0.1",
625 - "@radix-ui/react-use-rect": "1.0.1",
626 - "@radix-ui/react-use-size": "1.0.1",
627 - "@radix-ui/rect": "1.0.1"
628 - },
629 - "peerDependencies": {
630 - "@types/react": "*",
631 - "@types/react-dom": "*",
632 - "react": "^16.8 || ^17.0 || ^18.0",
633 - "react-dom": "^16.8 || ^17.0 || ^18.0"
634 - },
635 - "peerDependenciesMeta": {
636 - "@types/react": {
637 - "optional": true
638 - },
639 - "@types/react-dom": {
640 - "optional": true
641 - }
642 - }
643 - },
644 - "node_modules/@radix-ui/react-portal": {
645 - "version": "1.0.4",
646 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-portal/-/react-portal-1.0.4.tgz",
647 - "integrity": "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==",
648 - "dependencies": {
649 - "@babel/runtime": "^7.13.10",
650 - "@radix-ui/react-primitive": "1.0.3"
651 - },
652 - "peerDependencies": {
653 - "@types/react": "*",
654 - "@types/react-dom": "*",
655 - "react": "^16.8 || ^17.0 || ^18.0",
656 - "react-dom": "^16.8 || ^17.0 || ^18.0"
657 - },
658 - "peerDependenciesMeta": {
659 - "@types/react": {
660 - "optional": true
661 - },
662 - "@types/react-dom": {
663 - "optional": true
664 - }
665 - }
666 - },
667 - "node_modules/@radix-ui/react-presence": {
668 - "version": "1.0.1",
669 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-presence/-/react-presence-1.0.1.tgz",
670 - "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==",
671 - "dependencies": {
672 - "@babel/runtime": "^7.13.10",
673 - "@radix-ui/react-compose-refs": "1.0.1",
674 - "@radix-ui/react-use-layout-effect": "1.0.1"
675 - },
676 - "peerDependencies": {
677 - "@types/react": "*",
678 - "@types/react-dom": "*",
679 - "react": "^16.8 || ^17.0 || ^18.0",
680 - "react-dom": "^16.8 || ^17.0 || ^18.0"
681 - },
682 - "peerDependenciesMeta": {
683 - "@types/react": {
684 - "optional": true
685 - },
686 - "@types/react-dom": {
687 - "optional": true
688 - }
689 - }
690 - },
691 - "node_modules/@radix-ui/react-primitive": {
692 - "version": "1.0.3",
693 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz",
694 - "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==",
695 - "dependencies": {
696 - "@babel/runtime": "^7.13.10",
697 - "@radix-ui/react-slot": "1.0.2"
698 - },
699 - "peerDependencies": {
700 - "@types/react": "*",
701 - "@types/react-dom": "*",
702 - "react": "^16.8 || ^17.0 || ^18.0",
703 - "react-dom": "^16.8 || ^17.0 || ^18.0"
704 - },
705 - "peerDependenciesMeta": {
706 - "@types/react": {
707 - "optional": true
708 - },
709 - "@types/react-dom": {
710 - "optional": true
711 - }
712 - }
713 - },
714 - "node_modules/@radix-ui/react-slot": {
715 - "version": "1.0.2",
716 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-slot/-/react-slot-1.0.2.tgz",
717 - "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==",
718 - "dependencies": {
719 - "@babel/runtime": "^7.13.10",
720 - "@radix-ui/react-compose-refs": "1.0.1"
721 - },
722 - "peerDependencies": {
723 - "@types/react": "*",
724 - "react": "^16.8 || ^17.0 || ^18.0"
725 - },
726 - "peerDependenciesMeta": {
727 - "@types/react": {
728 - "optional": true
729 - }
730 - }
731 - },
732 - "node_modules/@radix-ui/react-tooltip": {
733 - "version": "1.0.7",
734 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-tooltip/-/react-tooltip-1.0.7.tgz",
735 - "integrity": "sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==",
736 - "dependencies": {
737 - "@babel/runtime": "^7.13.10",
738 - "@radix-ui/primitive": "1.0.1",
739 - "@radix-ui/react-compose-refs": "1.0.1",
740 - "@radix-ui/react-context": "1.0.1",
741 - "@radix-ui/react-dismissable-layer": "1.0.5",
742 - "@radix-ui/react-id": "1.0.1",
743 - "@radix-ui/react-popper": "1.1.3",
744 - "@radix-ui/react-portal": "1.0.4",
745 - "@radix-ui/react-presence": "1.0.1",
746 - "@radix-ui/react-primitive": "1.0.3",
747 - "@radix-ui/react-slot": "1.0.2",
748 - "@radix-ui/react-use-controllable-state": "1.0.1",
749 - "@radix-ui/react-visually-hidden": "1.0.3"
750 - },
751 - "peerDependencies": {
752 - "@types/react": "*",
753 - "@types/react-dom": "*",
754 - "react": "^16.8 || ^17.0 || ^18.0",
755 - "react-dom": "^16.8 || ^17.0 || ^18.0"
756 - },
757 - "peerDependenciesMeta": {
758 - "@types/react": {
759 - "optional": true
760 - },
761 - "@types/react-dom": {
762 - "optional": true
763 - }
764 - }
765 - },
766 - "node_modules/@radix-ui/react-use-callback-ref": {
767 - "version": "1.0.1",
768 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz",
769 - "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==",
770 - "dependencies": {
771 - "@babel/runtime": "^7.13.10"
772 - },
773 - "peerDependencies": {
774 - "@types/react": "*",
775 - "react": "^16.8 || ^17.0 || ^18.0"
776 - },
777 - "peerDependenciesMeta": {
778 - "@types/react": {
779 - "optional": true
780 - }
781 - }
782 - },
783 - "node_modules/@radix-ui/react-use-controllable-state": {
784 - "version": "1.0.1",
785 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz",
786 - "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==",
787 - "dependencies": {
788 - "@babel/runtime": "^7.13.10",
789 - "@radix-ui/react-use-callback-ref": "1.0.1"
790 - },
791 - "peerDependencies": {
792 - "@types/react": "*",
793 - "react": "^16.8 || ^17.0 || ^18.0"
794 - },
795 - "peerDependenciesMeta": {
796 - "@types/react": {
797 - "optional": true
798 - }
799 - }
800 - },
801 - "node_modules/@radix-ui/react-use-escape-keydown": {
802 - "version": "1.0.3",
803 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz",
804 - "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==",
805 - "dependencies": {
806 - "@babel/runtime": "^7.13.10",
807 - "@radix-ui/react-use-callback-ref": "1.0.1"
808 - },
809 - "peerDependencies": {
810 - "@types/react": "*",
811 - "react": "^16.8 || ^17.0 || ^18.0"
812 - },
813 - "peerDependenciesMeta": {
814 - "@types/react": {
815 - "optional": true
816 - }
817 - }
818 - },
819 - "node_modules/@radix-ui/react-use-layout-effect": {
820 - "version": "1.0.1",
821 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz",
822 - "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==",
823 - "dependencies": {
824 - "@babel/runtime": "^7.13.10"
825 - },
826 - "peerDependencies": {
827 - "@types/react": "*",
828 - "react": "^16.8 || ^17.0 || ^18.0"
829 - },
830 - "peerDependenciesMeta": {
831 - "@types/react": {
832 - "optional": true
833 - }
834 - }
835 - },
836 - "node_modules/@radix-ui/react-use-rect": {
837 - "version": "1.0.1",
838 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz",
839 - "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==",
840 - "dependencies": {
841 - "@babel/runtime": "^7.13.10",
842 - "@radix-ui/rect": "1.0.1"
843 - },
844 - "peerDependencies": {
845 - "@types/react": "*",
846 - "react": "^16.8 || ^17.0 || ^18.0"
847 - },
848 - "peerDependenciesMeta": {
849 - "@types/react": {
850 - "optional": true
851 - }
852 - }
853 - },
854 - "node_modules/@radix-ui/react-use-size": {
855 - "version": "1.0.1",
856 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz",
857 - "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==",
858 - "dependencies": {
859 - "@babel/runtime": "^7.13.10",
860 - "@radix-ui/react-use-layout-effect": "1.0.1"
861 - },
862 - "peerDependencies": {
863 - "@types/react": "*",
864 - "react": "^16.8 || ^17.0 || ^18.0"
865 - },
866 - "peerDependenciesMeta": {
867 - "@types/react": {
868 - "optional": true
869 - }
870 - }
871 - },
872 - "node_modules/@radix-ui/react-visually-hidden": {
873 - "version": "1.0.3",
874 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz",
875 - "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==",
876 - "dependencies": {
877 - "@babel/runtime": "^7.13.10",
878 - "@radix-ui/react-primitive": "1.0.3"
879 - },
880 - "peerDependencies": {
881 - "@types/react": "*",
882 - "@types/react-dom": "*",
883 - "react": "^16.8 || ^17.0 || ^18.0",
884 - "react-dom": "^16.8 || ^17.0 || ^18.0"
885 - },
886 - "peerDependenciesMeta": {
887 - "@types/react": {
888 - "optional": true
889 - },
890 - "@types/react-dom": {
891 - "optional": true
892 - }
893 - }
894 - },
895 - "node_modules/@radix-ui/rect": {
896 - "version": "1.0.1",
897 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@radix-ui/rect/-/rect-1.0.1.tgz",
898 - "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==",
899 - "dependencies": {
900 - "@babel/runtime": "^7.13.10"
901 - }
902 - },
903 - "node_modules/@rushstack/eslint-patch": {
904 - "version": "1.10.2",
905 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@rushstack/eslint-patch/-/eslint-patch-1.10.2.tgz",
906 - "integrity": "sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw=="
907 - },
908 - "node_modules/@swc/helpers": {
909 - "version": "0.5.2",
910 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@swc/helpers/-/helpers-0.5.2.tgz",
911 - "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==",
912 - "dependencies": {
913 - "tslib": "^2.4.0"
914 - }
915 - },
916 - "node_modules/@tailwindcss/forms": {
917 - "version": "0.5.3",
918 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tailwindcss/forms/-/forms-0.5.3.tgz",
919 - "integrity": "sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==",
920 - "dev": true,
921 - "dependencies": {
922 - "mini-svg-data-uri": "^1.2.3"
923 - },
924 - "peerDependencies": {
925 - "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1"
926 - }
927 - },
928 - "node_modules/@tailwindcss/typography": {
929 - "version": "0.5.9",
930 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tailwindcss/typography/-/typography-0.5.9.tgz",
931 - "integrity": "sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==",
932 - "dev": true,
933 - "dependencies": {
934 - "lodash.castarray": "^4.4.0",
935 - "lodash.isplainobject": "^4.0.6",
936 - "lodash.merge": "^4.6.2",
937 - "postcss-selector-parser": "6.0.10"
938 - },
939 - "peerDependencies": {
940 - "tailwindcss": ">=3.0.0 || insiders"
941 - }
942 - },
943 - "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser": {
944 - "version": "6.0.10",
945 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
946 - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
947 - "dev": true,
948 - "dependencies": {
949 - "cssesc": "^3.0.0",
950 - "util-deprecate": "^1.0.2"
951 - },
952 - "engines": {
953 - "node": ">=4"
954 - }
955 - },
956 - "node_modules/@tauri-apps/api": {
957 - "version": "1.5.3",
958 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/api/-/api-1.5.3.tgz",
959 - "integrity": "sha512-zxnDjHHKjOsrIzZm6nO5Xapb/BxqUq1tc7cGkFXsFkGTsSWgCPH1D8mm0XS9weJY2OaR73I3k3S+b7eSzJDfqA==",
960 - "engines": {
961 - "node": ">= 14.6.0",
962 - "npm": ">= 6.6.0",
963 - "yarn": ">= 1.19.1"
964 - }
965 - },
966 - "node_modules/@tauri-apps/cli": {
967 - "version": "1.5.11",
968 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli/-/cli-1.5.11.tgz",
969 - "integrity": "sha512-B475D7phZrq5sZ3kDABH4g2mEoUIHtnIO+r4ZGAAfsjMbZCwXxR/jlMGTEL+VO3YzjpF7gQe38IzB4vLBbVppw==",
970 - "dev": true,
971 - "bin": {
972 - "tauri": "tauri.js"
973 - },
974 - "engines": {
975 - "node": ">= 10"
976 - },
977 - "optionalDependencies": {
978 - "@tauri-apps/cli-darwin-arm64": "1.5.11",
979 - "@tauri-apps/cli-darwin-x64": "1.5.11",
980 - "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.11",
981 - "@tauri-apps/cli-linux-arm64-gnu": "1.5.11",
982 - "@tauri-apps/cli-linux-arm64-musl": "1.5.11",
983 - "@tauri-apps/cli-linux-x64-gnu": "1.5.11",
984 - "@tauri-apps/cli-linux-x64-musl": "1.5.11",
985 - "@tauri-apps/cli-win32-arm64-msvc": "1.5.11",
986 - "@tauri-apps/cli-win32-ia32-msvc": "1.5.11",
987 - "@tauri-apps/cli-win32-x64-msvc": "1.5.11"
988 - }
989 - },
990 - "node_modules/@tauri-apps/cli-darwin-arm64": {
991 - "version": "1.5.11",
992 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.5.11.tgz",
993 - "integrity": "sha512-2NLSglDb5VfvTbMtmOKWyD+oaL/e8Z/ZZGovHtUFyUSFRabdXc6cZOlcD1BhFvYkHqm+TqGaz5qtPR5UbqDs8A==",
994 - "cpu": [
995 - "arm64"
996 - ],
997 - "dev": true,
998 - "optional": true,
999 - "os": [
1000 - "darwin"
1001 - ],
1002 - "engines": {
1003 - "node": ">= 10"
1004 - }
1005 - },
1006 - "node_modules/@tauri-apps/cli-darwin-x64": {
1007 - "version": "1.5.11",
1008 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.5.11.tgz",
1009 - "integrity": "sha512-/RQllHiJRH2fJOCudtZlaUIjofkHzP3zZgxi71ZUm7Fy80smU5TDfwpwOvB0wSVh0g/ciDjMArCSTo0MRvL+ag==",
1010 - "cpu": [
1011 - "x64"
1012 - ],
1013 - "dev": true,
1014 - "optional": true,
1015 - "os": [
1016 - "darwin"
1017 - ],
1018 - "engines": {
1019 - "node": ">= 10"
1020 - }
1021 - },
1022 - "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
1023 - "version": "1.5.11",
1024 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.5.11.tgz",
1025 - "integrity": "sha512-IlBuBPKmMm+a5LLUEK6a21UGr9ZYd6zKuKLq6IGM4tVweQa8Sf2kP2Nqs74dMGIUrLmMs0vuqdURpykQg+z4NQ==",
1026 - "cpu": [
1027 - "arm"
1028 - ],
1029 - "dev": true,
1030 - "optional": true,
1031 - "os": [
1032 - "linux"
1033 - ],
1034 - "engines": {
1035 - "node": ">= 10"
1036 - }
1037 - },
1038 - "node_modules/@tauri-apps/cli-linux-arm64-gnu": {
1039 - "version": "1.5.11",
1040 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.5.11.tgz",
1041 - "integrity": "sha512-w+k1bNHCU/GbmXshtAhyTwqosThUDmCEFLU4Zkin1vl2fuAtQry2RN7thfcJFepblUGL/J7yh3Q/0+BCjtspKQ==",
1042 - "cpu": [
1043 - "arm64"
1044 - ],
1045 - "dev": true,
1046 - "optional": true,
1047 - "os": [
1048 - "linux"
1049 - ],
1050 - "engines": {
1051 - "node": ">= 10"
1052 - }
1053 - },
1054 - "node_modules/@tauri-apps/cli-linux-arm64-musl": {
1055 - "version": "1.5.11",
1056 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.5.11.tgz",
1057 - "integrity": "sha512-PN6/dl+OfYQ/qrAy4HRAfksJ2AyWQYn2IA/2Wwpaa7SDRz2+hzwTQkvajuvy0sQ5L2WCG7ymFYRYMbpC6Hk9Pg==",
1058 - "cpu": [
1059 - "arm64"
1060 - ],
1061 - "dev": true,
1062 - "optional": true,
1063 - "os": [
1064 - "linux"
1065 - ],
1066 - "engines": {
1067 - "node": ">= 10"
1068 - }
1069 - },
1070 - "node_modules/@tauri-apps/cli-linux-x64-gnu": {
1071 - "version": "1.5.11",
1072 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.5.11.tgz",
1073 - "integrity": "sha512-MTVXLi89Nj7Apcvjezw92m7ZqIDKT5SFKZtVPCg6RoLUBTzko/BQoXYIRWmdoz2pgkHDUHgO2OMJ8oKzzddXbw==",
1074 - "cpu": [
1075 - "x64"
1076 - ],
1077 - "dev": true,
1078 - "optional": true,
1079 - "os": [
1080 - "linux"
1081 - ],
1082 - "engines": {
1083 - "node": ">= 10"
1084 - }
1085 - },
1086 - "node_modules/@tauri-apps/cli-linux-x64-musl": {
1087 - "version": "1.5.11",
1088 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.5.11.tgz",
1089 - "integrity": "sha512-kwzAjqFpz7rvTs7WGZLy/a5nS5t15QKr3E9FG95MNF0exTl3d29YoAUAe1Mn0mOSrTJ9Z+vYYAcI/QdcsGBP+w==",
1090 - "cpu": [
1091 - "x64"
1092 - ],
1093 - "dev": true,
1094 - "optional": true,
1095 - "os": [
1096 - "linux"
1097 - ],
1098 - "engines": {
1099 - "node": ">= 10"
1100 - }
1101 - },
1102 - "node_modules/@tauri-apps/cli-win32-arm64-msvc": {
1103 - "version": "1.5.11",
1104 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-1.5.11.tgz",
1105 - "integrity": "sha512-L+5NZ/rHrSUrMxjj6YpFYCXp6wHnq8c8SfDTBOX8dO8x+5283/vftb4vvuGIsLS4UwUFXFnLt3XQr44n84E67Q==",
1106 - "cpu": [
1107 - "arm64"
1108 - ],
1109 - "dev": true,
1110 - "optional": true,
1111 - "os": [
1112 - "win32"
1113 - ],
1114 - "engines": {
1115 - "node": ">= 10"
1116 - }
1117 - },
1118 - "node_modules/@tauri-apps/cli-win32-ia32-msvc": {
1119 - "version": "1.5.11",
1120 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.5.11.tgz",
1121 - "integrity": "sha512-oVlD9IVewrY0lZzTdb71kNXkjdgMqFq+ohb67YsJb4Rf7o8A9DTlFds1XLCe3joqLMm4M+gvBKD7YnGIdxQ9vA==",
1122 - "cpu": [
1123 - "ia32"
1124 - ],
1125 - "dev": true,
1126 - "optional": true,
1127 - "os": [
1128 - "win32"
1129 - ],
1130 - "engines": {
1131 - "node": ">= 10"
1132 - }
1133 - },
1134 - "node_modules/@tauri-apps/cli-win32-x64-msvc": {
1135 - "version": "1.5.11",
1136 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.5.11.tgz",
1137 - "integrity": "sha512-1CexcqUFCis5ypUIMOKllxUBrna09McbftWENgvVXMfA+SP+yPDPAVb8fIvUcdTIwR/yHJwcIucmTB4anww4vg==",
1138 - "cpu": [
1139 - "x64"
1140 - ],
1141 - "dev": true,
1142 - "optional": true,
1143 - "os": [
1144 - "win32"
1145 - ],
1146 - "engines": {
1147 - "node": ">= 10"
1148 - }
1149 - },
1150 - "node_modules/@types/estree": {
1151 - "version": "1.0.5",
1152 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/estree/-/estree-1.0.5.tgz",
1153 - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
1154 - "peer": true
1155 - },
1156 - "node_modules/@types/json5": {
1157 - "version": "0.0.29",
1158 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/json5/-/json5-0.0.29.tgz",
1159 - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
1160 - },
1161 - "node_modules/@types/node": {
1162 - "version": "18.17.0",
1163 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/node/-/node-18.17.0.tgz",
1164 - "integrity": "sha512-GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg=="
1165 - },
1166 - "node_modules/@types/prop-types": {
1167 - "version": "15.7.5",
1168 - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
1169 - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
1170 - },
1171 - "node_modules/@types/react": {
1172 - "version": "18.2.78",
1173 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/react/-/react-18.2.78.tgz",
1174 - "integrity": "sha512-qOwdPnnitQY4xKlKayt42q5W5UQrSHjgoXNVEtxeqdITJ99k4VXJOP3vt8Rkm9HmgJpH50UNU+rlqfkfWOqp0A==",
1175 - "dependencies": {
1176 - "@types/prop-types": "*",
1177 - "csstype": "^3.0.2"
1178 - }
1179 - },
1180 - "node_modules/@types/react-dom": {
1181 - "version": "18.2.25",
1182 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/react-dom/-/react-dom-18.2.25.tgz",
1183 - "integrity": "sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==",
1184 - "dependencies": {
1185 - "@types/react": "*"
1186 - }
1187 - },
1188 - "node_modules/@typescript-eslint/parser": {
1189 - "version": "5.48.2",
1190 - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.48.2.tgz",
1191 - "integrity": "sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw==",
1192 - "dependencies": {
1193 - "@typescript-eslint/scope-manager": "5.48.2",
1194 - "@typescript-eslint/types": "5.48.2",
1195 - "@typescript-eslint/typescript-estree": "5.48.2",
1196 - "debug": "^4.3.4"
1197 - },
1198 - "engines": {
1199 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1200 - },
1201 - "funding": {
1202 - "type": "opencollective",
1203 - "url": "https://opencollective.com/typescript-eslint"
1204 - },
1205 - "peerDependencies": {
1206 - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
1207 - },
1208 - "peerDependenciesMeta": {
1209 - "typescript": {
1210 - "optional": true
1211 - }
1212 - }
1213 - },
1214 - "node_modules/@typescript-eslint/scope-manager": {
1215 - "version": "5.48.2",
1216 - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz",
1217 - "integrity": "sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==",
1218 - "dependencies": {
1219 - "@typescript-eslint/types": "5.48.2",
1220 - "@typescript-eslint/visitor-keys": "5.48.2"
1221 - },
1222 - "engines": {
1223 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1224 - },
1225 - "funding": {
1226 - "type": "opencollective",
1227 - "url": "https://opencollective.com/typescript-eslint"
1228 - }
1229 - },
1230 - "node_modules/@typescript-eslint/types": {
1231 - "version": "5.48.2",
1232 - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.2.tgz",
1233 - "integrity": "sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==",
1234 - "engines": {
1235 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1236 - },
1237 - "funding": {
1238 - "type": "opencollective",
1239 - "url": "https://opencollective.com/typescript-eslint"
1240 - }
1241 - },
1242 - "node_modules/@typescript-eslint/typescript-estree": {
1243 - "version": "5.48.2",
1244 - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz",
1245 - "integrity": "sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==",
1246 - "dependencies": {
1247 - "@typescript-eslint/types": "5.48.2",
1248 - "@typescript-eslint/visitor-keys": "5.48.2",
1249 - "debug": "^4.3.4",
1250 - "globby": "^11.1.0",
1251 - "is-glob": "^4.0.3",
1252 - "semver": "^7.3.7",
1253 - "tsutils": "^3.21.0"
1254 - },
1255 - "engines": {
1256 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1257 - },
1258 - "funding": {
1259 - "type": "opencollective",
1260 - "url": "https://opencollective.com/typescript-eslint"
1261 - },
1262 - "peerDependenciesMeta": {
1263 - "typescript": {
1264 - "optional": true
1265 - }
1266 - }
1267 - },
1268 - "node_modules/@typescript-eslint/visitor-keys": {
1269 - "version": "5.48.2",
1270 - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz",
1271 - "integrity": "sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==",
1272 - "dependencies": {
1273 - "@typescript-eslint/types": "5.48.2",
1274 - "eslint-visitor-keys": "^3.3.0"
1275 - },
1276 - "engines": {
1277 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1278 - },
1279 - "funding": {
1280 - "type": "opencollective",
1281 - "url": "https://opencollective.com/typescript-eslint"
1282 - }
1283 - },
1284 - "node_modules/@vue/compiler-core": {
1285 - "version": "3.4.23",
1286 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-core/-/compiler-core-3.4.23.tgz",
1287 - "integrity": "sha512-HAFmuVEwNqNdmk+w4VCQ2pkLk1Vw4XYiiyxEp3z/xvl14aLTUBw2OfVH3vBcx+FtGsynQLkkhK410Nah1N2yyQ==",
1288 - "peer": true,
1289 - "dependencies": {
1290 - "@babel/parser": "^7.24.1",
1291 - "@vue/shared": "3.4.23",
1292 - "entities": "^4.5.0",
1293 - "estree-walker": "^2.0.2",
1294 - "source-map-js": "^1.2.0"
1295 - }
1296 - },
1297 - "node_modules/@vue/compiler-core/node_modules/estree-walker": {
1298 - "version": "2.0.2",
1299 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/estree-walker/-/estree-walker-2.0.2.tgz",
1300 - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1301 - "peer": true
1302 - },
1303 - "node_modules/@vue/compiler-dom": {
1304 - "version": "3.4.23",
1305 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-dom/-/compiler-dom-3.4.23.tgz",
1306 - "integrity": "sha512-t0b9WSTnCRrzsBGrDd1LNR5HGzYTr7LX3z6nNBG+KGvZLqrT0mY6NsMzOqlVMBKKXKVuusbbB5aOOFgTY+senw==",
1307 - "peer": true,
1308 - "dependencies": {
1309 - "@vue/compiler-core": "3.4.23",
1310 - "@vue/shared": "3.4.23"
1311 - }
1312 - },
1313 - "node_modules/@vue/compiler-sfc": {
1314 - "version": "3.4.23",
1315 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-sfc/-/compiler-sfc-3.4.23.tgz",
1316 - "integrity": "sha512-fSDTKTfzaRX1kNAUiaj8JB4AokikzStWgHooMhaxyjZerw624L+IAP/fvI4ZwMpwIh8f08PVzEnu4rg8/Npssw==",
1317 - "peer": true,
1318 - "dependencies": {
1319 - "@babel/parser": "^7.24.1",
1320 - "@vue/compiler-core": "3.4.23",
1321 - "@vue/compiler-dom": "3.4.23",
1322 - "@vue/compiler-ssr": "3.4.23",
1323 - "@vue/shared": "3.4.23",
1324 - "estree-walker": "^2.0.2",
1325 - "magic-string": "^0.30.8",
1326 - "postcss": "^8.4.38",
1327 - "source-map-js": "^1.2.0"
1328 - }
1329 - },
1330 - "node_modules/@vue/compiler-sfc/node_modules/estree-walker": {
1331 - "version": "2.0.2",
1332 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/estree-walker/-/estree-walker-2.0.2.tgz",
1333 - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1334 - "peer": true
1335 - },
1336 - "node_modules/@vue/compiler-ssr": {
1337 - "version": "3.4.23",
1338 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-ssr/-/compiler-ssr-3.4.23.tgz",
1339 - "integrity": "sha512-hb6Uj2cYs+tfqz71Wj6h3E5t6OKvb4MVcM2Nl5i/z1nv1gjEhw+zYaNOV+Xwn+SSN/VZM0DgANw5TuJfxfezPg==",
1340 - "peer": true,
1341 - "dependencies": {
1342 - "@vue/compiler-dom": "3.4.23",
1343 - "@vue/shared": "3.4.23"
1344 - }
1345 - },
1346 - "node_modules/@vue/reactivity": {
1347 - "version": "3.4.23",
1348 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/reactivity/-/reactivity-3.4.23.tgz",
1349 - "integrity": "sha512-GlXR9PL+23fQ3IqnbSQ8OQKLodjqCyoCrmdLKZk3BP7jN6prWheAfU7a3mrltewTkoBm+N7qMEb372VHIkQRMQ==",
1350 - "peer": true,
1351 - "dependencies": {
1352 - "@vue/shared": "3.4.23"
1353 - }
1354 - },
1355 - "node_modules/@vue/runtime-core": {
1356 - "version": "3.4.23",
1357 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/runtime-core/-/runtime-core-3.4.23.tgz",
1358 - "integrity": "sha512-FeQ9MZEXoFzFkFiw9MQQ/FWs3srvrP+SjDKSeRIiQHIhtkzoj0X4rWQlRNHbGuSwLra6pMyjAttwixNMjc/xLw==",
1359 - "peer": true,
1360 - "dependencies": {
1361 - "@vue/reactivity": "3.4.23",
1362 - "@vue/shared": "3.4.23"
1363 - }
1364 - },
1365 - "node_modules/@vue/runtime-dom": {
1366 - "version": "3.4.23",
1367 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/runtime-dom/-/runtime-dom-3.4.23.tgz",
1368 - "integrity": "sha512-RXJFwwykZWBkMiTPSLEWU3kgVLNAfActBfWFlZd0y79FTUxexogd0PLG4HH2LfOktjRxV47Nulygh0JFXe5f9A==",
1369 - "peer": true,
1370 - "dependencies": {
1371 - "@vue/runtime-core": "3.4.23",
1372 - "@vue/shared": "3.4.23",
1373 - "csstype": "^3.1.3"
1374 - }
1375 - },
1376 - "node_modules/@vue/server-renderer": {
1377 - "version": "3.4.23",
1378 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/server-renderer/-/server-renderer-3.4.23.tgz",
1379 - "integrity": "sha512-LDwGHtnIzvKFNS8dPJ1SSU5Gvm36p2ck8wCZc52fc3k/IfjKcwCyrWEf0Yag/2wTFUBXrqizfhK9c/mC367dXQ==",
1380 - "peer": true,
1381 - "dependencies": {
1382 - "@vue/compiler-ssr": "3.4.23",
1383 - "@vue/shared": "3.4.23"
1384 - },
1385 - "peerDependencies": {
1386 - "vue": "3.4.23"
1387 - }
1388 - },
1389 - "node_modules/@vue/shared": {
1390 - "version": "3.4.23",
1391 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/shared/-/shared-3.4.23.tgz",
1392 - "integrity": "sha512-wBQ0gvf+SMwsCQOyusNw/GoXPV47WGd1xB5A1Pgzy0sQ3Bi5r5xm3n+92y3gCnB3MWqnRDdvfkRGxhKtbBRNgg==",
1393 - "peer": true
1394 - },
1395 - "node_modules/acorn": {
1396 - "version": "8.11.3",
1397 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/acorn/-/acorn-8.11.3.tgz",
1398 - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
1399 - "bin": {
1400 - "acorn": "bin/acorn"
1401 - },
1402 - "engines": {
1403 - "node": ">=0.4.0"
1404 - }
1405 - },
1406 - "node_modules/acorn-jsx": {
1407 - "version": "5.3.2",
1408 - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1409 - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1410 - "peerDependencies": {
1411 - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1412 - }
1413 - },
1414 - "node_modules/ai": {
1415 - "version": "2.2.37",
1416 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/ai/-/ai-2.2.37.tgz",
1417 - "integrity": "sha512-JIYm5N1muGVqBqWnvkt29FmXhESoO5TcDxw74OE41SsM+uIou6NPDDs0XWb/ABcd1gmp6k5zym64KWMPM2xm0A==",
1418 - "dependencies": {
1419 - "eventsource-parser": "1.0.0",
1420 - "nanoid": "3.3.6",
1421 - "solid-swr-store": "0.10.7",
1422 - "sswr": "2.0.0",
1423 - "swr": "2.2.0",
1424 - "swr-store": "0.10.6",
1425 - "swrv": "1.0.4"
1426 - },
1427 - "engines": {
1428 - "node": ">=14.6"
1429 - },
1430 - "peerDependencies": {
1431 - "react": "^18.2.0",
1432 - "solid-js": "^1.7.7",
1433 - "svelte": "^3.0.0 || ^4.0.0",
1434 - "vue": "^3.3.4"
1435 - },
1436 - "peerDependenciesMeta": {
1437 - "react": {
1438 - "optional": true
1439 - },
1440 - "solid-js": {
1441 - "optional": true
1442 - },
1443 - "svelte": {
1444 - "optional": true
1445 - },
1446 - "vue": {
1447 - "optional": true
1448 - }
1449 - }
1450 - },
1451 - "node_modules/ai/node_modules/nanoid": {
1452 - "version": "3.3.6",
1453 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/nanoid/-/nanoid-3.3.6.tgz",
1454 - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
1455 - "bin": {
1456 - "nanoid": "bin/nanoid.cjs"
1457 - },
1458 - "engines": {
1459 - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1460 - }
1461 - },
1462 - "node_modules/ajv": {
1463 - "version": "6.12.6",
1464 - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1465 - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1466 - "dependencies": {
1467 - "fast-deep-equal": "^3.1.1",
1468 - "fast-json-stable-stringify": "^2.0.0",
1469 - "json-schema-traverse": "^0.4.1",
1470 - "uri-js": "^4.2.2"
1471 - },
1472 - "funding": {
1473 - "type": "github",
1474 - "url": "https://github.com/sponsors/epoberezkin"
1475 - }
1476 - },
1477 - "node_modules/ansi-regex": {
1478 - "version": "5.0.1",
1479 - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1480 - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1481 - "engines": {
1482 - "node": ">=8"
1483 - }
1484 - },
1485 - "node_modules/ansi-styles": {
1486 - "version": "4.3.0",
1487 - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1488 - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1489 - "dependencies": {
1490 - "color-convert": "^2.0.1"
1491 - },
1492 - "engines": {
1493 - "node": ">=8"
1494 - },
1495 - "funding": {
1496 - "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1497 - }
1498 - },
1499 - "node_modules/any-promise": {
1500 - "version": "1.3.0",
1501 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/any-promise/-/any-promise-1.3.0.tgz",
1502 - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
1503 - "dev": true
1504 - },
1505 - "node_modules/anymatch": {
1506 - "version": "3.1.3",
1507 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/anymatch/-/anymatch-3.1.3.tgz",
1508 - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1509 - "dev": true,
1510 - "dependencies": {
1511 - "normalize-path": "^3.0.0",
1512 - "picomatch": "^2.0.4"
1513 - },
1514 - "engines": {
1515 - "node": ">= 8"
1516 - }
1517 - },
1518 - "node_modules/arg": {
1519 - "version": "5.0.2",
1520 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/arg/-/arg-5.0.2.tgz",
1521 - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
1522 - "dev": true
1523 - },
1524 - "node_modules/argparse": {
1525 - "version": "2.0.1",
1526 - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1527 - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
1528 - },
1529 - "node_modules/aria-query": {
1530 - "version": "5.3.0",
1531 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/aria-query/-/aria-query-5.3.0.tgz",
1532 - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==",
1533 - "dependencies": {
1534 - "dequal": "^2.0.3"
1535 - }
1536 - },
1537 - "node_modules/array-buffer-byte-length": {
1538 - "version": "1.0.1",
1539 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz",
1540 - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==",
1541 - "dependencies": {
1542 - "call-bind": "^1.0.5",
1543 - "is-array-buffer": "^3.0.4"
1544 - },
1545 - "engines": {
1546 - "node": ">= 0.4"
1547 - }
1548 - },
1549 - "node_modules/array-includes": {
1550 - "version": "3.1.8",
1551 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array-includes/-/array-includes-3.1.8.tgz",
1552 - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
1553 - "dependencies": {
1554 - "call-bind": "^1.0.7",
1555 - "define-properties": "^1.2.1",
1556 - "es-abstract": "^1.23.2",
1557 - "es-object-atoms": "^1.0.0",
1558 - "get-intrinsic": "^1.2.4",
1559 - "is-string": "^1.0.7"
1560 - },
1561 - "engines": {
1562 - "node": ">= 0.4"
1563 - }
1564 - },
1565 - "node_modules/array-union": {
1566 - "version": "2.1.0",
1567 - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
1568 - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
1569 - "engines": {
1570 - "node": ">=8"
1571 - }
1572 - },
1573 - "node_modules/array.prototype.findlast": {
1574 - "version": "1.2.5",
1575 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
1576 - "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
1577 - "dependencies": {
1578 - "call-bind": "^1.0.7",
1579 - "define-properties": "^1.2.1",
1580 - "es-abstract": "^1.23.2",
1581 - "es-errors": "^1.3.0",
1582 - "es-object-atoms": "^1.0.0",
1583 - "es-shim-unscopables": "^1.0.2"
1584 - },
1585 - "engines": {
1586 - "node": ">= 0.4"
1587 - }
1588 - },
1589 - "node_modules/array.prototype.findlastindex": {
1590 - "version": "1.2.5",
1591 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz",
1592 - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
1593 - "dependencies": {
1594 - "call-bind": "^1.0.7",
1595 - "define-properties": "^1.2.1",
1596 - "es-abstract": "^1.23.2",
1597 - "es-errors": "^1.3.0",
1598 - "es-object-atoms": "^1.0.0",
1599 - "es-shim-unscopables": "^1.0.2"
1600 - },
1601 - "engines": {
1602 - "node": ">= 0.4"
1603 - }
1604 - },
1605 - "node_modules/array.prototype.flat": {
1606 - "version": "1.3.2",
1607 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz",
1608 - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==",
1609 - "dependencies": {
1610 - "call-bind": "^1.0.2",
1611 - "define-properties": "^1.2.0",
1612 - "es-abstract": "^1.22.1",
1613 - "es-shim-unscopables": "^1.0.0"
1614 - },
1615 - "engines": {
1616 - "node": ">= 0.4"
1617 - }
1618 - },
1619 - "node_modules/array.prototype.flatmap": {
1620 - "version": "1.3.2",
1621 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz",
1622 - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==",
1623 - "dependencies": {
1624 - "call-bind": "^1.0.2",
1625 - "define-properties": "^1.2.0",
1626 - "es-abstract": "^1.22.1",
1627 - "es-shim-unscopables": "^1.0.0"
1628 - },
1629 - "engines": {
1630 - "node": ">= 0.4"
1631 - }
1632 - },
1633 - "node_modules/array.prototype.toreversed": {
1634 - "version": "1.1.2",
1635 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz",
1636 - "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==",
1637 - "dependencies": {
1638 - "call-bind": "^1.0.2",
1639 - "define-properties": "^1.2.0",
1640 - "es-abstract": "^1.22.1",
1641 - "es-shim-unscopables": "^1.0.0"
1642 - }
1643 - },
1644 - "node_modules/array.prototype.tosorted": {
1645 - "version": "1.1.3",
1646 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz",
1647 - "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==",
1648 - "dependencies": {
1649 - "call-bind": "^1.0.5",
1650 - "define-properties": "^1.2.1",
1651 - "es-abstract": "^1.22.3",
1652 - "es-errors": "^1.1.0",
1653 - "es-shim-unscopables": "^1.0.2"
1654 - }
1655 - },
1656 - "node_modules/arraybuffer.prototype.slice": {
1657 - "version": "1.0.3",
1658 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz",
1659 - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==",
1660 - "dependencies": {
1661 - "array-buffer-byte-length": "^1.0.1",
1662 - "call-bind": "^1.0.5",
1663 - "define-properties": "^1.2.1",
1664 - "es-abstract": "^1.22.3",
1665 - "es-errors": "^1.2.1",
1666 - "get-intrinsic": "^1.2.3",
1667 - "is-array-buffer": "^3.0.4",
1668 - "is-shared-array-buffer": "^1.0.2"
1669 - },
1670 - "engines": {
1671 - "node": ">= 0.4"
1672 - }
1673 - },
1674 - "node_modules/ast-types-flow": {
1675 - "version": "0.0.7",
1676 - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
1677 - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
1678 - },
1679 - "node_modules/autoprefixer": {
1680 - "version": "10.4.19",
1681 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/autoprefixer/-/autoprefixer-10.4.19.tgz",
1682 - "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==",
1683 - "dev": true,
1684 - "dependencies": {
1685 - "browserslist": "^4.23.0",
1686 - "caniuse-lite": "^1.0.30001599",
1687 - "fraction.js": "^4.3.7",
1688 - "normalize-range": "^0.1.2",
1689 - "picocolors": "^1.0.0",
1690 - "postcss-value-parser": "^4.2.0"
1691 - },
1692 - "bin": {
1693 - "autoprefixer": "bin/autoprefixer"
1694 - },
1695 - "engines": {
1696 - "node": "^10 || ^12 || >=14"
1697 - },
1698 - "peerDependencies": {
1699 - "postcss": "^8.1.0"
1700 - }
1701 - },
1702 - "node_modules/available-typed-arrays": {
1703 - "version": "1.0.7",
1704 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
1705 - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
1706 - "dependencies": {
1707 - "possible-typed-array-names": "^1.0.0"
1708 - },
1709 - "engines": {
1710 - "node": ">= 0.4"
1711 - }
1712 - },
1713 - "node_modules/axe-core": {
1714 - "version": "4.6.2",
1715 - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.2.tgz",
1716 - "integrity": "sha512-b1WlTV8+XKLj9gZy2DZXgQiyDp9xkkoe2a6U6UbYccScq2wgH/YwCeI2/Jq2mgo0HzQxqJOjWZBLeA/mqsk5Mg==",
1717 - "engines": {
1718 - "node": ">=4"
1719 - }
1720 - },
1721 - "node_modules/axobject-query": {
1722 - "version": "3.1.1",
1723 - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
1724 - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
1725 - "dependencies": {
1726 - "deep-equal": "^2.0.5"
1727 - }
1728 - },
1729 - "node_modules/balanced-match": {
1730 - "version": "1.0.2",
1731 - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1732 - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
1733 - },
1734 - "node_modules/binary-extensions": {
1735 - "version": "2.3.0",
1736 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/binary-extensions/-/binary-extensions-2.3.0.tgz",
1737 - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
1738 - "dev": true,
1739 - "engines": {
1740 - "node": ">=8"
1741 - }
1742 - },
1743 - "node_modules/brace-expansion": {
1744 - "version": "1.1.11",
1745 - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1746 - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1747 - "dependencies": {
1748 - "balanced-match": "^1.0.0",
1749 - "concat-map": "0.0.1"
1750 - }
1751 - },
1752 - "node_modules/braces": {
1753 - "version": "3.0.2",
1754 - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
1755 - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
1756 - "dependencies": {
1757 - "fill-range": "^7.0.1"
1758 - },
1759 - "engines": {
1760 - "node": ">=8"
1761 - }
1762 - },
1763 - "node_modules/browserslist": {
1764 - "version": "4.23.0",
1765 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/browserslist/-/browserslist-4.23.0.tgz",
1766 - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==",
1767 - "dev": true,
1768 - "dependencies": {
1769 - "caniuse-lite": "^1.0.30001587",
1770 - "electron-to-chromium": "^1.4.668",
1771 - "node-releases": "^2.0.14",
1772 - "update-browserslist-db": "^1.0.13"
1773 - },
1774 - "bin": {
1775 - "browserslist": "cli.js"
1776 - },
1777 - "engines": {
1778 - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1779 - }
1780 - },
1781 - "node_modules/busboy": {
1782 - "version": "1.6.0",
1783 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/busboy/-/busboy-1.6.0.tgz",
1784 - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
1785 - "dependencies": {
1786 - "streamsearch": "^1.1.0"
1787 - },
1788 - "engines": {
1789 - "node": ">=10.16.0"
1790 - }
1791 - },
1792 - "node_modules/call-bind": {
1793 - "version": "1.0.7",
1794 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/call-bind/-/call-bind-1.0.7.tgz",
1795 - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
1796 - "dependencies": {
1797 - "es-define-property": "^1.0.0",
1798 - "es-errors": "^1.3.0",
1799 - "function-bind": "^1.1.2",
1800 - "get-intrinsic": "^1.2.4",
1801 - "set-function-length": "^1.2.1"
1802 - },
1803 - "engines": {
1804 - "node": ">= 0.4"
1805 - }
1806 - },
1807 - "node_modules/callsites": {
1808 - "version": "3.1.0",
1809 - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1810 - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1811 - "engines": {
1812 - "node": ">=6"
1813 - }
1814 - },
1815 - "node_modules/camelcase-css": {
1816 - "version": "2.0.1",
1817 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/camelcase-css/-/camelcase-css-2.0.1.tgz",
1818 - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
1819 - "dev": true,
1820 - "engines": {
1821 - "node": ">= 6"
1822 - }
1823 - },
1824 - "node_modules/caniuse-lite": {
1825 - "version": "1.0.30001609",
1826 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/caniuse-lite/-/caniuse-lite-1.0.30001609.tgz",
1827 - "integrity": "sha512-JFPQs34lHKx1B5t1EpQpWH4c+29zIyn/haGsbpfq3suuV9v56enjFt23zqijxGTMwy1p/4H2tjnQMY+p1WoAyA=="
1828 - },
1829 - "node_modules/chalk": {
1830 - "version": "4.1.2",
1831 - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1832 - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1833 - "dependencies": {
1834 - "ansi-styles": "^4.1.0",
1835 - "supports-color": "^7.1.0"
1836 - },
1837 - "engines": {
1838 - "node": ">=10"
1839 - },
1840 - "funding": {
1841 - "url": "https://github.com/chalk/chalk?sponsor=1"
1842 - }
1843 - },
1844 - "node_modules/chokidar": {
1845 - "version": "3.6.0",
1846 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/chokidar/-/chokidar-3.6.0.tgz",
1847 - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
1848 - "dev": true,
1849 - "dependencies": {
1850 - "anymatch": "~3.1.2",
1851 - "braces": "~3.0.2",
1852 - "glob-parent": "~5.1.2",
1853 - "is-binary-path": "~2.1.0",
1854 - "is-glob": "~4.0.1",
1855 - "normalize-path": "~3.0.0",
1856 - "readdirp": "~3.6.0"
1857 - },
1858 - "engines": {
1859 - "node": ">= 8.10.0"
1860 - },
1861 - "optionalDependencies": {
1862 - "fsevents": "~2.3.2"
1863 - }
1864 - },
1865 - "node_modules/chokidar/node_modules/glob-parent": {
1866 - "version": "5.1.2",
1867 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/glob-parent/-/glob-parent-5.1.2.tgz",
1868 - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1869 - "dev": true,
1870 - "dependencies": {
1871 - "is-glob": "^4.0.1"
1872 - },
1873 - "engines": {
1874 - "node": ">= 6"
1875 - }
1876 - },
1877 - "node_modules/class-variance-authority": {
1878 - "version": "0.7.0",
1879 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/class-variance-authority/-/class-variance-authority-0.7.0.tgz",
1880 - "integrity": "sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==",
1881 - "dependencies": {
1882 - "clsx": "2.0.0"
1883 - }
1884 - },
1885 - "node_modules/class-variance-authority/node_modules/clsx": {
1886 - "version": "2.0.0",
1887 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/clsx/-/clsx-2.0.0.tgz",
1888 - "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==",
1889 - "engines": {
1890 - "node": ">=6"
1891 - }
1892 - },
1893 - "node_modules/client-only": {
1894 - "version": "0.0.1",
1895 - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1896 - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
1897 - },
1898 - "node_modules/clsx": {
1899 - "version": "1.2.1",
1900 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/clsx/-/clsx-1.2.1.tgz",
1901 - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
1902 - "engines": {
1903 - "node": ">=6"
1904 - }
1905 - },
1906 - "node_modules/code-red": {
1907 - "version": "1.0.4",
1908 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/code-red/-/code-red-1.0.4.tgz",
1909 - "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==",
1910 - "peer": true,
1911 - "dependencies": {
1912 - "@jridgewell/sourcemap-codec": "^1.4.15",
1913 - "@types/estree": "^1.0.1",
1914 - "acorn": "^8.10.0",
1915 - "estree-walker": "^3.0.3",
1916 - "periscopic": "^3.1.0"
1917 - }
1918 - },
1919 - "node_modules/color-convert": {
1920 - "version": "2.0.1",
1921 - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1922 - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1923 - "dependencies": {
1924 - "color-name": "~1.1.4"
1925 - },
1926 - "engines": {
1927 - "node": ">=7.0.0"
1928 - }
1929 - },
1930 - "node_modules/color-name": {
1931 - "version": "1.1.4",
1932 - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1933 - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
1934 - },
1935 - "node_modules/commander": {
1936 - "version": "4.1.1",
1937 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/commander/-/commander-4.1.1.tgz",
1938 - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
1939 - "dev": true,
1940 - "engines": {
1941 - "node": ">= 6"
1942 - }
1943 - },
1944 - "node_modules/concat-map": {
1945 - "version": "0.0.1",
1946 - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1947 - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
1948 - },
1949 - "node_modules/cross-spawn": {
1950 - "version": "7.0.3",
1951 - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1952 - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1953 - "dependencies": {
1954 - "path-key": "^3.1.0",
1955 - "shebang-command": "^2.0.0",
1956 - "which": "^2.0.1"
1957 - },
1958 - "engines": {
1959 - "node": ">= 8"
1960 - }
1961 - },
1962 - "node_modules/css-tree": {
1963 - "version": "2.3.1",
1964 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/css-tree/-/css-tree-2.3.1.tgz",
1965 - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
1966 - "peer": true,
1967 - "dependencies": {
1968 - "mdn-data": "2.0.30",
1969 - "source-map-js": "^1.0.1"
1970 - },
1971 - "engines": {
1972 - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
1973 - }
1974 - },
1975 - "node_modules/cssesc": {
1976 - "version": "3.0.0",
1977 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/cssesc/-/cssesc-3.0.0.tgz",
1978 - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1979 - "dev": true,
1980 - "bin": {
1981 - "cssesc": "bin/cssesc"
1982 - },
1983 - "engines": {
1984 - "node": ">=4"
1985 - }
1986 - },
1987 - "node_modules/csstype": {
1988 - "version": "3.1.3",
1989 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/csstype/-/csstype-3.1.3.tgz",
1990 - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
1991 - },
1992 - "node_modules/damerau-levenshtein": {
1993 - "version": "1.0.8",
1994 - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
1995 - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
1996 - },
1997 - "node_modules/data-view-buffer": {
1998 - "version": "1.0.1",
1999 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/data-view-buffer/-/data-view-buffer-1.0.1.tgz",
2000 - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==",
2001 - "dependencies": {
2002 - "call-bind": "^1.0.6",
2003 - "es-errors": "^1.3.0",
2004 - "is-data-view": "^1.0.1"
2005 - },
2006 - "engines": {
2007 - "node": ">= 0.4"
2008 - }
2009 - },
2010 - "node_modules/data-view-byte-length": {
2011 - "version": "1.0.1",
2012 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz",
2013 - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==",
2014 - "dependencies": {
2015 - "call-bind": "^1.0.7",
2016 - "es-errors": "^1.3.0",
2017 - "is-data-view": "^1.0.1"
2018 - },
2019 - "engines": {
2020 - "node": ">= 0.4"
2021 - }
2022 - },
2023 - "node_modules/data-view-byte-offset": {
2024 - "version": "1.0.0",
2025 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz",
2026 - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==",
2027 - "dependencies": {
2028 - "call-bind": "^1.0.6",
2029 - "es-errors": "^1.3.0",
2030 - "is-data-view": "^1.0.1"
2031 - },
2032 - "engines": {
2033 - "node": ">= 0.4"
2034 - }
2035 - },
2036 - "node_modules/debug": {
2037 - "version": "4.3.4",
2038 - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
2039 - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
2040 - "dependencies": {
2041 - "ms": "2.1.2"
2042 - },
2043 - "engines": {
2044 - "node": ">=6.0"
2045 - },
2046 - "peerDependenciesMeta": {
2047 - "supports-color": {
2048 - "optional": true
2049 - }
2050 - }
2051 - },
2052 - "node_modules/deep-equal": {
2053 - "version": "2.2.0",
2054 - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz",
2055 - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==",
2056 - "dependencies": {
2057 - "call-bind": "^1.0.2",
2058 - "es-get-iterator": "^1.1.2",
2059 - "get-intrinsic": "^1.1.3",
2060 - "is-arguments": "^1.1.1",
2061 - "is-array-buffer": "^3.0.1",
2062 - "is-date-object": "^1.0.5",
2063 - "is-regex": "^1.1.4",
2064 - "is-shared-array-buffer": "^1.0.2",
2065 - "isarray": "^2.0.5",
2066 - "object-is": "^1.1.5",
2067 - "object-keys": "^1.1.1",
2068 - "object.assign": "^4.1.4",
2069 - "regexp.prototype.flags": "^1.4.3",
2070 - "side-channel": "^1.0.4",
2071 - "which-boxed-primitive": "^1.0.2",
2072 - "which-collection": "^1.0.1",
2073 - "which-typed-array": "^1.1.9"
2074 - },
2075 - "funding": {
2076 - "url": "https://github.com/sponsors/ljharb"
2077 - }
2078 - },
2079 - "node_modules/deep-is": {
2080 - "version": "0.1.4",
2081 - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
2082 - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
2083 - },
2084 - "node_modules/define-data-property": {
2085 - "version": "1.1.4",
2086 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/define-data-property/-/define-data-property-1.1.4.tgz",
2087 - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
2088 - "dependencies": {
2089 - "es-define-property": "^1.0.0",
2090 - "es-errors": "^1.3.0",
2091 - "gopd": "^1.0.1"
2092 - },
2093 - "engines": {
2094 - "node": ">= 0.4"
2095 - }
2096 - },
2097 - "node_modules/define-lazy-prop": {
2098 - "version": "2.0.0",
2099 - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
2100 - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
2101 - "engines": {
2102 - "node": ">=8"
2103 - }
2104 - },
2105 - "node_modules/define-properties": {
2106 - "version": "1.2.1",
2107 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/define-properties/-/define-properties-1.2.1.tgz",
2108 - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
2109 - "dependencies": {
2110 - "define-data-property": "^1.0.1",
2111 - "has-property-descriptors": "^1.0.0",
2112 - "object-keys": "^1.1.1"
2113 - },
2114 - "engines": {
2115 - "node": ">= 0.4"
2116 - }
2117 - },
2118 - "node_modules/dequal": {
2119 - "version": "2.0.3",
2120 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/dequal/-/dequal-2.0.3.tgz",
2121 - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
2122 - "engines": {
2123 - "node": ">=6"
2124 - }
2125 - },
2126 - "node_modules/didyoumean": {
2127 - "version": "1.2.2",
2128 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/didyoumean/-/didyoumean-1.2.2.tgz",
2129 - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
2130 - "dev": true
2131 - },
2132 - "node_modules/dir-glob": {
2133 - "version": "3.0.1",
2134 - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
2135 - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
2136 - "dependencies": {
2137 - "path-type": "^4.0.0"
2138 - },
2139 - "engines": {
2140 - "node": ">=8"
2141 - }
2142 - },
2143 - "node_modules/dlv": {
2144 - "version": "1.1.3",
2145 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/dlv/-/dlv-1.1.3.tgz",
2146 - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
2147 - "dev": true
2148 - },
2149 - "node_modules/doctrine": {
2150 - "version": "3.0.0",
2151 - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
2152 - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
2153 - "dependencies": {
2154 - "esutils": "^2.0.2"
2155 - },
2156 - "engines": {
2157 - "node": ">=6.0.0"
2158 - }
2159 - },
2160 - "node_modules/eastasianwidth": {
2161 - "version": "0.2.0",
2162 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
2163 - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
2164 - },
2165 - "node_modules/electron-to-chromium": {
2166 - "version": "1.4.736",
2167 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/electron-to-chromium/-/electron-to-chromium-1.4.736.tgz",
2168 - "integrity": "sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q==",
2169 - "dev": true
2170 - },
2171 - "node_modules/emoji-regex": {
2172 - "version": "9.2.2",
2173 - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
2174 - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
2175 - },
2176 - "node_modules/enhanced-resolve": {
2177 - "version": "5.12.0",
2178 - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
2179 - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
2180 - "dependencies": {
2181 - "graceful-fs": "^4.2.4",
2182 - "tapable": "^2.2.0"
2183 - },
2184 - "engines": {
2185 - "node": ">=10.13.0"
2186 - }
2187 - },
2188 - "node_modules/entities": {
2189 - "version": "4.5.0",
2190 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/entities/-/entities-4.5.0.tgz",
2191 - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
2192 - "peer": true,
2193 - "engines": {
2194 - "node": ">=0.12"
2195 - }
2196 - },
2197 - "node_modules/es-abstract": {
2198 - "version": "1.23.3",
2199 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-abstract/-/es-abstract-1.23.3.tgz",
2200 - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==",
2201 - "dependencies": {
2202 - "array-buffer-byte-length": "^1.0.1",
2203 - "arraybuffer.prototype.slice": "^1.0.3",
2204 - "available-typed-arrays": "^1.0.7",
2205 - "call-bind": "^1.0.7",
2206 - "data-view-buffer": "^1.0.1",
2207 - "data-view-byte-length": "^1.0.1",
2208 - "data-view-byte-offset": "^1.0.0",
2209 - "es-define-property": "^1.0.0",
2210 - "es-errors": "^1.3.0",
2211 - "es-object-atoms": "^1.0.0",
2212 - "es-set-tostringtag": "^2.0.3",
2213 - "es-to-primitive": "^1.2.1",
2214 - "function.prototype.name": "^1.1.6",
2215 - "get-intrinsic": "^1.2.4",
2216 - "get-symbol-description": "^1.0.2",
2217 - "globalthis": "^1.0.3",
2218 - "gopd": "^1.0.1",
2219 - "has-property-descriptors": "^1.0.2",
2220 - "has-proto": "^1.0.3",
2221 - "has-symbols": "^1.0.3",
2222 - "hasown": "^2.0.2",
2223 - "internal-slot": "^1.0.7",
2224 - "is-array-buffer": "^3.0.4",
2225 - "is-callable": "^1.2.7",
2226 - "is-data-view": "^1.0.1",
2227 - "is-negative-zero": "^2.0.3",
2228 - "is-regex": "^1.1.4",
2229 - "is-shared-array-buffer": "^1.0.3",
2230 - "is-string": "^1.0.7",
2231 - "is-typed-array": "^1.1.13",
2232 - "is-weakref": "^1.0.2",
2233 - "object-inspect": "^1.13.1",
2234 - "object-keys": "^1.1.1",
2235 - "object.assign": "^4.1.5",
2236 - "regexp.prototype.flags": "^1.5.2",
2237 - "safe-array-concat": "^1.1.2",
2238 - "safe-regex-test": "^1.0.3",
2239 - "string.prototype.trim": "^1.2.9",
2240 - "string.prototype.trimend": "^1.0.8",
2241 - "string.prototype.trimstart": "^1.0.8",
2242 - "typed-array-buffer": "^1.0.2",
2243 - "typed-array-byte-length": "^1.0.1",
2244 - "typed-array-byte-offset": "^1.0.2",
2245 - "typed-array-length": "^1.0.6",
2246 - "unbox-primitive": "^1.0.2",
2247 - "which-typed-array": "^1.1.15"
2248 - },
2249 - "engines": {
2250 - "node": ">= 0.4"
2251 - }
2252 - },
2253 - "node_modules/es-define-property": {
2254 - "version": "1.0.0",
2255 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-define-property/-/es-define-property-1.0.0.tgz",
2256 - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
2257 - "dependencies": {
2258 - "get-intrinsic": "^1.2.4"
2259 - },
2260 - "engines": {
2261 - "node": ">= 0.4"
2262 - }
2263 - },
2264 - "node_modules/es-errors": {
2265 - "version": "1.3.0",
2266 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-errors/-/es-errors-1.3.0.tgz",
2267 - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
2268 - "engines": {
2269 - "node": ">= 0.4"
2270 - }
2271 - },
2272 - "node_modules/es-get-iterator": {
2273 - "version": "1.1.3",
2274 - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz",
2275 - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==",
2276 - "dependencies": {
2277 - "call-bind": "^1.0.2",
2278 - "get-intrinsic": "^1.1.3",
2279 - "has-symbols": "^1.0.3",
2280 - "is-arguments": "^1.1.1",
2281 - "is-map": "^2.0.2",
2282 - "is-set": "^2.0.2",
2283 - "is-string": "^1.0.7",
2284 - "isarray": "^2.0.5",
2285 - "stop-iteration-iterator": "^1.0.0"
2286 - },
2287 - "funding": {
2288 - "url": "https://github.com/sponsors/ljharb"
2289 - }
2290 - },
2291 - "node_modules/es-iterator-helpers": {
2292 - "version": "1.0.18",
2293 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz",
2294 - "integrity": "sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==",
2295 - "dependencies": {
2296 - "call-bind": "^1.0.7",
2297 - "define-properties": "^1.2.1",
2298 - "es-abstract": "^1.23.0",
2299 - "es-errors": "^1.3.0",
2300 - "es-set-tostringtag": "^2.0.3",
2301 - "function-bind": "^1.1.2",
2302 - "get-intrinsic": "^1.2.4",
2303 - "globalthis": "^1.0.3",
2304 - "has-property-descriptors": "^1.0.2",
2305 - "has-proto": "^1.0.3",
2306 - "has-symbols": "^1.0.3",
2307 - "internal-slot": "^1.0.7",
2308 - "iterator.prototype": "^1.1.2",
2309 - "safe-array-concat": "^1.1.2"
2310 - },
2311 - "engines": {
2312 - "node": ">= 0.4"
2313 - }
2314 - },
2315 - "node_modules/es-object-atoms": {
2316 - "version": "1.0.0",
2317 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
2318 - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
2319 - "dependencies": {
2320 - "es-errors": "^1.3.0"
2321 - },
2322 - "engines": {
2323 - "node": ">= 0.4"
2324 - }
2325 - },
2326 - "node_modules/es-set-tostringtag": {
2327 - "version": "2.0.3",
2328 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz",
2329 - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==",
2330 - "dependencies": {
2331 - "get-intrinsic": "^1.2.4",
2332 - "has-tostringtag": "^1.0.2",
2333 - "hasown": "^2.0.1"
2334 - },
2335 - "engines": {
2336 - "node": ">= 0.4"
2337 - }
2338 - },
2339 - "node_modules/es-shim-unscopables": {
2340 - "version": "1.0.2",
2341 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
2342 - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
2343 - "dependencies": {
2344 - "hasown": "^2.0.0"
2345 - }
2346 - },
2347 - "node_modules/es-to-primitive": {
2348 - "version": "1.2.1",
2349 - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
2350 - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
2351 - "dependencies": {
2352 - "is-callable": "^1.1.4",
2353 - "is-date-object": "^1.0.1",
2354 - "is-symbol": "^1.0.2"
2355 - },
2356 - "engines": {
2357 - "node": ">= 0.4"
2358 - },
2359 - "funding": {
2360 - "url": "https://github.com/sponsors/ljharb"
2361 - }
2362 - },
2363 - "node_modules/escalade": {
2364 - "version": "3.1.2",
2365 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/escalade/-/escalade-3.1.2.tgz",
2366 - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==",
2367 - "dev": true,
2368 - "engines": {
2369 - "node": ">=6"
2370 - }
2371 - },
2372 - "node_modules/escape-string-regexp": {
2373 - "version": "4.0.0",
2374 - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
2375 - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
2376 - "engines": {
2377 - "node": ">=10"
2378 - },
2379 - "funding": {
2380 - "url": "https://github.com/sponsors/sindresorhus"
2381 - }
2382 - },
2383 - "node_modules/eslint": {
2384 - "version": "8.32.0",
2385 - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.32.0.tgz",
2386 - "integrity": "sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==",
2387 - "dependencies": {
2388 - "@eslint/eslintrc": "^1.4.1",
2389 - "@humanwhocodes/config-array": "^0.11.8",
2390 - "@humanwhocodes/module-importer": "^1.0.1",
2391 - "@nodelib/fs.walk": "^1.2.8",
2392 - "ajv": "^6.10.0",
2393 - "chalk": "^4.0.0",
2394 - "cross-spawn": "^7.0.2",
2395 - "debug": "^4.3.2",
2396 - "doctrine": "^3.0.0",
2397 - "escape-string-regexp": "^4.0.0",
2398 - "eslint-scope": "^7.1.1",
2399 - "eslint-utils": "^3.0.0",
2400 - "eslint-visitor-keys": "^3.3.0",
2401 - "espree": "^9.4.0",
2402 - "esquery": "^1.4.0",
2403 - "esutils": "^2.0.2",
2404 - "fast-deep-equal": "^3.1.3",
2405 - "file-entry-cache": "^6.0.1",
2406 - "find-up": "^5.0.0",
2407 - "glob-parent": "^6.0.2",
2408 - "globals": "^13.19.0",
2409 - "grapheme-splitter": "^1.0.4",
2410 - "ignore": "^5.2.0",
2411 - "import-fresh": "^3.0.0",
2412 - "imurmurhash": "^0.1.4",
2413 - "is-glob": "^4.0.0",
2414 - "is-path-inside": "^3.0.3",
2415 - "js-sdsl": "^4.1.4",
2416 - "js-yaml": "^4.1.0",
2417 - "json-stable-stringify-without-jsonify": "^1.0.1",
2418 - "levn": "^0.4.1",
2419 - "lodash.merge": "^4.6.2",
2420 - "minimatch": "^3.1.2",
2421 - "natural-compare": "^1.4.0",
2422 - "optionator": "^0.9.1",
2423 - "regexpp": "^3.2.0",
2424 - "strip-ansi": "^6.0.1",
2425 - "strip-json-comments": "^3.1.0",
2426 - "text-table": "^0.2.0"
2427 - },
2428 - "bin": {
2429 - "eslint": "bin/eslint.js"
2430 - },
2431 - "engines": {
2432 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2433 - },
2434 - "funding": {
2435 - "url": "https://opencollective.com/eslint"
2436 - }
2437 - },
2438 - "node_modules/eslint-config-next": {
2439 - "version": "14.1.0",
2440 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-config-next/-/eslint-config-next-14.1.0.tgz",
2441 - "integrity": "sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==",
2442 - "dependencies": {
2443 - "@next/eslint-plugin-next": "14.1.0",
2444 - "@rushstack/eslint-patch": "^1.3.3",
2445 - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0",
2446 - "eslint-import-resolver-node": "^0.3.6",
2447 - "eslint-import-resolver-typescript": "^3.5.2",
2448 - "eslint-plugin-import": "^2.28.1",
2449 - "eslint-plugin-jsx-a11y": "^6.7.1",
2450 - "eslint-plugin-react": "^7.33.2",
2451 - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
2452 - },
2453 - "peerDependencies": {
2454 - "eslint": "^7.23.0 || ^8.0.0",
2455 - "typescript": ">=3.3.1"
2456 - },
2457 - "peerDependenciesMeta": {
2458 - "typescript": {
2459 - "optional": true
2460 - }
2461 - }
2462 - },
2463 - "node_modules/eslint-import-resolver-node": {
2464 - "version": "0.3.9",
2465 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
2466 - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
2467 - "dependencies": {
2468 - "debug": "^3.2.7",
2469 - "is-core-module": "^2.13.0",
2470 - "resolve": "^1.22.4"
2471 - }
2472 - },
2473 - "node_modules/eslint-import-resolver-node/node_modules/debug": {
2474 - "version": "3.2.7",
2475 - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
2476 - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
2477 - "dependencies": {
2478 - "ms": "^2.1.1"
2479 - }
2480 - },
2481 - "node_modules/eslint-import-resolver-typescript": {
2482 - "version": "3.5.3",
2483 - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz",
2484 - "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==",
2485 - "dependencies": {
2486 - "debug": "^4.3.4",
2487 - "enhanced-resolve": "^5.10.0",
2488 - "get-tsconfig": "^4.2.0",
2489 - "globby": "^13.1.2",
2490 - "is-core-module": "^2.10.0",
2491 - "is-glob": "^4.0.3",
2492 - "synckit": "^0.8.4"
2493 - },
2494 - "engines": {
2495 - "node": "^14.18.0 || >=16.0.0"
2496 - },
2497 - "funding": {
2498 - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
2499 - },
2500 - "peerDependencies": {
2501 - "eslint": "*",
2502 - "eslint-plugin-import": "*"
2503 - }
2504 - },
2505 - "node_modules/eslint-import-resolver-typescript/node_modules/globby": {
2506 - "version": "13.1.3",
2507 - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz",
2508 - "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==",
2509 - "dependencies": {
2510 - "dir-glob": "^3.0.1",
2511 - "fast-glob": "^3.2.11",
2512 - "ignore": "^5.2.0",
2513 - "merge2": "^1.4.1",
2514 - "slash": "^4.0.0"
2515 - },
2516 - "engines": {
2517 - "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2518 - },
2519 - "funding": {
2520 - "url": "https://github.com/sponsors/sindresorhus"
2521 - }
2522 - },
2523 - "node_modules/eslint-import-resolver-typescript/node_modules/slash": {
2524 - "version": "4.0.0",
2525 - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
2526 - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
2527 - "engines": {
2528 - "node": ">=12"
2529 - },
2530 - "funding": {
2531 - "url": "https://github.com/sponsors/sindresorhus"
2532 - }
2533 - },
2534 - "node_modules/eslint-module-utils": {
2535 - "version": "2.8.1",
2536 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz",
2537 - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==",
2538 - "dependencies": {
2539 - "debug": "^3.2.7"
2540 - },
2541 - "engines": {
2542 - "node": ">=4"
2543 - },
2544 - "peerDependenciesMeta": {
2545 - "eslint": {
2546 - "optional": true
2547 - }
2548 - }
2549 - },
2550 - "node_modules/eslint-module-utils/node_modules/debug": {
2551 - "version": "3.2.7",
2552 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/debug/-/debug-3.2.7.tgz",
2553 - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
2554 - "dependencies": {
2555 - "ms": "^2.1.1"
2556 - }
2557 - },
2558 - "node_modules/eslint-plugin-import": {
2559 - "version": "2.29.1",
2560 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz",
2561 - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==",
2562 - "dependencies": {
2563 - "array-includes": "^3.1.7",
2564 - "array.prototype.findlastindex": "^1.2.3",
2565 - "array.prototype.flat": "^1.3.2",
2566 - "array.prototype.flatmap": "^1.3.2",
2567 - "debug": "^3.2.7",
2568 - "doctrine": "^2.1.0",
2569 - "eslint-import-resolver-node": "^0.3.9",
2570 - "eslint-module-utils": "^2.8.0",
2571 - "hasown": "^2.0.0",
2572 - "is-core-module": "^2.13.1",
2573 - "is-glob": "^4.0.3",
2574 - "minimatch": "^3.1.2",
2575 - "object.fromentries": "^2.0.7",
2576 - "object.groupby": "^1.0.1",
2577 - "object.values": "^1.1.7",
2578 - "semver": "^6.3.1",
2579 - "tsconfig-paths": "^3.15.0"
2580 - },
2581 - "engines": {
2582 - "node": ">=4"
2583 - },
2584 - "peerDependencies": {
2585 - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
2586 - }
2587 - },
2588 - "node_modules/eslint-plugin-import/node_modules/debug": {
2589 - "version": "3.2.7",
2590 - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
2591 - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
2592 - "dependencies": {
2593 - "ms": "^2.1.1"
2594 - }
2595 - },
2596 - "node_modules/eslint-plugin-import/node_modules/doctrine": {
2597 - "version": "2.1.0",
2598 - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
2599 - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
2600 - "dependencies": {
2601 - "esutils": "^2.0.2"
2602 - },
2603 - "engines": {
2604 - "node": ">=0.10.0"
2605 - }
2606 - },
2607 - "node_modules/eslint-plugin-import/node_modules/semver": {
2608 - "version": "6.3.1",
2609 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-6.3.1.tgz",
2610 - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2611 - "bin": {
2612 - "semver": "bin/semver.js"
2613 - }
2614 - },
2615 - "node_modules/eslint-plugin-jsx-a11y": {
2616 - "version": "6.7.1",
2617 - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
2618 - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==",
2619 - "dependencies": {
2620 - "@babel/runtime": "^7.20.7",
2621 - "aria-query": "^5.1.3",
2622 - "array-includes": "^3.1.6",
2623 - "array.prototype.flatmap": "^1.3.1",
2624 - "ast-types-flow": "^0.0.7",
2625 - "axe-core": "^4.6.2",
2626 - "axobject-query": "^3.1.1",
2627 - "damerau-levenshtein": "^1.0.8",
2628 - "emoji-regex": "^9.2.2",
2629 - "has": "^1.0.3",
2630 - "jsx-ast-utils": "^3.3.3",
2631 - "language-tags": "=1.0.5",
2632 - "minimatch": "^3.1.2",
2633 - "object.entries": "^1.1.6",
2634 - "object.fromentries": "^2.0.6",
2635 - "semver": "^6.3.0"
2636 - },
2637 - "engines": {
2638 - "node": ">=4.0"
2639 - },
2640 - "peerDependencies": {
2641 - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
2642 - }
2643 - },
2644 - "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
2645 - "version": "6.3.1",
2646 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-6.3.1.tgz",
2647 - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2648 - "bin": {
2649 - "semver": "bin/semver.js"
2650 - }
2651 - },
2652 - "node_modules/eslint-plugin-react": {
2653 - "version": "7.34.1",
2654 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz",
2655 - "integrity": "sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==",
2656 - "dependencies": {
2657 - "array-includes": "^3.1.7",
2658 - "array.prototype.findlast": "^1.2.4",
2659 - "array.prototype.flatmap": "^1.3.2",
2660 - "array.prototype.toreversed": "^1.1.2",
2661 - "array.prototype.tosorted": "^1.1.3",
2662 - "doctrine": "^2.1.0",
2663 - "es-iterator-helpers": "^1.0.17",
2664 - "estraverse": "^5.3.0",
2665 - "jsx-ast-utils": "^2.4.1 || ^3.0.0",
2666 - "minimatch": "^3.1.2",
2667 - "object.entries": "^1.1.7",
2668 - "object.fromentries": "^2.0.7",
2669 - "object.hasown": "^1.1.3",
2670 - "object.values": "^1.1.7",
2671 - "prop-types": "^15.8.1",
2672 - "resolve": "^2.0.0-next.5",
2673 - "semver": "^6.3.1",
2674 - "string.prototype.matchall": "^4.0.10"
2675 - },
2676 - "engines": {
2677 - "node": ">=4"
2678 - },
2679 - "peerDependencies": {
2680 - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
2681 - }
2682 - },
2683 - "node_modules/eslint-plugin-react-hooks": {
2684 - "version": "4.6.0",
2685 - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
2686 - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
2687 - "engines": {
2688 - "node": ">=10"
2689 - },
2690 - "peerDependencies": {
2691 - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
2692 - }
2693 - },
2694 - "node_modules/eslint-plugin-react/node_modules/doctrine": {
2695 - "version": "2.1.0",
2696 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/doctrine/-/doctrine-2.1.0.tgz",
2697 - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
2698 - "dependencies": {
2699 - "esutils": "^2.0.2"
2700 - },
2701 - "engines": {
2702 - "node": ">=0.10.0"
2703 - }
2704 - },
2705 - "node_modules/eslint-plugin-react/node_modules/resolve": {
2706 - "version": "2.0.0-next.5",
2707 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/resolve/-/resolve-2.0.0-next.5.tgz",
2708 - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
2709 - "dependencies": {
2710 - "is-core-module": "^2.13.0",
2711 - "path-parse": "^1.0.7",
2712 - "supports-preserve-symlinks-flag": "^1.0.0"
2713 - },
2714 - "bin": {
2715 - "resolve": "bin/resolve"
2716 - }
2717 - },
2718 - "node_modules/eslint-plugin-react/node_modules/semver": {
2719 - "version": "6.3.1",
2720 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-6.3.1.tgz",
2721 - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2722 - "bin": {
2723 - "semver": "bin/semver.js"
2724 - }
2725 - },
2726 - "node_modules/eslint-scope": {
2727 - "version": "7.1.1",
2728 - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
2729 - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
2730 - "dependencies": {
2731 - "esrecurse": "^4.3.0",
2732 - "estraverse": "^5.2.0"
2733 - },
2734 - "engines": {
2735 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2736 - }
2737 - },
2738 - "node_modules/eslint-utils": {
2739 - "version": "3.0.0",
2740 - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
2741 - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
2742 - "dependencies": {
2743 - "eslint-visitor-keys": "^2.0.0"
2744 - },
2745 - "engines": {
2746 - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
2747 - },
2748 - "funding": {
2749 - "url": "https://github.com/sponsors/mysticatea"
2750 - },
2751 - "peerDependencies": {
2752 - "eslint": ">=5"
2753 - }
2754 - },
2755 - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
2756 - "version": "2.1.0",
2757 - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
2758 - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
2759 - "engines": {
2760 - "node": ">=10"
2761 - }
2762 - },
2763 - "node_modules/eslint-visitor-keys": {
2764 - "version": "3.3.0",
2765 - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
2766 - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
2767 - "engines": {
2768 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2769 - }
2770 - },
2771 - "node_modules/espree": {
2772 - "version": "9.4.1",
2773 - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz",
2774 - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==",
2775 - "dependencies": {
2776 - "acorn": "^8.8.0",
2777 - "acorn-jsx": "^5.3.2",
2778 - "eslint-visitor-keys": "^3.3.0"
2779 - },
2780 - "engines": {
2781 - "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2782 - },
2783 - "funding": {
2784 - "url": "https://opencollective.com/eslint"
2785 - }
2786 - },
2787 - "node_modules/esquery": {
2788 - "version": "1.4.0",
2789 - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
2790 - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
2791 - "dependencies": {
2792 - "estraverse": "^5.1.0"
2793 - },
2794 - "engines": {
2795 - "node": ">=0.10"
2796 - }
2797 - },
2798 - "node_modules/esrecurse": {
2799 - "version": "4.3.0",
2800 - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2801 - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2802 - "dependencies": {
2803 - "estraverse": "^5.2.0"
2804 - },
2805 - "engines": {
2806 - "node": ">=4.0"
2807 - }
2808 - },
2809 - "node_modules/estraverse": {
2810 - "version": "5.3.0",
2811 - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2812 - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2813 - "engines": {
2814 - "node": ">=4.0"
2815 - }
2816 - },
2817 - "node_modules/estree-walker": {
2818 - "version": "3.0.3",
2819 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/estree-walker/-/estree-walker-3.0.3.tgz",
2820 - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
2821 - "peer": true,
2822 - "dependencies": {
2823 - "@types/estree": "^1.0.0"
2824 - }
2825 - },
2826 - "node_modules/esutils": {
2827 - "version": "2.0.3",
2828 - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2829 - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2830 - "engines": {
2831 - "node": ">=0.10.0"
2832 - }
2833 - },
2834 - "node_modules/eventsource-parser": {
2835 - "version": "1.0.0",
2836 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eventsource-parser/-/eventsource-parser-1.0.0.tgz",
2837 - "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==",
2838 - "engines": {
2839 - "node": ">=14.18"
2840 - }
2841 - },
2842 - "node_modules/fast-deep-equal": {
2843 - "version": "3.1.3",
2844 - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2845 - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
2846 - },
2847 - "node_modules/fast-glob": {
2848 - "version": "3.3.2",
2849 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/fast-glob/-/fast-glob-3.3.2.tgz",
2850 - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
2851 - "dependencies": {
2852 - "@nodelib/fs.stat": "^2.0.2",
2853 - "@nodelib/fs.walk": "^1.2.3",
2854 - "glob-parent": "^5.1.2",
2855 - "merge2": "^1.3.0",
2856 - "micromatch": "^4.0.4"
2857 - },
2858 - "engines": {
2859 - "node": ">=8.6.0"
2860 - }
2861 - },
2862 - "node_modules/fast-glob/node_modules/glob-parent": {
2863 - "version": "5.1.2",
2864 - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2865 - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2866 - "dependencies": {
2867 - "is-glob": "^4.0.1"
2868 - },
2869 - "engines": {
2870 - "node": ">= 6"
2871 - }
2872 - },
2873 - "node_modules/fast-json-stable-stringify": {
2874 - "version": "2.1.0",
2875 - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2876 - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
2877 - },
2878 - "node_modules/fast-levenshtein": {
2879 - "version": "2.0.6",
2880 - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2881 - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
2882 - },
2883 - "node_modules/fastq": {
2884 - "version": "1.15.0",
2885 - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
2886 - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
2887 - "dependencies": {
2888 - "reusify": "^1.0.4"
2889 - }
2890 - },
2891 - "node_modules/file-entry-cache": {
2892 - "version": "6.0.1",
2893 - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
2894 - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
2895 - "dependencies": {
2896 - "flat-cache": "^3.0.4"
2897 - },
2898 - "engines": {
2899 - "node": "^10.12.0 || >=12.0.0"
2900 - }
2901 - },
2902 - "node_modules/fill-range": {
2903 - "version": "7.0.1",
2904 - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
2905 - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
2906 - "dependencies": {
2907 - "to-regex-range": "^5.0.1"
2908 - },
2909 - "engines": {
2910 - "node": ">=8"
2911 - }
2912 - },
2913 - "node_modules/find-up": {
2914 - "version": "5.0.0",
2915 - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2916 - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2917 - "dependencies": {
2918 - "locate-path": "^6.0.0",
2919 - "path-exists": "^4.0.0"
2920 - },
2921 - "engines": {
2922 - "node": ">=10"
2923 - },
2924 - "funding": {
2925 - "url": "https://github.com/sponsors/sindresorhus"
2926 - }
2927 - },
2928 - "node_modules/flat-cache": {
2929 - "version": "3.0.4",
2930 - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
2931 - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
2932 - "dependencies": {
2933 - "flatted": "^3.1.0",
2934 - "rimraf": "^3.0.2"
2935 - },
2936 - "engines": {
2937 - "node": "^10.12.0 || >=12.0.0"
2938 - }
2939 - },
2940 - "node_modules/flatted": {
2941 - "version": "3.2.7",
2942 - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
2943 - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="
2944 - },
2945 - "node_modules/for-each": {
2946 - "version": "0.3.3",
2947 - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
2948 - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
2949 - "dependencies": {
2950 - "is-callable": "^1.1.3"
2951 - }
2952 - },
2953 - "node_modules/foreground-child": {
2954 - "version": "3.1.1",
2955 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/foreground-child/-/foreground-child-3.1.1.tgz",
2956 - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
2957 - "dependencies": {
2958 - "cross-spawn": "^7.0.0",
2959 - "signal-exit": "^4.0.1"
2960 - },
2961 - "engines": {
2962 - "node": ">=14"
2963 - }
2964 - },
2965 - "node_modules/fraction.js": {
2966 - "version": "4.3.7",
2967 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/fraction.js/-/fraction.js-4.3.7.tgz",
2968 - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
2969 - "dev": true,
2970 - "engines": {
2971 - "node": "*"
2972 - }
2973 - },
2974 - "node_modules/fs.realpath": {
2975 - "version": "1.0.0",
2976 - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2977 - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
2978 - },
2979 - "node_modules/fsevents": {
2980 - "version": "2.3.3",
2981 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/fsevents/-/fsevents-2.3.3.tgz",
2982 - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2983 - "dev": true,
2984 - "hasInstallScript": true,
2985 - "optional": true,
2986 - "os": [
2987 - "darwin"
2988 - ],
2989 - "engines": {
2990 - "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2991 - }
2992 - },
2993 - "node_modules/function-bind": {
2994 - "version": "1.1.2",
2995 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/function-bind/-/function-bind-1.1.2.tgz",
2996 - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
2997 - },
2998 - "node_modules/function.prototype.name": {
2999 - "version": "1.1.6",
3000 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/function.prototype.name/-/function.prototype.name-1.1.6.tgz",
3001 - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==",
3002 - "dependencies": {
3003 - "call-bind": "^1.0.2",
3004 - "define-properties": "^1.2.0",
3005 - "es-abstract": "^1.22.1",
3006 - "functions-have-names": "^1.2.3"
3007 - },
3008 - "engines": {
3009 - "node": ">= 0.4"
3010 - }
3011 - },
3012 - "node_modules/functions-have-names": {
3013 - "version": "1.2.3",
3014 - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
3015 - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
3016 - "funding": {
3017 - "url": "https://github.com/sponsors/ljharb"
3018 - }
3019 - },
3020 - "node_modules/get-intrinsic": {
3021 - "version": "1.2.4",
3022 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
3023 - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
3024 - "dependencies": {
3025 - "es-errors": "^1.3.0",
3026 - "function-bind": "^1.1.2",
3027 - "has-proto": "^1.0.1",
3028 - "has-symbols": "^1.0.3",
3029 - "hasown": "^2.0.0"
3030 - },
3031 - "engines": {
3032 - "node": ">= 0.4"
3033 - }
3034 - },
3035 - "node_modules/get-symbol-description": {
3036 - "version": "1.0.2",
3037 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/get-symbol-description/-/get-symbol-description-1.0.2.tgz",
3038 - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==",
3039 - "dependencies": {
3040 - "call-bind": "^1.0.5",
3041 - "es-errors": "^1.3.0",
3042 - "get-intrinsic": "^1.2.4"
3043 - },
3044 - "engines": {
3045 - "node": ">= 0.4"
3046 - }
3047 - },
3048 - "node_modules/get-tsconfig": {
3049 - "version": "4.3.0",
3050 - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.3.0.tgz",
3051 - "integrity": "sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ==",
3052 - "funding": {
3053 - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
3054 - }
3055 - },
3056 - "node_modules/glob": {
3057 - "version": "7.1.7",
3058 - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
3059 - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
3060 - "dependencies": {
3061 - "fs.realpath": "^1.0.0",
3062 - "inflight": "^1.0.4",
3063 - "inherits": "2",
3064 - "minimatch": "^3.0.4",
3065 - "once": "^1.3.0",
3066 - "path-is-absolute": "^1.0.0"
3067 - },
3068 - "engines": {
3069 - "node": "*"
3070 - },
3071 - "funding": {
3072 - "url": "https://github.com/sponsors/isaacs"
3073 - }
3074 - },
3075 - "node_modules/glob-parent": {
3076 - "version": "6.0.2",
3077 - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
3078 - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
3079 - "dependencies": {
3080 - "is-glob": "^4.0.3"
3081 - },
3082 - "engines": {
3083 - "node": ">=10.13.0"
3084 - }
3085 - },
3086 - "node_modules/globals": {
3087 - "version": "13.19.0",
3088 - "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz",
3089 - "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==",
3090 - "dependencies": {
3091 - "type-fest": "^0.20.2"
3092 - },
3093 - "engines": {
3094 - "node": ">=8"
3095 - },
3096 - "funding": {
3097 - "url": "https://github.com/sponsors/sindresorhus"
3098 - }
3099 - },
3100 - "node_modules/globalthis": {
3101 - "version": "1.0.3",
3102 - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
3103 - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
3104 - "dependencies": {
3105 - "define-properties": "^1.1.3"
3106 - },
3107 - "engines": {
3108 - "node": ">= 0.4"
3109 - },
3110 - "funding": {
3111 - "url": "https://github.com/sponsors/ljharb"
3112 - }
3113 - },
3114 - "node_modules/globalyzer": {
3115 - "version": "0.1.0",
3116 - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz",
3117 - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q=="
3118 - },
3119 - "node_modules/globby": {
3120 - "version": "11.1.0",
3121 - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
3122 - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
3123 - "dependencies": {
3124 - "array-union": "^2.1.0",
3125 - "dir-glob": "^3.0.1",
3126 - "fast-glob": "^3.2.9",
3127 - "ignore": "^5.2.0",
3128 - "merge2": "^1.4.1",
3129 - "slash": "^3.0.0"
3130 - },
3131 - "engines": {
3132 - "node": ">=10"
3133 - },
3134 - "funding": {
3135 - "url": "https://github.com/sponsors/sindresorhus"
3136 - }
3137 - },
3138 - "node_modules/globrex": {
3139 - "version": "0.1.2",
3140 - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz",
3141 - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="
3142 - },
3143 - "node_modules/goober": {
3144 - "version": "2.1.14",
3145 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/goober/-/goober-2.1.14.tgz",
3146 - "integrity": "sha512-4UpC0NdGyAFqLNPnhCT2iHpza2q+RAY3GV85a/mRPdzyPQMsj0KmMMuetdIkzWRbJ+Hgau1EZztq8ImmiMGhsg==",
3147 - "peerDependencies": {
3148 - "csstype": "^3.0.10"
3149 - }
3150 - },
3151 - "node_modules/gopd": {
3152 - "version": "1.0.1",
3153 - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
3154 - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
3155 - "dependencies": {
3156 - "get-intrinsic": "^1.1.3"
3157 - },
3158 - "funding": {
3159 - "url": "https://github.com/sponsors/ljharb"
3160 - }
3161 - },
3162 - "node_modules/graceful-fs": {
3163 - "version": "4.2.11",
3164 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/graceful-fs/-/graceful-fs-4.2.11.tgz",
3165 - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
3166 - },
3167 - "node_modules/grapheme-splitter": {
3168 - "version": "1.0.4",
3169 - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
3170 - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
3171 - },
3172 - "node_modules/has": {
3173 - "version": "1.0.3",
3174 - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
3175 - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
3176 - "dependencies": {
3177 - "function-bind": "^1.1.1"
3178 - },
3179 - "engines": {
3180 - "node": ">= 0.4.0"
3181 - }
3182 - },
3183 - "node_modules/has-bigints": {
3184 - "version": "1.0.2",
3185 - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
3186 - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
3187 - "funding": {
3188 - "url": "https://github.com/sponsors/ljharb"
3189 - }
3190 - },
3191 - "node_modules/has-flag": {
3192 - "version": "4.0.0",
3193 - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
3194 - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
3195 - "engines": {
3196 - "node": ">=8"
3197 - }
3198 - },
3199 - "node_modules/has-property-descriptors": {
3200 - "version": "1.0.2",
3201 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
3202 - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
3203 - "dependencies": {
3204 - "es-define-property": "^1.0.0"
3205 - }
3206 - },
3207 - "node_modules/has-proto": {
3208 - "version": "1.0.3",
3209 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/has-proto/-/has-proto-1.0.3.tgz",
3210 - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
3211 - "engines": {
3212 - "node": ">= 0.4"
3213 - }
3214 - },
3215 - "node_modules/has-symbols": {
3216 - "version": "1.0.3",
3217 - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
3218 - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
3219 - "engines": {
3220 - "node": ">= 0.4"
3221 - },
3222 - "funding": {
3223 - "url": "https://github.com/sponsors/ljharb"
3224 - }
3225 - },
3226 - "node_modules/has-tostringtag": {
3227 - "version": "1.0.2",
3228 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
3229 - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
3230 - "dependencies": {
3231 - "has-symbols": "^1.0.3"
3232 - },
3233 - "engines": {
3234 - "node": ">= 0.4"
3235 - }
3236 - },
3237 - "node_modules/hasown": {
3238 - "version": "2.0.2",
3239 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/hasown/-/hasown-2.0.2.tgz",
3240 - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
3241 - "dependencies": {
3242 - "function-bind": "^1.1.2"
3243 - },
3244 - "engines": {
3245 - "node": ">= 0.4"
3246 - }
3247 - },
3248 - "node_modules/ignore": {
3249 - "version": "5.2.4",
3250 - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
3251 - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
3252 - "engines": {
3253 - "node": ">= 4"
3254 - }
3255 - },
3256 - "node_modules/import-fresh": {
3257 - "version": "3.3.0",
3258 - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
3259 - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
3260 - "dependencies": {
3261 - "parent-module": "^1.0.0",
3262 - "resolve-from": "^4.0.0"
3263 - },
3264 - "engines": {
3265 - "node": ">=6"
3266 - },
3267 - "funding": {
3268 - "url": "https://github.com/sponsors/sindresorhus"
3269 - }
3270 - },
3271 - "node_modules/imurmurhash": {
3272 - "version": "0.1.4",
3273 - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
3274 - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
3275 - "engines": {
3276 - "node": ">=0.8.19"
3277 - }
3278 - },
3279 - "node_modules/inflight": {
3280 - "version": "1.0.6",
3281 - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
3282 - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
3283 - "dependencies": {
3284 - "once": "^1.3.0",
3285 - "wrappy": "1"
3286 - }
3287 - },
3288 - "node_modules/inherits": {
3289 - "version": "2.0.4",
3290 - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
3291 - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
3292 - },
3293 - "node_modules/internal-slot": {
3294 - "version": "1.0.7",
3295 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/internal-slot/-/internal-slot-1.0.7.tgz",
3296 - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==",
3297 - "dependencies": {
3298 - "es-errors": "^1.3.0",
3299 - "hasown": "^2.0.0",
3300 - "side-channel": "^1.0.4"
3301 - },
3302 - "engines": {
3303 - "node": ">= 0.4"
3304 - }
3305 - },
3306 - "node_modules/is-arguments": {
3307 - "version": "1.1.1",
3308 - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
3309 - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
3310 - "dependencies": {
3311 - "call-bind": "^1.0.2",
3312 - "has-tostringtag": "^1.0.0"
3313 - },
3314 - "engines": {
3315 - "node": ">= 0.4"
3316 - },
3317 - "funding": {
3318 - "url": "https://github.com/sponsors/ljharb"
3319 - }
3320 - },
3321 - "node_modules/is-array-buffer": {
3322 - "version": "3.0.4",
3323 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
3324 - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==",
3325 - "dependencies": {
3326 - "call-bind": "^1.0.2",
3327 - "get-intrinsic": "^1.2.1"
3328 - },
3329 - "engines": {
3330 - "node": ">= 0.4"
3331 - }
3332 - },
3333 - "node_modules/is-async-function": {
3334 - "version": "2.0.0",
3335 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-async-function/-/is-async-function-2.0.0.tgz",
3336 - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
3337 - "dependencies": {
3338 - "has-tostringtag": "^1.0.0"
3339 - },
3340 - "engines": {
3341 - "node": ">= 0.4"
3342 - }
3343 - },
3344 - "node_modules/is-bigint": {
3345 - "version": "1.0.4",
3346 - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
3347 - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
3348 - "dependencies": {
3349 - "has-bigints": "^1.0.1"
3350 - },
3351 - "funding": {
3352 - "url": "https://github.com/sponsors/ljharb"
3353 - }
3354 - },
3355 - "node_modules/is-binary-path": {
3356 - "version": "2.1.0",
3357 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-binary-path/-/is-binary-path-2.1.0.tgz",
3358 - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
3359 - "dev": true,
3360 - "dependencies": {
3361 - "binary-extensions": "^2.0.0"
3362 - },
3363 - "engines": {
3364 - "node": ">=8"
3365 - }
3366 - },
3367 - "node_modules/is-boolean-object": {
3368 - "version": "1.1.2",
3369 - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
3370 - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
3371 - "dependencies": {
3372 - "call-bind": "^1.0.2",
3373 - "has-tostringtag": "^1.0.0"
3374 - },
3375 - "engines": {
3376 - "node": ">= 0.4"
3377 - },
3378 - "funding": {
3379 - "url": "https://github.com/sponsors/ljharb"
3380 - }
3381 - },
3382 - "node_modules/is-callable": {
3383 - "version": "1.2.7",
3384 - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
3385 - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
3386 - "engines": {
3387 - "node": ">= 0.4"
3388 - },
3389 - "funding": {
3390 - "url": "https://github.com/sponsors/ljharb"
3391 - }
3392 - },
3393 - "node_modules/is-core-module": {
3394 - "version": "2.13.1",
3395 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-core-module/-/is-core-module-2.13.1.tgz",
3396 - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
3397 - "dependencies": {
3398 - "hasown": "^2.0.0"
3399 - }
3400 - },
3401 - "node_modules/is-data-view": {
3402 - "version": "1.0.1",
3403 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-data-view/-/is-data-view-1.0.1.tgz",
3404 - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==",
3405 - "dependencies": {
3406 - "is-typed-array": "^1.1.13"
3407 - },
3408 - "engines": {
3409 - "node": ">= 0.4"
3410 - }
3411 - },
3412 - "node_modules/is-date-object": {
3413 - "version": "1.0.5",
3414 - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
3415 - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
3416 - "dependencies": {
3417 - "has-tostringtag": "^1.0.0"
3418 - },
3419 - "engines": {
3420 - "node": ">= 0.4"
3421 - },
3422 - "funding": {
3423 - "url": "https://github.com/sponsors/ljharb"
3424 - }
3425 - },
3426 - "node_modules/is-docker": {
3427 - "version": "2.2.1",
3428 - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
3429 - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
3430 - "bin": {
3431 - "is-docker": "cli.js"
3432 - },
3433 - "engines": {
3434 - "node": ">=8"
3435 - },
3436 - "funding": {
3437 - "url": "https://github.com/sponsors/sindresorhus"
3438 - }
3439 - },
3440 - "node_modules/is-extglob": {
3441 - "version": "2.1.1",
3442 - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
3443 - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
3444 - "engines": {
3445 - "node": ">=0.10.0"
3446 - }
3447 - },
3448 - "node_modules/is-finalizationregistry": {
3449 - "version": "1.0.2",
3450 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz",
3451 - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==",
3452 - "dependencies": {
3453 - "call-bind": "^1.0.2"
3454 - }
3455 - },
3456 - "node_modules/is-fullwidth-code-point": {
3457 - "version": "3.0.0",
3458 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
3459 - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
3460 - "engines": {
3461 - "node": ">=8"
3462 - }
3463 - },
3464 - "node_modules/is-generator-function": {
3465 - "version": "1.0.10",
3466 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-generator-function/-/is-generator-function-1.0.10.tgz",
3467 - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
3468 - "dependencies": {
3469 - "has-tostringtag": "^1.0.0"
3470 - },
3471 - "engines": {
3472 - "node": ">= 0.4"
3473 - }
3474 - },
3475 - "node_modules/is-glob": {
3476 - "version": "4.0.3",
3477 - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
3478 - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
3479 - "dependencies": {
3480 - "is-extglob": "^2.1.1"
3481 - },
3482 - "engines": {
3483 - "node": ">=0.10.0"
3484 - }
3485 - },
3486 - "node_modules/is-map": {
3487 - "version": "2.0.2",
3488 - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
3489 - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
3490 - "funding": {
3491 - "url": "https://github.com/sponsors/ljharb"
3492 - }
3493 - },
3494 - "node_modules/is-negative-zero": {
3495 - "version": "2.0.3",
3496 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
3497 - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==",
3498 - "engines": {
3499 - "node": ">= 0.4"
3500 - }
3501 - },
3502 - "node_modules/is-number": {
3503 - "version": "7.0.0",
3504 - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
3505 - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
3506 - "engines": {
3507 - "node": ">=0.12.0"
3508 - }
3509 - },
3510 - "node_modules/is-number-object": {
3511 - "version": "1.0.7",
3512 - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
3513 - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
3514 - "dependencies": {
3515 - "has-tostringtag": "^1.0.0"
3516 - },
3517 - "engines": {
3518 - "node": ">= 0.4"
3519 - },
3520 - "funding": {
3521 - "url": "https://github.com/sponsors/ljharb"
3522 - }
3523 - },
3524 - "node_modules/is-path-inside": {
3525 - "version": "3.0.3",
3526 - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
3527 - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
3528 - "engines": {
3529 - "node": ">=8"
3530 - }
3531 - },
3532 - "node_modules/is-reference": {
3533 - "version": "3.0.2",
3534 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-reference/-/is-reference-3.0.2.tgz",
3535 - "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==",
3536 - "peer": true,
3537 - "dependencies": {
3538 - "@types/estree": "*"
3539 - }
3540 - },
3541 - "node_modules/is-regex": {
3542 - "version": "1.1.4",
3543 - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
3544 - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
3545 - "dependencies": {
3546 - "call-bind": "^1.0.2",
3547 - "has-tostringtag": "^1.0.0"
3548 - },
3549 - "engines": {
3550 - "node": ">= 0.4"
3551 - },
3552 - "funding": {
3553 - "url": "https://github.com/sponsors/ljharb"
3554 - }
3555 - },
3556 - "node_modules/is-set": {
3557 - "version": "2.0.2",
3558 - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
3559 - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
3560 - "funding": {
3561 - "url": "https://github.com/sponsors/ljharb"
3562 - }
3563 - },
3564 - "node_modules/is-shared-array-buffer": {
3565 - "version": "1.0.3",
3566 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz",
3567 - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==",
3568 - "dependencies": {
3569 - "call-bind": "^1.0.7"
3570 - },
3571 - "engines": {
3572 - "node": ">= 0.4"
3573 - }
3574 - },
3575 - "node_modules/is-string": {
3576 - "version": "1.0.7",
3577 - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
3578 - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
3579 - "dependencies": {
3580 - "has-tostringtag": "^1.0.0"
3581 - },
3582 - "engines": {
3583 - "node": ">= 0.4"
3584 - },
3585 - "funding": {
3586 - "url": "https://github.com/sponsors/ljharb"
3587 - }
3588 - },
3589 - "node_modules/is-symbol": {
3590 - "version": "1.0.4",
3591 - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
3592 - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
3593 - "dependencies": {
3594 - "has-symbols": "^1.0.2"
3595 - },
3596 - "engines": {
3597 - "node": ">= 0.4"
3598 - },
3599 - "funding": {
3600 - "url": "https://github.com/sponsors/ljharb"
3601 - }
3602 - },
3603 - "node_modules/is-typed-array": {
3604 - "version": "1.1.13",
3605 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-typed-array/-/is-typed-array-1.1.13.tgz",
3606 - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==",
3607 - "dependencies": {
3608 - "which-typed-array": "^1.1.14"
3609 - },
3610 - "engines": {
3611 - "node": ">= 0.4"
3612 - }
3613 - },
3614 - "node_modules/is-weakmap": {
3615 - "version": "2.0.1",
3616 - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
3617 - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
3618 - "funding": {
3619 - "url": "https://github.com/sponsors/ljharb"
3620 - }
3621 - },
3622 - "node_modules/is-weakref": {
3623 - "version": "1.0.2",
3624 - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
3625 - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
3626 - "dependencies": {
3627 - "call-bind": "^1.0.2"
3628 - },
3629 - "funding": {
3630 - "url": "https://github.com/sponsors/ljharb"
3631 - }
3632 - },
3633 - "node_modules/is-weakset": {
3634 - "version": "2.0.2",
3635 - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
3636 - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
3637 - "dependencies": {
3638 - "call-bind": "^1.0.2",
3639 - "get-intrinsic": "^1.1.1"
3640 - },
3641 - "funding": {
3642 - "url": "https://github.com/sponsors/ljharb"
3643 - }
3644 - },
3645 - "node_modules/is-wsl": {
3646 - "version": "2.2.0",
3647 - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
3648 - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
3649 - "dependencies": {
3650 - "is-docker": "^2.0.0"
3651 - },
3652 - "engines": {
3653 - "node": ">=8"
3654 - }
3655 - },
3656 - "node_modules/isarray": {
3657 - "version": "2.0.5",
3658 - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
3659 - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
3660 - },
3661 - "node_modules/isexe": {
3662 - "version": "2.0.0",
3663 - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
3664 - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
3665 - },
3666 - "node_modules/iterator.prototype": {
3667 - "version": "1.1.2",
3668 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/iterator.prototype/-/iterator.prototype-1.1.2.tgz",
3669 - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==",
3670 - "dependencies": {
3671 - "define-properties": "^1.2.1",
3672 - "get-intrinsic": "^1.2.1",
3673 - "has-symbols": "^1.0.3",
3674 - "reflect.getprototypeof": "^1.0.4",
3675 - "set-function-name": "^2.0.1"
3676 - }
3677 - },
3678 - "node_modules/jackspeak": {
3679 - "version": "2.3.6",
3680 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/jackspeak/-/jackspeak-2.3.6.tgz",
3681 - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
3682 - "dependencies": {
3683 - "@isaacs/cliui": "^8.0.2"
3684 - },
3685 - "engines": {
3686 - "node": ">=14"
3687 - },
3688 - "optionalDependencies": {
3689 - "@pkgjs/parseargs": "^0.11.0"
3690 - }
3691 - },
3692 - "node_modules/jiti": {
3693 - "version": "1.21.0",
3694 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/jiti/-/jiti-1.21.0.tgz",
3695 - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==",
3696 - "dev": true,
3697 - "bin": {
3698 - "jiti": "bin/jiti.js"
3699 - }
3700 - },
3701 - "node_modules/js-sdsl": {
3702 - "version": "4.2.0",
3703 - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz",
3704 - "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==",
3705 - "funding": {
3706 - "type": "opencollective",
3707 - "url": "https://opencollective.com/js-sdsl"
3708 - }
3709 - },
3710 - "node_modules/js-tokens": {
3711 - "version": "4.0.0",
3712 - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
3713 - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
3714 - },
3715 - "node_modules/js-yaml": {
3716 - "version": "4.1.0",
3717 - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
3718 - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
3719 - "dependencies": {
3720 - "argparse": "^2.0.1"
3721 - },
3722 - "bin": {
3723 - "js-yaml": "bin/js-yaml.js"
3724 - }
3725 - },
3726 - "node_modules/json-schema-traverse": {
3727 - "version": "0.4.1",
3728 - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
3729 - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
3730 - },
3731 - "node_modules/json-stable-stringify-without-jsonify": {
3732 - "version": "1.0.1",
3733 - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
3734 - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
3735 - },
3736 - "node_modules/json5": {
3737 - "version": "1.0.2",
3738 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/json5/-/json5-1.0.2.tgz",
3739 - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
3740 - "dependencies": {
3741 - "minimist": "^1.2.0"
3742 - },
3743 - "bin": {
3744 - "json5": "lib/cli.js"
3745 - }
3746 - },
3747 - "node_modules/jsx-ast-utils": {
3748 - "version": "3.3.3",
3749 - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
3750 - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
3751 - "dependencies": {
3752 - "array-includes": "^3.1.5",
3753 - "object.assign": "^4.1.3"
3754 - },
3755 - "engines": {
3756 - "node": ">=4.0"
3757 - }
3758 - },
3759 - "node_modules/language-subtag-registry": {
3760 - "version": "0.3.22",
3761 - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
3762 - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="
3763 - },
3764 - "node_modules/language-tags": {
3765 - "version": "1.0.5",
3766 - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
3767 - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
3768 - "dependencies": {
3769 - "language-subtag-registry": "~0.3.2"
3770 - }
3771 - },
3772 - "node_modules/levn": {
3773 - "version": "0.4.1",
3774 - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
3775 - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
3776 - "dependencies": {
3777 - "prelude-ls": "^1.2.1",
3778 - "type-check": "~0.4.0"
3779 - },
3780 - "engines": {
3781 - "node": ">= 0.8.0"
3782 - }
3783 - },
3784 - "node_modules/lilconfig": {
3785 - "version": "2.1.0",
3786 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lilconfig/-/lilconfig-2.1.0.tgz",
3787 - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
3788 - "dev": true,
3789 - "engines": {
3790 - "node": ">=10"
3791 - }
3792 - },
3793 - "node_modules/lines-and-columns": {
3794 - "version": "1.2.4",
3795 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
3796 - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
3797 - "dev": true
3798 - },
3799 - "node_modules/locate-character": {
3800 - "version": "3.0.0",
3801 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/locate-character/-/locate-character-3.0.0.tgz",
3802 - "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==",
3803 - "peer": true
3804 - },
3805 - "node_modules/locate-path": {
3806 - "version": "6.0.0",
3807 - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
3808 - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
3809 - "dependencies": {
3810 - "p-locate": "^5.0.0"
3811 - },
3812 - "engines": {
3813 - "node": ">=10"
3814 - },
3815 - "funding": {
3816 - "url": "https://github.com/sponsors/sindresorhus"
3817 - }
3818 - },
3819 - "node_modules/lodash.castarray": {
3820 - "version": "4.4.0",
3821 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lodash.castarray/-/lodash.castarray-4.4.0.tgz",
3822 - "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==",
3823 - "dev": true
3824 - },
3825 - "node_modules/lodash.isplainobject": {
3826 - "version": "4.0.6",
3827 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
3828 - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
3829 - "dev": true
3830 - },
3831 - "node_modules/lodash.merge": {
3832 - "version": "4.6.2",
3833 - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
3834 - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
3835 - },
3836 - "node_modules/loose-envify": {
3837 - "version": "1.4.0",
3838 - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
3839 - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
3840 - "dependencies": {
3841 - "js-tokens": "^3.0.0 || ^4.0.0"
3842 - },
3843 - "bin": {
3844 - "loose-envify": "cli.js"
3845 - }
3846 - },
3847 - "node_modules/lru-cache": {
3848 - "version": "6.0.0",
3849 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
3850 - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
3851 - "dependencies": {
3852 - "yallist": "^4.0.0"
3853 - },
3854 - "engines": {
3855 - "node": ">=10"
3856 - }
3857 - },
3858 - "node_modules/magic-string": {
3859 - "version": "0.30.10",
3860 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/magic-string/-/magic-string-0.30.10.tgz",
3861 - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==",
3862 - "peer": true,
3863 - "dependencies": {
3864 - "@jridgewell/sourcemap-codec": "^1.4.15"
3865 - }
3866 - },
3867 - "node_modules/mdn-data": {
3868 - "version": "2.0.30",
3869 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/mdn-data/-/mdn-data-2.0.30.tgz",
3870 - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
3871 - "peer": true
3872 - },
3873 - "node_modules/merge2": {
3874 - "version": "1.4.1",
3875 - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
3876 - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
3877 - "engines": {
3878 - "node": ">= 8"
3879 - }
3880 - },
3881 - "node_modules/micromatch": {
3882 - "version": "4.0.5",
3883 - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
3884 - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
3885 - "dependencies": {
3886 - "braces": "^3.0.2",
3887 - "picomatch": "^2.3.1"
3888 - },
3889 - "engines": {
3890 - "node": ">=8.6"
3891 - }
3892 - },
3893 - "node_modules/mini-svg-data-uri": {
3894 - "version": "1.4.4",
3895 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
3896 - "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
3897 - "dev": true,
3898 - "bin": {
3899 - "mini-svg-data-uri": "cli.js"
3900 - }
3901 - },
3902 - "node_modules/minimatch": {
3903 - "version": "3.1.2",
3904 - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3905 - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3906 - "dependencies": {
3907 - "brace-expansion": "^1.1.7"
3908 - },
3909 - "engines": {
3910 - "node": "*"
3911 - }
3912 - },
3913 - "node_modules/minimist": {
3914 - "version": "1.2.8",
3915 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/minimist/-/minimist-1.2.8.tgz",
3916 - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
3917 - },
3918 - "node_modules/minipass": {
3919 - "version": "7.0.4",
3920 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/minipass/-/minipass-7.0.4.tgz",
3921 - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
3922 - "engines": {
3923 - "node": ">=16 || 14 >=14.17"
3924 - }
3925 - },
3926 - "node_modules/ms": {
3927 - "version": "2.1.2",
3928 - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
3929 - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
3930 - },
3931 - "node_modules/mz": {
3932 - "version": "2.7.0",
3933 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/mz/-/mz-2.7.0.tgz",
3934 - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
3935 - "dev": true,
3936 - "dependencies": {
3937 - "any-promise": "^1.0.0",
3938 - "object-assign": "^4.0.1",
3939 - "thenify-all": "^1.0.0"
3940 - }
3941 - },
3942 - "node_modules/nanoid": {
3943 - "version": "3.3.7",
3944 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/nanoid/-/nanoid-3.3.7.tgz",
3945 - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
3946 - "bin": {
3947 - "nanoid": "bin/nanoid.cjs"
3948 - },
3949 - "engines": {
3950 - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3951 - }
3952 - },
3953 - "node_modules/natural-compare": {
3954 - "version": "1.4.0",
3955 - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3956 - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
3957 - },
3958 - "node_modules/next": {
3959 - "version": "14.1.0",
3960 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/next/-/next-14.1.0.tgz",
3961 - "integrity": "sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==",
3962 - "dependencies": {
3963 - "@next/env": "14.1.0",
3964 - "@swc/helpers": "0.5.2",
3965 - "busboy": "1.6.0",
3966 - "caniuse-lite": "^1.0.30001579",
3967 - "graceful-fs": "^4.2.11",
3968 - "postcss": "8.4.31",
3969 - "styled-jsx": "5.1.1"
3970 - },
3971 - "bin": {
3972 - "next": "dist/bin/next"
3973 - },
3974 - "engines": {
3975 - "node": ">=18.17.0"
3976 - },
3977 - "optionalDependencies": {
3978 - "@next/swc-darwin-arm64": "14.1.0",
3979 - "@next/swc-darwin-x64": "14.1.0",
3980 - "@next/swc-linux-arm64-gnu": "14.1.0",
3981 - "@next/swc-linux-arm64-musl": "14.1.0",
3982 - "@next/swc-linux-x64-gnu": "14.1.0",
3983 - "@next/swc-linux-x64-musl": "14.1.0",
3984 - "@next/swc-win32-arm64-msvc": "14.1.0",
3985 - "@next/swc-win32-ia32-msvc": "14.1.0",
3986 - "@next/swc-win32-x64-msvc": "14.1.0"
3987 - },
3988 - "peerDependencies": {
3989 - "@opentelemetry/api": "^1.1.0",
3990 - "react": "^18.2.0",
3991 - "react-dom": "^18.2.0",
3992 - "sass": "^1.3.0"
3993 - },
3994 - "peerDependenciesMeta": {
3995 - "@opentelemetry/api": {
3996 - "optional": true
3997 - },
3998 - "sass": {
3999 - "optional": true
4000 - }
4001 - }
4002 - },
4003 - "node_modules/next/node_modules/postcss": {
4004 - "version": "8.4.31",
4005 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss/-/postcss-8.4.31.tgz",
4006 - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
4007 - "dependencies": {
4008 - "nanoid": "^3.3.6",
4009 - "picocolors": "^1.0.0",
4010 - "source-map-js": "^1.0.2"
4011 - },
4012 - "engines": {
4013 - "node": "^10 || ^12 || >=14"
4014 - }
4015 - },
4016 - "node_modules/node-releases": {
4017 - "version": "2.0.14",
4018 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/node-releases/-/node-releases-2.0.14.tgz",
4019 - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==",
4020 - "dev": true
4021 - },
4022 - "node_modules/normalize-path": {
4023 - "version": "3.0.0",
4024 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/normalize-path/-/normalize-path-3.0.0.tgz",
4025 - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
4026 - "dev": true,
4027 - "engines": {
4028 - "node": ">=0.10.0"
4029 - }
4030 - },
4031 - "node_modules/normalize-range": {
4032 - "version": "0.1.2",
4033 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/normalize-range/-/normalize-range-0.1.2.tgz",
4034 - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
4035 - "dev": true,
4036 - "engines": {
4037 - "node": ">=0.10.0"
4038 - }
4039 - },
4040 - "node_modules/object-assign": {
4041 - "version": "4.1.1",
4042 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object-assign/-/object-assign-4.1.1.tgz",
4043 - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
4044 - "engines": {
4045 - "node": ">=0.10.0"
4046 - }
4047 - },
4048 - "node_modules/object-hash": {
4049 - "version": "3.0.0",
4050 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object-hash/-/object-hash-3.0.0.tgz",
4051 - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
4052 - "dev": true,
4053 - "engines": {
4054 - "node": ">= 6"
4055 - }
4056 - },
4057 - "node_modules/object-inspect": {
4058 - "version": "1.13.1",
4059 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object-inspect/-/object-inspect-1.13.1.tgz",
4060 - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ=="
4061 - },
4062 - "node_modules/object-is": {
4063 - "version": "1.1.5",
4064 - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
4065 - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
4066 - "dependencies": {
4067 - "call-bind": "^1.0.2",
4068 - "define-properties": "^1.1.3"
4069 - },
4070 - "engines": {
4071 - "node": ">= 0.4"
4072 - },
4073 - "funding": {
4074 - "url": "https://github.com/sponsors/ljharb"
4075 - }
4076 - },
4077 - "node_modules/object-keys": {
4078 - "version": "1.1.1",
4079 - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
4080 - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
4081 - "engines": {
4082 - "node": ">= 0.4"
4083 - }
4084 - },
4085 - "node_modules/object.assign": {
4086 - "version": "4.1.5",
4087 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.assign/-/object.assign-4.1.5.tgz",
4088 - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
4089 - "dependencies": {
4090 - "call-bind": "^1.0.5",
4091 - "define-properties": "^1.2.1",
4092 - "has-symbols": "^1.0.3",
4093 - "object-keys": "^1.1.1"
4094 - },
4095 - "engines": {
4096 - "node": ">= 0.4"
4097 - }
4098 - },
4099 - "node_modules/object.entries": {
4100 - "version": "1.1.8",
4101 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.entries/-/object.entries-1.1.8.tgz",
4102 - "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==",
4103 - "dependencies": {
4104 - "call-bind": "^1.0.7",
4105 - "define-properties": "^1.2.1",
4106 - "es-object-atoms": "^1.0.0"
4107 - },
4108 - "engines": {
4109 - "node": ">= 0.4"
4110 - }
4111 - },
4112 - "node_modules/object.fromentries": {
4113 - "version": "2.0.8",
4114 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.fromentries/-/object.fromentries-2.0.8.tgz",
4115 - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
4116 - "dependencies": {
4117 - "call-bind": "^1.0.7",
4118 - "define-properties": "^1.2.1",
4119 - "es-abstract": "^1.23.2",
4120 - "es-object-atoms": "^1.0.0"
4121 - },
4122 - "engines": {
4123 - "node": ">= 0.4"
4124 - }
4125 - },
4126 - "node_modules/object.groupby": {
4127 - "version": "1.0.3",
4128 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.groupby/-/object.groupby-1.0.3.tgz",
4129 - "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
4130 - "dependencies": {
4131 - "call-bind": "^1.0.7",
4132 - "define-properties": "^1.2.1",
4133 - "es-abstract": "^1.23.2"
4134 - },
4135 - "engines": {
4136 - "node": ">= 0.4"
4137 - }
4138 - },
4139 - "node_modules/object.hasown": {
4140 - "version": "1.1.4",
4141 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.hasown/-/object.hasown-1.1.4.tgz",
4142 - "integrity": "sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==",
4143 - "dependencies": {
4144 - "define-properties": "^1.2.1",
4145 - "es-abstract": "^1.23.2",
4146 - "es-object-atoms": "^1.0.0"
4147 - },
4148 - "engines": {
4149 - "node": ">= 0.4"
4150 - }
4151 - },
4152 - "node_modules/object.values": {
4153 - "version": "1.2.0",
4154 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.values/-/object.values-1.2.0.tgz",
4155 - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==",
4156 - "dependencies": {
4157 - "call-bind": "^1.0.7",
4158 - "define-properties": "^1.2.1",
4159 - "es-object-atoms": "^1.0.0"
4160 - },
4161 - "engines": {
4162 - "node": ">= 0.4"
4163 - }
4164 - },
4165 - "node_modules/once": {
4166 - "version": "1.4.0",
4167 - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
4168 - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
4169 - "dependencies": {
4170 - "wrappy": "1"
4171 - }
4172 - },
4173 - "node_modules/open": {
4174 - "version": "8.4.0",
4175 - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz",
4176 - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
4177 - "dependencies": {
4178 - "define-lazy-prop": "^2.0.0",
4179 - "is-docker": "^2.1.1",
4180 - "is-wsl": "^2.2.0"
4181 - },
4182 - "engines": {
4183 - "node": ">=12"
4184 - },
4185 - "funding": {
4186 - "url": "https://github.com/sponsors/sindresorhus"
4187 - }
4188 - },
4189 - "node_modules/optionator": {
4190 - "version": "0.9.1",
4191 - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
4192 - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
4193 - "dependencies": {
4194 - "deep-is": "^0.1.3",
4195 - "fast-levenshtein": "^2.0.6",
4196 - "levn": "^0.4.1",
4197 - "prelude-ls": "^1.2.1",
4198 - "type-check": "^0.4.0",
4199 - "word-wrap": "^1.2.3"
4200 - },
4201 - "engines": {
4202 - "node": ">= 0.8.0"
4203 - }
4204 - },
4205 - "node_modules/p-limit": {
4206 - "version": "3.1.0",
4207 - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
4208 - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
4209 - "dependencies": {
4210 - "yocto-queue": "^0.1.0"
4211 - },
4212 - "engines": {
4213 - "node": ">=10"
4214 - },
4215 - "funding": {
4216 - "url": "https://github.com/sponsors/sindresorhus"
4217 - }
4218 - },
4219 - "node_modules/p-locate": {
4220 - "version": "5.0.0",
4221 - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
4222 - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
4223 - "dependencies": {
4224 - "p-limit": "^3.0.2"
4225 - },
4226 - "engines": {
4227 - "node": ">=10"
4228 - },
4229 - "funding": {
4230 - "url": "https://github.com/sponsors/sindresorhus"
4231 - }
4232 - },
4233 - "node_modules/parent-module": {
4234 - "version": "1.0.1",
4235 - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
4236 - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
4237 - "dependencies": {
4238 - "callsites": "^3.0.0"
4239 - },
4240 - "engines": {
4241 - "node": ">=6"
4242 - }
4243 - },
4244 - "node_modules/path-exists": {
4245 - "version": "4.0.0",
4246 - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
4247 - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
4248 - "engines": {
4249 - "node": ">=8"
4250 - }
4251 - },
4252 - "node_modules/path-is-absolute": {
4253 - "version": "1.0.1",
4254 - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
4255 - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
4256 - "engines": {
4257 - "node": ">=0.10.0"
4258 - }
4259 - },
4260 - "node_modules/path-key": {
4261 - "version": "3.1.1",
4262 - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
4263 - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
4264 - "engines": {
4265 - "node": ">=8"
4266 - }
4267 - },
4268 - "node_modules/path-parse": {
4269 - "version": "1.0.7",
4270 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/path-parse/-/path-parse-1.0.7.tgz",
4271 - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
4272 - },
4273 - "node_modules/path-scurry": {
4274 - "version": "1.10.2",
4275 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/path-scurry/-/path-scurry-1.10.2.tgz",
4276 - "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==",
4277 - "dependencies": {
4278 - "lru-cache": "^10.2.0",
4279 - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
4280 - },
4281 - "engines": {
4282 - "node": ">=16 || 14 >=14.17"
4283 - }
4284 - },
4285 - "node_modules/path-scurry/node_modules/lru-cache": {
4286 - "version": "10.2.0",
4287 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lru-cache/-/lru-cache-10.2.0.tgz",
4288 - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
4289 - "engines": {
4290 - "node": "14 || >=16.14"
4291 - }
4292 - },
4293 - "node_modules/path-type": {
4294 - "version": "4.0.0",
4295 - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
4296 - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
4297 - "engines": {
4298 - "node": ">=8"
4299 - }
4300 - },
4301 - "node_modules/periscopic": {
4302 - "version": "3.1.0",
4303 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/periscopic/-/periscopic-3.1.0.tgz",
4304 - "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==",
4305 - "peer": true,
4306 - "dependencies": {
4307 - "@types/estree": "^1.0.0",
4308 - "estree-walker": "^3.0.0",
4309 - "is-reference": "^3.0.0"
4310 - }
4311 - },
4312 - "node_modules/picocolors": {
4313 - "version": "1.0.0",
4314 - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
4315 - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
4316 - },
4317 - "node_modules/picomatch": {
4318 - "version": "2.3.1",
4319 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
4320 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
4321 - "engines": {
4322 - "node": ">=8.6"
4323 - },
4324 - "funding": {
4325 - "url": "https://github.com/sponsors/jonschlinkert"
4326 - }
4327 - },
4328 - "node_modules/pify": {
4329 - "version": "2.3.0",
4330 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/pify/-/pify-2.3.0.tgz",
4331 - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
4332 - "dev": true,
4333 - "engines": {
4334 - "node": ">=0.10.0"
4335 - }
4336 - },
4337 - "node_modules/pirates": {
4338 - "version": "4.0.6",
4339 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/pirates/-/pirates-4.0.6.tgz",
4340 - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
4341 - "dev": true,
4342 - "engines": {
4343 - "node": ">= 6"
4344 - }
4345 - },
4346 - "node_modules/possible-typed-array-names": {
4347 - "version": "1.0.0",
4348 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
4349 - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
4350 - "engines": {
4351 - "node": ">= 0.4"
4352 - }
4353 - },
4354 - "node_modules/postcss": {
4355 - "version": "8.4.38",
4356 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss/-/postcss-8.4.38.tgz",
4357 - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
4358 - "dependencies": {
4359 - "nanoid": "^3.3.7",
4360 - "picocolors": "^1.0.0",
4361 - "source-map-js": "^1.2.0"
4362 - },
4363 - "engines": {
4364 - "node": "^10 || ^12 || >=14"
4365 - }
4366 - },
4367 - "node_modules/postcss-import": {
4368 - "version": "15.1.0",
4369 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-import/-/postcss-import-15.1.0.tgz",
4370 - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
4371 - "dev": true,
4372 - "dependencies": {
4373 - "postcss-value-parser": "^4.0.0",
4374 - "read-cache": "^1.0.0",
4375 - "resolve": "^1.1.7"
4376 - },
4377 - "engines": {
4378 - "node": ">=14.0.0"
4379 - },
4380 - "peerDependencies": {
4381 - "postcss": "^8.0.0"
4382 - }
4383 - },
4384 - "node_modules/postcss-js": {
4385 - "version": "4.0.1",
4386 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-js/-/postcss-js-4.0.1.tgz",
4387 - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
4388 - "dev": true,
4389 - "dependencies": {
4390 - "camelcase-css": "^2.0.1"
4391 - },
4392 - "engines": {
4393 - "node": "^12 || ^14 || >= 16"
4394 - },
4395 - "peerDependencies": {
4396 - "postcss": "^8.4.21"
4397 - }
4398 - },
4399 - "node_modules/postcss-load-config": {
4400 - "version": "4.0.2",
4401 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
4402 - "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
4403 - "dev": true,
4404 - "dependencies": {
4405 - "lilconfig": "^3.0.0",
4406 - "yaml": "^2.3.4"
4407 - },
4408 - "engines": {
4409 - "node": ">= 14"
4410 - },
4411 - "peerDependencies": {
4412 - "postcss": ">=8.0.9",
4413 - "ts-node": ">=9.0.0"
4414 - },
4415 - "peerDependenciesMeta": {
4416 - "postcss": {
4417 - "optional": true
4418 - },
4419 - "ts-node": {
4420 - "optional": true
4421 - }
4422 - }
4423 - },
4424 - "node_modules/postcss-load-config/node_modules/lilconfig": {
4425 - "version": "3.1.1",
4426 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lilconfig/-/lilconfig-3.1.1.tgz",
4427 - "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==",
4428 - "dev": true,
4429 - "engines": {
4430 - "node": ">=14"
4431 - }
4432 - },
4433 - "node_modules/postcss-nested": {
4434 - "version": "6.0.1",
4435 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-nested/-/postcss-nested-6.0.1.tgz",
4436 - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
4437 - "dev": true,
4438 - "dependencies": {
4439 - "postcss-selector-parser": "^6.0.11"
4440 - },
4441 - "engines": {
4442 - "node": ">=12.0"
4443 - },
4444 - "peerDependencies": {
4445 - "postcss": "^8.2.14"
4446 - }
4447 - },
4448 - "node_modules/postcss-selector-parser": {
4449 - "version": "6.0.16",
4450 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz",
4451 - "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==",
4452 - "dev": true,
4453 - "dependencies": {
4454 - "cssesc": "^3.0.0",
4455 - "util-deprecate": "^1.0.2"
4456 - },
4457 - "engines": {
4458 - "node": ">=4"
4459 - }
4460 - },
4461 - "node_modules/postcss-value-parser": {
4462 - "version": "4.2.0",
4463 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
4464 - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
4465 - "dev": true
4466 - },
4467 - "node_modules/prelude-ls": {
4468 - "version": "1.2.1",
4469 - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
4470 - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
4471 - "engines": {
4472 - "node": ">= 0.8.0"
4473 - }
4474 - },
4475 - "node_modules/prop-types": {
4476 - "version": "15.8.1",
4477 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/prop-types/-/prop-types-15.8.1.tgz",
4478 - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
4479 - "dependencies": {
4480 - "loose-envify": "^1.4.0",
4481 - "object-assign": "^4.1.1",
4482 - "react-is": "^16.13.1"
4483 - }
4484 - },
4485 - "node_modules/punycode": {
4486 - "version": "2.2.0",
4487 - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.2.0.tgz",
4488 - "integrity": "sha512-LN6QV1IJ9ZhxWTNdktaPClrNfp8xdSAYS0Zk2ddX7XsXZAxckMHPCBcHRo0cTcEIgYPRiGEkmji3Idkh2yFtYw==",
4489 - "engines": {
4490 - "node": ">=6"
4491 - }
4492 - },
4493 - "node_modules/queue-microtask": {
4494 - "version": "1.2.3",
4495 - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
4496 - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
4497 - "funding": [
4498 - {
4499 - "type": "github",
4500 - "url": "https://github.com/sponsors/feross"
4501 - },
4502 - {
4503 - "type": "patreon",
4504 - "url": "https://www.patreon.com/feross"
4505 - },
4506 - {
4507 - "type": "consulting",
4508 - "url": "https://feross.org/support"
4509 - }
4510 - ]
4511 - },
4512 - "node_modules/react": {
4513 - "version": "18.2.0",
4514 - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
4515 - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
4516 - "dependencies": {
4517 - "loose-envify": "^1.1.0"
4518 - },
4519 - "engines": {
4520 - "node": ">=0.10.0"
4521 - }
4522 - },
4523 - "node_modules/react-dom": {
4524 - "version": "18.2.0",
4525 - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
4526 - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
4527 - "dependencies": {
4528 - "loose-envify": "^1.1.0",
4529 - "scheduler": "^0.23.0"
4530 - },
4531 - "peerDependencies": {
4532 - "react": "^18.2.0"
4533 - }
4534 - },
4535 - "node_modules/react-hot-toast": {
4536 - "version": "2.4.1",
4537 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/react-hot-toast/-/react-hot-toast-2.4.1.tgz",
4538 - "integrity": "sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==",
4539 - "dependencies": {
4540 - "goober": "^2.1.10"
4541 - },
4542 - "engines": {
4543 - "node": ">=10"
4544 - },
4545 - "peerDependencies": {
4546 - "react": ">=16",
4547 - "react-dom": ">=16"
4548 - }
4549 - },
4550 - "node_modules/react-is": {
4551 - "version": "16.13.1",
4552 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/react-is/-/react-is-16.13.1.tgz",
4553 - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
4554 - },
4555 - "node_modules/react-textarea-autosize": {
4556 - "version": "8.5.3",
4557 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz",
4558 - "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==",
4559 - "dependencies": {
4560 - "@babel/runtime": "^7.20.13",
4561 - "use-composed-ref": "^1.3.0",
4562 - "use-latest": "^1.2.1"
4563 - },
4564 - "engines": {
4565 - "node": ">=10"
4566 - },
4567 - "peerDependencies": {
4568 - "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
4569 - }
4570 - },
4571 - "node_modules/read-cache": {
4572 - "version": "1.0.0",
4573 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/read-cache/-/read-cache-1.0.0.tgz",
4574 - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
4575 - "dev": true,
4576 - "dependencies": {
4577 - "pify": "^2.3.0"
4578 - }
4579 - },
4580 - "node_modules/readdirp": {
4581 - "version": "3.6.0",
4582 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/readdirp/-/readdirp-3.6.0.tgz",
4583 - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
4584 - "dev": true,
4585 - "dependencies": {
4586 - "picomatch": "^2.2.1"
4587 - },
4588 - "engines": {
4589 - "node": ">=8.10.0"
4590 - }
4591 - },
4592 - "node_modules/reflect.getprototypeof": {
4593 - "version": "1.0.6",
4594 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz",
4595 - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==",
4596 - "dependencies": {
4597 - "call-bind": "^1.0.7",
4598 - "define-properties": "^1.2.1",
4599 - "es-abstract": "^1.23.1",
4600 - "es-errors": "^1.3.0",
4601 - "get-intrinsic": "^1.2.4",
4602 - "globalthis": "^1.0.3",
4603 - "which-builtin-type": "^1.1.3"
4604 - },
4605 - "engines": {
4606 - "node": ">= 0.4"
4607 - }
4608 - },
4609 - "node_modules/regenerator-runtime": {
4610 - "version": "0.14.1",
4611 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
4612 - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
4613 - },
4614 - "node_modules/regexp.prototype.flags": {
4615 - "version": "1.5.2",
4616 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz",
4617 - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==",
4618 - "dependencies": {
4619 - "call-bind": "^1.0.6",
4620 - "define-properties": "^1.2.1",
4621 - "es-errors": "^1.3.0",
4622 - "set-function-name": "^2.0.1"
4623 - },
4624 - "engines": {
4625 - "node": ">= 0.4"
4626 - }
4627 - },
4628 - "node_modules/regexpp": {
4629 - "version": "3.2.0",
4630 - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
4631 - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
4632 - "engines": {
4633 - "node": ">=8"
4634 - },
4635 - "funding": {
4636 - "url": "https://github.com/sponsors/mysticatea"
4637 - }
4638 - },
4639 - "node_modules/resolve": {
4640 - "version": "1.22.8",
4641 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/resolve/-/resolve-1.22.8.tgz",
4642 - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
4643 - "dependencies": {
4644 - "is-core-module": "^2.13.0",
4645 - "path-parse": "^1.0.7",
4646 - "supports-preserve-symlinks-flag": "^1.0.0"
4647 - },
4648 - "bin": {
4649 - "resolve": "bin/resolve"
4650 - }
4651 - },
4652 - "node_modules/resolve-from": {
4653 - "version": "4.0.0",
4654 - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
4655 - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
4656 - "engines": {
4657 - "node": ">=4"
4658 - }
4659 - },
4660 - "node_modules/reusify": {
4661 - "version": "1.0.4",
4662 - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
4663 - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
4664 - "engines": {
4665 - "iojs": ">=1.0.0",
4666 - "node": ">=0.10.0"
4667 - }
4668 - },
4669 - "node_modules/rimraf": {
4670 - "version": "3.0.2",
4671 - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
4672 - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
4673 - "dependencies": {
4674 - "glob": "^7.1.3"
4675 - },
4676 - "bin": {
4677 - "rimraf": "bin.js"
4678 - },
4679 - "funding": {
4680 - "url": "https://github.com/sponsors/isaacs"
4681 - }
4682 - },
4683 - "node_modules/run-parallel": {
4684 - "version": "1.2.0",
4685 - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
4686 - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
4687 - "funding": [
4688 - {
4689 - "type": "github",
4690 - "url": "https://github.com/sponsors/feross"
4691 - },
4692 - {
4693 - "type": "patreon",
4694 - "url": "https://www.patreon.com/feross"
4695 - },
4696 - {
4697 - "type": "consulting",
4698 - "url": "https://feross.org/support"
4699 - }
4700 - ],
4701 - "dependencies": {
4702 - "queue-microtask": "^1.2.2"
4703 - }
4704 - },
4705 - "node_modules/safe-array-concat": {
4706 - "version": "1.1.2",
4707 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/safe-array-concat/-/safe-array-concat-1.1.2.tgz",
4708 - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==",
4709 - "dependencies": {
4710 - "call-bind": "^1.0.7",
4711 - "get-intrinsic": "^1.2.4",
4712 - "has-symbols": "^1.0.3",
4713 - "isarray": "^2.0.5"
4714 - },
4715 - "engines": {
4716 - "node": ">=0.4"
4717 - }
4718 - },
4719 - "node_modules/safe-regex-test": {
4720 - "version": "1.0.3",
4721 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/safe-regex-test/-/safe-regex-test-1.0.3.tgz",
4722 - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==",
4723 - "dependencies": {
4724 - "call-bind": "^1.0.6",
4725 - "es-errors": "^1.3.0",
4726 - "is-regex": "^1.1.4"
4727 - },
4728 - "engines": {
4729 - "node": ">= 0.4"
4730 - }
4731 - },
4732 - "node_modules/scheduler": {
4733 - "version": "0.23.0",
4734 - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
4735 - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
4736 - "dependencies": {
4737 - "loose-envify": "^1.1.0"
4738 - }
4739 - },
4740 - "node_modules/semver": {
4741 - "version": "7.6.0",
4742 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-7.6.0.tgz",
4743 - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
4744 - "dependencies": {
4745 - "lru-cache": "^6.0.0"
4746 - },
4747 - "bin": {
4748 - "semver": "bin/semver.js"
4749 - },
4750 - "engines": {
4751 - "node": ">=10"
4752 - }
4753 - },
4754 - "node_modules/seroval": {
4755 - "version": "1.0.5",
4756 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/seroval/-/seroval-1.0.5.tgz",
4757 - "integrity": "sha512-TM+Z11tHHvQVQKeNlOUonOWnsNM+2IBwZ4vwoi4j3zKzIpc5IDw8WPwCfcc8F17wy6cBcJGbZbFOR0UCuTZHQA==",
4758 - "peer": true,
4759 - "engines": {
4760 - "node": ">=10"
4761 - }
4762 - },
4763 - "node_modules/seroval-plugins": {
4764 - "version": "1.0.5",
4765 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/seroval-plugins/-/seroval-plugins-1.0.5.tgz",
4766 - "integrity": "sha512-8+pDC1vOedPXjKG7oz8o+iiHrtF2WswaMQJ7CKFpccvSYfrzmvKY9zOJWCg+881722wIHfwkdnRmiiDm9ym+zQ==",
4767 - "peer": true,
4768 - "engines": {
4769 - "node": ">=10"
4770 - },
4771 - "peerDependencies": {
4772 - "seroval": "^1.0"
4773 - }
4774 - },
4775 - "node_modules/set-function-length": {
4776 - "version": "1.2.2",
4777 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/set-function-length/-/set-function-length-1.2.2.tgz",
4778 - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
4779 - "dependencies": {
4780 - "define-data-property": "^1.1.4",
4781 - "es-errors": "^1.3.0",
4782 - "function-bind": "^1.1.2",
4783 - "get-intrinsic": "^1.2.4",
4784 - "gopd": "^1.0.1",
4785 - "has-property-descriptors": "^1.0.2"
4786 - },
4787 - "engines": {
4788 - "node": ">= 0.4"
4789 - }
4790 - },
4791 - "node_modules/set-function-name": {
4792 - "version": "2.0.2",
4793 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/set-function-name/-/set-function-name-2.0.2.tgz",
4794 - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
4795 - "dependencies": {
4796 - "define-data-property": "^1.1.4",
4797 - "es-errors": "^1.3.0",
4798 - "functions-have-names": "^1.2.3",
4799 - "has-property-descriptors": "^1.0.2"
4800 - },
4801 - "engines": {
4802 - "node": ">= 0.4"
4803 - }
4804 - },
4805 - "node_modules/shebang-command": {
4806 - "version": "2.0.0",
4807 - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
4808 - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
4809 - "dependencies": {
4810 - "shebang-regex": "^3.0.0"
4811 - },
4812 - "engines": {
4813 - "node": ">=8"
4814 - }
4815 - },
4816 - "node_modules/shebang-regex": {
4817 - "version": "3.0.0",
4818 - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
4819 - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
4820 - "engines": {
4821 - "node": ">=8"
4822 - }
4823 - },
4824 - "node_modules/side-channel": {
4825 - "version": "1.0.6",
4826 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/side-channel/-/side-channel-1.0.6.tgz",
4827 - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
4828 - "dependencies": {
4829 - "call-bind": "^1.0.7",
4830 - "es-errors": "^1.3.0",
4831 - "get-intrinsic": "^1.2.4",
4832 - "object-inspect": "^1.13.1"
4833 - },
4834 - "engines": {
4835 - "node": ">= 0.4"
4836 - }
4837 - },
4838 - "node_modules/signal-exit": {
4839 - "version": "4.1.0",
4840 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/signal-exit/-/signal-exit-4.1.0.tgz",
4841 - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
4842 - "engines": {
4843 - "node": ">=14"
4844 - }
4845 - },
4846 - "node_modules/slash": {
4847 - "version": "3.0.0",
4848 - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
4849 - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
4850 - "engines": {
4851 - "node": ">=8"
4852 - }
4853 - },
4854 - "node_modules/solid-js": {
4855 - "version": "1.8.16",
4856 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/solid-js/-/solid-js-1.8.16.tgz",
4857 - "integrity": "sha512-rja94MNU9flF3qQRLNsu60QHKBDKBkVE1DldJZPIfn2ypIn3NV2WpSbGTQIvsyGPBo+9E2IMjwqnqpbgfWuzeg==",
4858 - "peer": true,
4859 - "dependencies": {
4860 - "csstype": "^3.1.0",
4861 - "seroval": "^1.0.4",
4862 - "seroval-plugins": "^1.0.3"
4863 - }
4864 - },
4865 - "node_modules/solid-swr-store": {
4866 - "version": "0.10.7",
4867 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/solid-swr-store/-/solid-swr-store-0.10.7.tgz",
4868 - "integrity": "sha512-A6d68aJmRP471aWqKKPE2tpgOiR5fH4qXQNfKIec+Vap+MGQm3tvXlT8n0I8UgJSlNAsSAUuw2VTviH2h3Vv5g==",
4869 - "engines": {
4870 - "node": ">=10"
4871 - },
4872 - "peerDependencies": {
4873 - "solid-js": "^1.2",
4874 - "swr-store": "^0.10"
4875 - }
4876 - },
4877 - "node_modules/source-map-js": {
4878 - "version": "1.2.0",
4879 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/source-map-js/-/source-map-js-1.2.0.tgz",
4880 - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
4881 - "engines": {
4882 - "node": ">=0.10.0"
4883 - }
4884 - },
4885 - "node_modules/sswr": {
4886 - "version": "2.0.0",
4887 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/sswr/-/sswr-2.0.0.tgz",
4888 - "integrity": "sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==",
4889 - "dependencies": {
4890 - "swrev": "^4.0.0"
4891 - },
4892 - "peerDependencies": {
4893 - "svelte": "^4.0.0"
4894 - }
4895 - },
4896 - "node_modules/stop-iteration-iterator": {
4897 - "version": "1.0.0",
4898 - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
4899 - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==",
4900 - "dependencies": {
4901 - "internal-slot": "^1.0.4"
4902 - },
4903 - "engines": {
4904 - "node": ">= 0.4"
4905 - }
4906 - },
4907 - "node_modules/streamsearch": {
4908 - "version": "1.1.0",
4909 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/streamsearch/-/streamsearch-1.1.0.tgz",
4910 - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
4911 - "engines": {
4912 - "node": ">=10.0.0"
4913 - }
4914 - },
4915 - "node_modules/string-width": {
4916 - "version": "5.1.2",
4917 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/string-width/-/string-width-5.1.2.tgz",
4918 - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
4919 - "dependencies": {
4920 - "eastasianwidth": "^0.2.0",
4921 - "emoji-regex": "^9.2.2",
4922 - "strip-ansi": "^7.0.1"
4923 - },
4924 - "engines": {
4925 - "node": ">=12"
4926 - }
4927 - },
4928 - "node_modules/string-width-cjs": {
4929 - "name": "string-width",
4930 - "version": "4.2.3",
4931 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/string-width/-/string-width-4.2.3.tgz",
4932 - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
4933 - "dependencies": {
4934 - "emoji-regex": "^8.0.0",
4935 - "is-fullwidth-code-point": "^3.0.0",
4936 - "strip-ansi": "^6.0.1"
4937 - },
4938 - "engines": {
4939 - "node": ">=8"
4940 - }
4941 - },
4942 - "node_modules/string-width-cjs/node_modules/emoji-regex": {
4943 - "version": "8.0.0",
4944 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/emoji-regex/-/emoji-regex-8.0.0.tgz",
4945 - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
4946 - },
4947 - "node_modules/string-width/node_modules/ansi-regex": {
4948 - "version": "6.0.1",
4949 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/ansi-regex/-/ansi-regex-6.0.1.tgz",
4950 - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
4951 - "engines": {
4952 - "node": ">=12"
4953 - }
4954 - },
4955 - "node_modules/string-width/node_modules/strip-ansi": {
4956 - "version": "7.1.0",
4957 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/strip-ansi/-/strip-ansi-7.1.0.tgz",
4958 - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
4959 - "dependencies": {
4960 - "ansi-regex": "^6.0.1"
4961 - },
4962 - "engines": {
4963 - "node": ">=12"
4964 - }
4965 - },
4966 - "node_modules/string.prototype.matchall": {
4967 - "version": "4.0.11",
4968 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz",
4969 - "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==",
4970 - "dependencies": {
4971 - "call-bind": "^1.0.7",
4972 - "define-properties": "^1.2.1",
4973 - "es-abstract": "^1.23.2",
4974 - "es-errors": "^1.3.0",
4975 - "es-object-atoms": "^1.0.0",
4976 - "get-intrinsic": "^1.2.4",
4977 - "gopd": "^1.0.1",
4978 - "has-symbols": "^1.0.3",
4979 - "internal-slot": "^1.0.7",
4980 - "regexp.prototype.flags": "^1.5.2",
4981 - "set-function-name": "^2.0.2",
4982 - "side-channel": "^1.0.6"
4983 - },
4984 - "engines": {
4985 - "node": ">= 0.4"
4986 - }
4987 - },
4988 - "node_modules/string.prototype.trim": {
4989 - "version": "1.2.9",
4990 - "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz",
4991 - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==",
4992 - "dependencies": {
4993 - "call-bind": "^1.0.7",
4994 - "define-properties": "^1.2.1",
4995 - "es-abstract": "^1.23.0",
4996 - "es-object-atoms": "^1.0.0"
4997 - },
4998 - "engines": {
4999 - "node": ">= 0.4"

This file is too large to show in full.

package.json
+20 -12
@@ -3,32 +3,40 @@
3 "version": "0.1.0",
4 "private": true,
5 "dependencies": {
6 - "@heroicons/react": "1.0.6",
7 - "@radix-ui/react-slot": "^1.0.2",
8 - "@radix-ui/react-tooltip": "^1.0.7",
6 + "@heroicons/react": "1.0.6",
7 + "@radix-ui/react-slot": "^1.0.2",
8 + "@radix-ui/react-tooltip": "^1.0.7",
9 "@tauri-apps/api": "^1.5.3",
10 "@types/node": "18.17.0",
11 "@types/react": "18.2.78",
12 "@types/react-dom": "18.2.25",
13 - "class-variance-authority": "^0.7.0",
13 "ai": "^2.2.33",
14 + "class-variance-authority": "^0.7.0",
15 "clsx": "1.2.1",
16 "eslint": "8.32.0",
17 "eslint-config-next": "14.1.0",
18 - "next": "14.1.0",
18 + "nanoid": "^5.0.7",
19 + "next": "14.2",
20 "react": "18.2.0",
20 - "react-hot-toast": "^2.4.1",
21 - "react-textarea-autosize": "^8.5.3",
21 "react-dom": "18.2.0",
23 - "typescript": "4.9.4",
24 - "tailwind-merge": "^2.2.1"
22 + "react-hot-toast": "^2.4.1",
23 + "react-textarea-autosize": "^8.5.3",
24 + "tailwind-merge": "^2.2.1",
25 + "typescript": "4.9.4"
26 },
27 "devDependencies": {
27 - "@tailwindcss/forms": "0.5.3",
28 - "@tailwindcss/typography": "0.5.9",
29 - "@tauri-apps/cli": "^1.5.11",
28 + "@tailwindcss/forms": "0.5.3",
29 + "@tailwindcss/typography": "0.5.9",
30 + "@tauri-apps/cli": "^1.5.14",
31 "autoprefixer": "^10.4.19",
32 "postcss": "^8.4.38",
33 "tailwindcss": "^3.4.3"
34 + },
35 + "scripts": {
36 + "preinstall": "npx only-allow pnpm"
37 + },
38 + "engines": {
39 + "npm": "Please use pnpm",
40 + "yarn": "Please use pnpm"
41 }
42 }
pnpm-lock.yaml new
+3856
@@ -0,0 +1,3856 @@
1 +lockfileVersion: '6.0'
2 +
3 +settings:
4 + autoInstallPeers: true
5 + excludeLinksFromLockfile: false
6 +
7 +dependencies:
8 + '@heroicons/react':
9 + specifier: 1.0.6
10 + version: 1.0.6(react@18.2.0)
11 + '@radix-ui/react-slot':
12 + specifier: ^1.0.2
13 + version: 1.0.2(@types/react@18.2.78)(react@18.2.0)
14 + '@radix-ui/react-tooltip':
15 + specifier: ^1.0.7
16 + version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
17 + '@tauri-apps/api':
18 + specifier: ^1.5.3
19 + version: 1.5.3
20 + '@types/node':
21 + specifier: 18.17.0
22 + version: 18.17.0
23 + '@types/react':
24 + specifier: 18.2.78
25 + version: 18.2.78
26 + '@types/react-dom':
27 + specifier: 18.2.25
28 + version: 18.2.25
29 + ai:
30 + specifier: ^2.2.33
31 + version: 2.2.37(react@18.2.0)(solid-js@1.8.16)(svelte@4.2.15)(vue@3.4.23)
32 + class-variance-authority:
33 + specifier: ^0.7.0
34 + version: 0.7.0
35 + clsx:
36 + specifier: 1.2.1
37 + version: 1.2.1
38 + eslint:
39 + specifier: 8.32.0
40 + version: 8.32.0
41 + eslint-config-next:
42 + specifier: 14.1.0
43 + version: 14.1.0(eslint@8.32.0)(typescript@4.9.4)
44 + nanoid:
45 + specifier: ^5.0.7
46 + version: 5.0.7
47 + next:
48 + specifier: '14.2'
49 + version: 14.2.3(react-dom@18.2.0)(react@18.2.0)
50 + react:
51 + specifier: 18.2.0
52 + version: 18.2.0
53 + react-dom:
54 + specifier: 18.2.0
55 + version: 18.2.0(react@18.2.0)
56 + react-hot-toast:
57 + specifier: ^2.4.1
58 + version: 2.4.1(csstype@3.1.3)(react-dom@18.2.0)(react@18.2.0)
59 + react-textarea-autosize:
60 + specifier: ^8.5.3
61 + version: 8.5.3(@types/react@18.2.78)(react@18.2.0)
62 + tailwind-merge:
63 + specifier: ^2.2.1
64 + version: 2.3.0
65 + typescript:
66 + specifier: 4.9.4
67 + version: 4.9.4
68 +
69 +devDependencies:
70 + '@tailwindcss/forms':
71 + specifier: 0.5.3
72 + version: 0.5.3(tailwindcss@3.4.3)
73 + '@tailwindcss/typography':
74 + specifier: 0.5.9
75 + version: 0.5.9(tailwindcss@3.4.3)
76 + '@tauri-apps/cli':
77 + specifier: ^1.5.14
78 + version: 1.5.14
79 + autoprefixer:
80 + specifier: ^10.4.19
81 + version: 10.4.19(postcss@8.4.38)
82 + postcss:
83 + specifier: ^8.4.38
84 + version: 8.4.38
85 + tailwindcss:
86 + specifier: ^3.4.3
87 + version: 3.4.3
88 +
89 +packages:
90 +
91 + /@aashutoshrathi/word-wrap@1.2.6:
92 + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
93 + engines: {node: '>=0.10.0'}
94 + dev: false
95 +
96 + /@alloc/quick-lru@5.2.0:
97 + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
98 + engines: {node: '>=10'}
99 + dev: true
100 +
101 + /@ampproject/remapping@2.3.0:
102 + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==, tarball: https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz}
103 + engines: {node: '>=6.0.0'}
104 + dependencies:
105 + '@jridgewell/gen-mapping': 0.3.5
106 + '@jridgewell/trace-mapping': 0.3.25
107 + dev: false
108 +
109 + /@babel/helper-string-parser@7.24.1:
110 + resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==, tarball: https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz}
111 + engines: {node: '>=6.9.0'}
112 + dev: false
113 +
114 + /@babel/helper-validator-identifier@7.22.20:
115 + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, tarball: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz}
116 + engines: {node: '>=6.9.0'}
117 + dev: false
118 +
119 + /@babel/parser@7.24.4:
120 + resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==, tarball: https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz}
121 + engines: {node: '>=6.0.0'}
122 + hasBin: true
123 + dependencies:
124 + '@babel/types': 7.24.0
125 + dev: false
126 +
127 + /@babel/runtime@7.24.4:
128 + resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
129 + engines: {node: '>=6.9.0'}
130 + dependencies:
131 + regenerator-runtime: 0.14.1
132 + dev: false
133 +
134 + /@babel/types@7.24.0:
135 + resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==, tarball: https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz}
136 + engines: {node: '>=6.9.0'}
137 + dependencies:
138 + '@babel/helper-string-parser': 7.24.1
139 + '@babel/helper-validator-identifier': 7.22.20
140 + to-fast-properties: 2.0.0
141 + dev: false
142 +
143 + /@eslint/eslintrc@1.4.1:
144 + resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
145 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
146 + dependencies:
147 + ajv: 6.12.6
148 + debug: 4.3.4
149 + espree: 9.6.1
150 + globals: 13.24.0
151 + ignore: 5.3.1
152 + import-fresh: 3.3.0
153 + js-yaml: 4.1.0
154 + minimatch: 3.1.2
155 + strip-json-comments: 3.1.1
156 + transitivePeerDependencies:
157 + - supports-color
158 + dev: false
159 +
160 + /@floating-ui/core@1.6.0:
161 + resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
162 + dependencies:
163 + '@floating-ui/utils': 0.2.1
164 + dev: false
165 +
166 + /@floating-ui/dom@1.6.3:
167 + resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
168 + dependencies:
169 + '@floating-ui/core': 1.6.0
170 + '@floating-ui/utils': 0.2.1
171 + dev: false
172 +
173 + /@floating-ui/react-dom@2.0.8(react-dom@18.2.0)(react@18.2.0):
174 + resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
175 + peerDependencies:
176 + react: '>=16.8.0'
177 + react-dom: '>=16.8.0'
178 + dependencies:
179 + '@floating-ui/dom': 1.6.3
180 + react: 18.2.0
181 + react-dom: 18.2.0(react@18.2.0)
182 + dev: false
183 +
184 + /@floating-ui/utils@0.2.1:
185 + resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
186 + dev: false
187 +
188 + /@heroicons/react@1.0.6(react@18.2.0):
189 + resolution: {integrity: sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==}
190 + peerDependencies:
191 + react: '>= 16'
192 + dependencies:
193 + react: 18.2.0
194 + dev: false
195 +
196 + /@humanwhocodes/config-array@0.11.14:
197 + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
198 + engines: {node: '>=10.10.0'}
199 + dependencies:
200 + '@humanwhocodes/object-schema': 2.0.3
201 + debug: 4.3.4
202 + minimatch: 3.1.2
203 + transitivePeerDependencies:
204 + - supports-color
205 + dev: false
206 +
207 + /@humanwhocodes/module-importer@1.0.1:
208 + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
209 + engines: {node: '>=12.22'}
210 + dev: false
211 +
212 + /@humanwhocodes/object-schema@2.0.3:
213 + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
214 + dev: false
215 +
216 + /@isaacs/cliui@8.0.2:
217 + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
218 + engines: {node: '>=12'}
219 + dependencies:
220 + string-width: 5.1.2
221 + string-width-cjs: /string-width@4.2.3
222 + strip-ansi: 7.1.0
223 + strip-ansi-cjs: /strip-ansi@6.0.1
224 + wrap-ansi: 8.1.0
225 + wrap-ansi-cjs: /wrap-ansi@7.0.0
226 +
227 + /@jridgewell/gen-mapping@0.3.5:
228 + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
229 + engines: {node: '>=6.0.0'}
230 + dependencies:
231 + '@jridgewell/set-array': 1.2.1
232 + '@jridgewell/sourcemap-codec': 1.4.15
233 + '@jridgewell/trace-mapping': 0.3.25
234 +
235 + /@jridgewell/resolve-uri@3.1.2:
236 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
237 + engines: {node: '>=6.0.0'}
238 +
239 + /@jridgewell/set-array@1.2.1:
240 + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
241 + engines: {node: '>=6.0.0'}
242 +
243 + /@jridgewell/sourcemap-codec@1.4.15:
244 + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
245 +
246 + /@jridgewell/trace-mapping@0.3.25:
247 + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
248 + dependencies:
249 + '@jridgewell/resolve-uri': 3.1.2
250 + '@jridgewell/sourcemap-codec': 1.4.15
251 +
252 + /@next/env@14.2.3:
253 + resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==, tarball: https://registry.npmjs.org/@next/env/-/env-14.2.3.tgz}
254 + dev: false
255 +
256 + /@next/eslint-plugin-next@14.1.0:
257 + resolution: {integrity: sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==}
258 + dependencies:
259 + glob: 10.3.10
260 + dev: false
261 +
262 + /@next/swc-darwin-arm64@14.2.3:
263 + resolution: {integrity: sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==, tarball: https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.3.tgz}
264 + engines: {node: '>= 10'}
265 + cpu: [arm64]
266 + os: [darwin]
267 + requiresBuild: true
268 + dev: false
269 + optional: true
270 +
271 + /@next/swc-darwin-x64@14.2.3:
272 + resolution: {integrity: sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==, tarball: https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.3.tgz}
273 + engines: {node: '>= 10'}
274 + cpu: [x64]
275 + os: [darwin]
276 + requiresBuild: true
277 + dev: false
278 + optional: true
279 +
280 + /@next/swc-linux-arm64-gnu@14.2.3:
281 + resolution: {integrity: sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==, tarball: https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.3.tgz}
282 + engines: {node: '>= 10'}
283 + cpu: [arm64]
284 + os: [linux]
285 + requiresBuild: true
286 + dev: false
287 + optional: true
288 +
289 + /@next/swc-linux-arm64-musl@14.2.3:
290 + resolution: {integrity: sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==, tarball: https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.3.tgz}
291 + engines: {node: '>= 10'}
292 + cpu: [arm64]
293 + os: [linux]
294 + requiresBuild: true
295 + dev: false
296 + optional: true
297 +
298 + /@next/swc-linux-x64-gnu@14.2.3:
299 + resolution: {integrity: sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==, tarball: https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.3.tgz}
300 + engines: {node: '>= 10'}
301 + cpu: [x64]
302 + os: [linux]
303 + requiresBuild: true
304 + dev: false
305 + optional: true
306 +
307 + /@next/swc-linux-x64-musl@14.2.3:
308 + resolution: {integrity: sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==, tarball: https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.3.tgz}
309 + engines: {node: '>= 10'}
310 + cpu: [x64]
311 + os: [linux]
312 + requiresBuild: true
313 + dev: false
314 + optional: true
315 +
316 + /@next/swc-win32-arm64-msvc@14.2.3:
317 + resolution: {integrity: sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==, tarball: https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.3.tgz}
318 + engines: {node: '>= 10'}
319 + cpu: [arm64]
320 + os: [win32]
321 + requiresBuild: true
322 + dev: false
323 + optional: true
324 +
325 + /@next/swc-win32-ia32-msvc@14.2.3:
326 + resolution: {integrity: sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==, tarball: https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.3.tgz}
327 + engines: {node: '>= 10'}
328 + cpu: [ia32]
329 + os: [win32]
330 + requiresBuild: true
331 + dev: false
332 + optional: true
333 +
334 + /@next/swc-win32-x64-msvc@14.2.3:
335 + resolution: {integrity: sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==, tarball: https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.3.tgz}
336 + engines: {node: '>= 10'}
337 + cpu: [x64]
338 + os: [win32]
339 + requiresBuild: true
340 + dev: false
341 + optional: true
342 +
343 + /@nodelib/fs.scandir@2.1.5:
344 + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
345 + engines: {node: '>= 8'}
346 + dependencies:
347 + '@nodelib/fs.stat': 2.0.5
348 + run-parallel: 1.2.0
349 +
350 + /@nodelib/fs.stat@2.0.5:
351 + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
352 + engines: {node: '>= 8'}
353 +
354 + /@nodelib/fs.walk@1.2.8:
355 + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
356 + engines: {node: '>= 8'}
357 + dependencies:
358 + '@nodelib/fs.scandir': 2.1.5
359 + fastq: 1.17.1
360 +
361 + /@pkgjs/parseargs@0.11.0:
362 + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, tarball: https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz}
363 + engines: {node: '>=14'}
364 + requiresBuild: true
365 + optional: true
366 +
367 + /@radix-ui/primitive@1.0.1:
368 + resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
369 + dependencies:
370 + '@babel/runtime': 7.24.4
371 + dev: false
372 +
373 + /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
374 + resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
375 + peerDependencies:
376 + '@types/react': '*'
377 + '@types/react-dom': '*'
378 + react: ^16.8 || ^17.0 || ^18.0
379 + react-dom: ^16.8 || ^17.0 || ^18.0
380 + peerDependenciesMeta:
381 + '@types/react':
382 + optional: true
383 + '@types/react-dom':
384 + optional: true
385 + dependencies:
386 + '@babel/runtime': 7.24.4
387 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
388 + '@types/react': 18.2.78
389 + '@types/react-dom': 18.2.25
390 + react: 18.2.0
391 + react-dom: 18.2.0(react@18.2.0)
392 + dev: false
393 +
394 + /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.78)(react@18.2.0):
395 + resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
396 + peerDependencies:
397 + '@types/react': '*'
398 + react: ^16.8 || ^17.0 || ^18.0
399 + peerDependenciesMeta:
400 + '@types/react':
401 + optional: true
402 + dependencies:
403 + '@babel/runtime': 7.24.4
404 + '@types/react': 18.2.78
405 + react: 18.2.0
406 + dev: false
407 +
408 + /@radix-ui/react-context@1.0.1(@types/react@18.2.78)(react@18.2.0):
409 + resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
410 + peerDependencies:
411 + '@types/react': '*'
412 + react: ^16.8 || ^17.0 || ^18.0
413 + peerDependenciesMeta:
414 + '@types/react':
415 + optional: true
416 + dependencies:
417 + '@babel/runtime': 7.24.4
418 + '@types/react': 18.2.78
419 + react: 18.2.0
420 + dev: false
421 +
422 + /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
423 + resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
424 + peerDependencies:
425 + '@types/react': '*'
426 + '@types/react-dom': '*'
427 + react: ^16.8 || ^17.0 || ^18.0
428 + react-dom: ^16.8 || ^17.0 || ^18.0
429 + peerDependenciesMeta:
430 + '@types/react':
431 + optional: true
432 + '@types/react-dom':
433 + optional: true
434 + dependencies:
435 + '@babel/runtime': 7.24.4
436 + '@radix-ui/primitive': 1.0.1
437 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.78)(react@18.2.0)
438 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
439 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.78)(react@18.2.0)
440 + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.78)(react@18.2.0)
441 + '@types/react': 18.2.78
442 + '@types/react-dom': 18.2.25
443 + react: 18.2.0
444 + react-dom: 18.2.0(react@18.2.0)
445 + dev: false
446 +
447 + /@radix-ui/react-id@1.0.1(@types/react@18.2.78)(react@18.2.0):
448 + resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
449 + peerDependencies:
450 + '@types/react': '*'
451 + react: ^16.8 || ^17.0 || ^18.0
452 + peerDependenciesMeta:
453 + '@types/react':
454 + optional: true
455 + dependencies:
456 + '@babel/runtime': 7.24.4
457 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.78)(react@18.2.0)
458 + '@types/react': 18.2.78
459 + react: 18.2.0
460 + dev: false
461 +
462 + /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
463 + resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
464 + peerDependencies:
465 + '@types/react': '*'
466 + '@types/react-dom': '*'
467 + react: ^16.8 || ^17.0 || ^18.0
468 + react-dom: ^16.8 || ^17.0 || ^18.0
469 + peerDependenciesMeta:
470 + '@types/react':
471 + optional: true
472 + '@types/react-dom':
473 + optional: true
474 + dependencies:
475 + '@babel/runtime': 7.24.4
476 + '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0)(react@18.2.0)
477 + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
478 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.78)(react@18.2.0)
479 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.78)(react@18.2.0)
480 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
481 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.78)(react@18.2.0)
482 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.78)(react@18.2.0)
483 + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.78)(react@18.2.0)
484 + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.78)(react@18.2.0)
485 + '@radix-ui/rect': 1.0.1
486 + '@types/react': 18.2.78
487 + '@types/react-dom': 18.2.25
488 + react: 18.2.0
489 + react-dom: 18.2.0(react@18.2.0)
490 + dev: false
491 +
492 + /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
493 + resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
494 + peerDependencies:
495 + '@types/react': '*'
496 + '@types/react-dom': '*'
497 + react: ^16.8 || ^17.0 || ^18.0
498 + react-dom: ^16.8 || ^17.0 || ^18.0
499 + peerDependenciesMeta:
500 + '@types/react':
501 + optional: true
502 + '@types/react-dom':
503 + optional: true
504 + dependencies:
505 + '@babel/runtime': 7.24.4
506 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
507 + '@types/react': 18.2.78
508 + '@types/react-dom': 18.2.25
509 + react: 18.2.0
510 + react-dom: 18.2.0(react@18.2.0)
511 + dev: false
512 +
513 + /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
514 + resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
515 + peerDependencies:
516 + '@types/react': '*'
517 + '@types/react-dom': '*'
518 + react: ^16.8 || ^17.0 || ^18.0
519 + react-dom: ^16.8 || ^17.0 || ^18.0
520 + peerDependenciesMeta:
521 + '@types/react':
522 + optional: true
523 + '@types/react-dom':
524 + optional: true
525 + dependencies:
526 + '@babel/runtime': 7.24.4
527 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.78)(react@18.2.0)
528 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.78)(react@18.2.0)
529 + '@types/react': 18.2.78
530 + '@types/react-dom': 18.2.25
531 + react: 18.2.0
532 + react-dom: 18.2.0(react@18.2.0)
533 + dev: false
534 +
535 + /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
536 + resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
537 + peerDependencies:
538 + '@types/react': '*'
539 + '@types/react-dom': '*'
540 + react: ^16.8 || ^17.0 || ^18.0
541 + react-dom: ^16.8 || ^17.0 || ^18.0
542 + peerDependenciesMeta:
543 + '@types/react':
544 + optional: true
545 + '@types/react-dom':
546 + optional: true
547 + dependencies:
548 + '@babel/runtime': 7.24.4
549 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.78)(react@18.2.0)
550 + '@types/react': 18.2.78
551 + '@types/react-dom': 18.2.25
552 + react: 18.2.0
553 + react-dom: 18.2.0(react@18.2.0)
554 + dev: false
555 +
556 + /@radix-ui/react-slot@1.0.2(@types/react@18.2.78)(react@18.2.0):
557 + resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
558 + peerDependencies:
559 + '@types/react': '*'
560 + react: ^16.8 || ^17.0 || ^18.0
561 + peerDependenciesMeta:
562 + '@types/react':
563 + optional: true
564 + dependencies:
565 + '@babel/runtime': 7.24.4
566 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.78)(react@18.2.0)
567 + '@types/react': 18.2.78
568 + react: 18.2.0
569 + dev: false
570 +
571 + /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
572 + resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==}
573 + peerDependencies:
574 + '@types/react': '*'
575 + '@types/react-dom': '*'
576 + react: ^16.8 || ^17.0 || ^18.0
577 + react-dom: ^16.8 || ^17.0 || ^18.0
578 + peerDependenciesMeta:
579 + '@types/react':
580 + optional: true
581 + '@types/react-dom':
582 + optional: true
583 + dependencies:
584 + '@babel/runtime': 7.24.4
585 + '@radix-ui/primitive': 1.0.1
586 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.78)(react@18.2.0)
587 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.78)(react@18.2.0)
588 + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
589 + '@radix-ui/react-id': 1.0.1(@types/react@18.2.78)(react@18.2.0)
590 + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
591 + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
592 + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
593 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
594 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.78)(react@18.2.0)
595 + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.78)(react@18.2.0)
596 + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
597 + '@types/react': 18.2.78
598 + '@types/react-dom': 18.2.25
599 + react: 18.2.0
600 + react-dom: 18.2.0(react@18.2.0)
601 + dev: false
602 +
603 + /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.78)(react@18.2.0):
604 + resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
605 + peerDependencies:
606 + '@types/react': '*'
607 + react: ^16.8 || ^17.0 || ^18.0
608 + peerDependenciesMeta:
609 + '@types/react':
610 + optional: true
611 + dependencies:
612 + '@babel/runtime': 7.24.4
613 + '@types/react': 18.2.78
614 + react: 18.2.0
615 + dev: false
616 +
617 + /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.78)(react@18.2.0):
618 + resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
619 + peerDependencies:
620 + '@types/react': '*'
621 + react: ^16.8 || ^17.0 || ^18.0
622 + peerDependenciesMeta:
623 + '@types/react':
624 + optional: true
625 + dependencies:
626 + '@babel/runtime': 7.24.4
627 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.78)(react@18.2.0)
628 + '@types/react': 18.2.78
629 + react: 18.2.0
630 + dev: false
631 +
632 + /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.78)(react@18.2.0):
633 + resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
634 + peerDependencies:
635 + '@types/react': '*'
636 + react: ^16.8 || ^17.0 || ^18.0
637 + peerDependenciesMeta:
638 + '@types/react':
639 + optional: true
640 + dependencies:
641 + '@babel/runtime': 7.24.4
642 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.78)(react@18.2.0)
643 + '@types/react': 18.2.78
644 + react: 18.2.0
645 + dev: false
646 +
647 + /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.78)(react@18.2.0):
648 + resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
649 + peerDependencies:
650 + '@types/react': '*'
651 + react: ^16.8 || ^17.0 || ^18.0
652 + peerDependenciesMeta:
653 + '@types/react':
654 + optional: true
655 + dependencies:
656 + '@babel/runtime': 7.24.4
657 + '@types/react': 18.2.78
658 + react: 18.2.0
659 + dev: false
660 +
661 + /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.78)(react@18.2.0):
662 + resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
663 + peerDependencies:
664 + '@types/react': '*'
665 + react: ^16.8 || ^17.0 || ^18.0
666 + peerDependenciesMeta:
667 + '@types/react':
668 + optional: true
669 + dependencies:
670 + '@babel/runtime': 7.24.4
671 + '@radix-ui/rect': 1.0.1
672 + '@types/react': 18.2.78
673 + react: 18.2.0
674 + dev: false
675 +
676 + /@radix-ui/react-use-size@1.0.1(@types/react@18.2.78)(react@18.2.0):
677 + resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
678 + peerDependencies:
679 + '@types/react': '*'
680 + react: ^16.8 || ^17.0 || ^18.0
681 + peerDependenciesMeta:
682 + '@types/react':
683 + optional: true
684 + dependencies:
685 + '@babel/runtime': 7.24.4
686 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.78)(react@18.2.0)
687 + '@types/react': 18.2.78
688 + react: 18.2.0
689 + dev: false
690 +
691 + /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0):
692 + resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
693 + peerDependencies:
694 + '@types/react': '*'
695 + '@types/react-dom': '*'
696 + react: ^16.8 || ^17.0 || ^18.0
697 + react-dom: ^16.8 || ^17.0 || ^18.0
698 + peerDependenciesMeta:
699 + '@types/react':
700 + optional: true
701 + '@types/react-dom':
702 + optional: true
703 + dependencies:
704 + '@babel/runtime': 7.24.4
705 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.78)(react-dom@18.2.0)(react@18.2.0)
706 + '@types/react': 18.2.78
707 + '@types/react-dom': 18.2.25
708 + react: 18.2.0
709 + react-dom: 18.2.0(react@18.2.0)
710 + dev: false
711 +
712 + /@radix-ui/rect@1.0.1:
713 + resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
714 + dependencies:
715 + '@babel/runtime': 7.24.4
716 + dev: false
717 +
718 + /@rushstack/eslint-patch@1.10.2:
719 + resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
720 + dev: false
721 +
722 + /@swc/counter@0.1.3:
723 + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==, tarball: https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz}
724 + dev: false
725 +
726 + /@swc/helpers@0.5.5:
727 + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==, tarball: https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz}
728 + dependencies:
729 + '@swc/counter': 0.1.3
730 + tslib: 2.6.2
731 + dev: false
732 +
733 + /@tailwindcss/forms@0.5.3(tailwindcss@3.4.3):
734 + resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==}
735 + peerDependencies:
736 + tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
737 + dependencies:
738 + mini-svg-data-uri: 1.4.4
739 + tailwindcss: 3.4.3
740 + dev: true
741 +
742 + /@tailwindcss/typography@0.5.9(tailwindcss@3.4.3):
743 + resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==}
744 + peerDependencies:
745 + tailwindcss: '>=3.0.0 || insiders'
746 + dependencies:
747 + lodash.castarray: 4.4.0
748 + lodash.isplainobject: 4.0.6
749 + lodash.merge: 4.6.2
750 + postcss-selector-parser: 6.0.10
751 + tailwindcss: 3.4.3
752 + dev: true
753 +
754 + /@tauri-apps/api@1.5.3:
755 + resolution: {integrity: sha512-zxnDjHHKjOsrIzZm6nO5Xapb/BxqUq1tc7cGkFXsFkGTsSWgCPH1D8mm0XS9weJY2OaR73I3k3S+b7eSzJDfqA==}
756 + engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'}
757 + dev: false
758 +
759 + /@tauri-apps/cli-darwin-arm64@1.5.14:
760 + resolution: {integrity: sha512-lxoSOp3KKSqzHJa7iT32dukPGMlfsTuja1xXSgwR8o/fqzpYJY7FY/3ZxesP8HR66FcK+vtqa//HNqeOQ0mHkA==, tarball: https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.5.14.tgz}
761 + engines: {node: '>= 10'}
762 + cpu: [arm64]
763 + os: [darwin]
764 + requiresBuild: true
765 + dev: true
766 + optional: true
767 +
768 + /@tauri-apps/cli-darwin-x64@1.5.14:
769 + resolution: {integrity: sha512-EXSwN1n5spfG8FoXuyc90ACtmDJXzaZ1gxyENaq9xEpQoo7j/Q1vb6qXxmr6azKr8zmqY4h08ZFbv3exh93xJg==, tarball: https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.5.14.tgz}
770 + engines: {node: '>= 10'}
771 + cpu: [x64]
772 + os: [darwin]
773 + requiresBuild: true
774 + dev: true
775 + optional: true
776 +
777 + /@tauri-apps/cli-linux-arm-gnueabihf@1.5.14:
778 + resolution: {integrity: sha512-Yb8BH/KYR7Tl+de40sZPfrqbhcU3Jlu+UPIrnXt05sjn48xqIps74Xjz8zzVp0TuHxUp8FmIGtCVhQgsbrsvvg==, tarball: https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.5.14.tgz}
779 + engines: {node: '>= 10'}
780 + cpu: [arm]
781 + os: [linux]
782 + requiresBuild: true
783 + dev: true
784 + optional: true
785 +
786 + /@tauri-apps/cli-linux-arm64-gnu@1.5.14:
787 + resolution: {integrity: sha512-QrKHP4gRaHiup478rPBZ+BmNd88yze9jMmheoNy9mN1K/aECRmTHO+tWhsxv5moFHZzRhO0QDWxxvTtiaPXaGg==, tarball: https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.5.14.tgz}
788 + engines: {node: '>= 10'}
789 + cpu: [arm64]
790 + os: [linux]
791 + requiresBuild: true
792 + dev: true
793 + optional: true
794 +
795 + /@tauri-apps/cli-linux-arm64-musl@1.5.14:
796 + resolution: {integrity: sha512-Hb1C1VMxmUcyGjW/K/INKF87zzzgLEVRmWZZnQd7M1P4uue4xPyIwUELSdX12Z2jREPgmLW4AXPD0m6wsNu7iw==, tarball: https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.5.14.tgz}
797 + engines: {node: '>= 10'}
798 + cpu: [arm64]
799 + os: [linux]
800 + requiresBuild: true
801 + dev: true
802 + optional: true
803 +
804 + /@tauri-apps/cli-linux-x64-gnu@1.5.14:
805 + resolution: {integrity: sha512-kD9v/UwPDuhIgq2TJj/s2/7rqk+vmExVV6xHPKI8vVbIvlNAOZqmx3fpxjej1241vhJ/piGd/m6q6YMWGsL0oQ==, tarball: https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.5.14.tgz}
806 + engines: {node: '>= 10'}
807 + cpu: [x64]
808 + os: [linux]
809 + requiresBuild: true
810 + dev: true
811 + optional: true
812 +
813 + /@tauri-apps/cli-linux-x64-musl@1.5.14:
814 + resolution: {integrity: sha512-204Drgg9Zx0+THKndqASz4+iPCwqA3gQVF9C0CDIArNXrjPyJjVvW8VP5CHiZYaTNWxlz/ltyxluM6UFWbXNFw==, tarball: https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.5.14.tgz}
815 + engines: {node: '>= 10'}
816 + cpu: [x64]
817 + os: [linux]
818 + requiresBuild: true
819 + dev: true
820 + optional: true
821 +
822 + /@tauri-apps/cli-win32-arm64-msvc@1.5.14:
823 + resolution: {integrity: sha512-sqPSni2MnWNCm+8YZnLdWCclxfSHaYqKuPFSz8q7Tn1G1m/cA9gyPoC1G0esHftY7bu/ZM5lB4kM3I4U0KlLiA==, tarball: https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-1.5.14.tgz}
824 + engines: {node: '>= 10'}
825 + cpu: [arm64]
826 + os: [win32]
827 + requiresBuild: true
828 + dev: true
829 + optional: true
830 +
831 + /@tauri-apps/cli-win32-ia32-msvc@1.5.14:
832 + resolution: {integrity: sha512-8xN8W0zTs8oFsQmvYLxHFeqhzVI7oTaPK1xQMc5gbpFP45jN41c21aCXfjnvzT+h90EfCHUF9EWj2HTEJSb7Iw==, tarball: https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.5.14.tgz}
833 + engines: {node: '>= 10'}
834 + cpu: [ia32]
835 + os: [win32]
836 + requiresBuild: true
837 + dev: true
838 + optional: true
839 +
840 + /@tauri-apps/cli-win32-x64-msvc@1.5.14:
841 + resolution: {integrity: sha512-U0slee5tNM2PYECBpPHavLSwkT3szGMZ+qhcikQQbDan84bQdLn/kHWjyXOgLJs4KSve4+KxcrN+AVqj0VyHnw==, tarball: https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.5.14.tgz}
842 + engines: {node: '>= 10'}
843 + cpu: [x64]
844 + os: [win32]
845 + requiresBuild: true
846 + dev: true
847 + optional: true
848 +
849 + /@tauri-apps/cli@1.5.14:
850 + resolution: {integrity: sha512-JOSMKymlg116UdEXSj69eg5p1OtZnQkUE0qIGbtNDO1sk3X/KgBN6+oHBW0BzPStp/W0AjBgrMWCqjHPwEpOug==, tarball: https://registry.npmjs.org/@tauri-apps/cli/-/cli-1.5.14.tgz}
851 + engines: {node: '>= 10'}
852 + hasBin: true
853 + optionalDependencies:
854 + '@tauri-apps/cli-darwin-arm64': 1.5.14
855 + '@tauri-apps/cli-darwin-x64': 1.5.14
856 + '@tauri-apps/cli-linux-arm-gnueabihf': 1.5.14
857 + '@tauri-apps/cli-linux-arm64-gnu': 1.5.14
858 + '@tauri-apps/cli-linux-arm64-musl': 1.5.14
859 + '@tauri-apps/cli-linux-x64-gnu': 1.5.14
860 + '@tauri-apps/cli-linux-x64-musl': 1.5.14
861 + '@tauri-apps/cli-win32-arm64-msvc': 1.5.14
862 + '@tauri-apps/cli-win32-ia32-msvc': 1.5.14
863 + '@tauri-apps/cli-win32-x64-msvc': 1.5.14
864 + dev: true
865 +
866 + /@types/estree@1.0.5:
867 + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, tarball: https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz}
868 + dev: false
869 +
870 + /@types/json5@0.0.29:
871 + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
872 + dev: false
873 +
874 + /@types/node@18.17.0:
875 + resolution: {integrity: sha512-GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg==}
876 + dev: false
877 +
878 + /@types/prop-types@15.7.12:
879 + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
880 + dev: false
881 +
882 + /@types/react-dom@18.2.25:
883 + resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==}
884 + dependencies:
885 + '@types/react': 18.2.78
886 + dev: false
887 +
888 + /@types/react@18.2.78:
889 + resolution: {integrity: sha512-qOwdPnnitQY4xKlKayt42q5W5UQrSHjgoXNVEtxeqdITJ99k4VXJOP3vt8Rkm9HmgJpH50UNU+rlqfkfWOqp0A==}
890 + dependencies:
891 + '@types/prop-types': 15.7.12
892 + csstype: 3.1.3
893 + dev: false
894 +
895 + /@typescript-eslint/parser@6.21.0(eslint@8.32.0)(typescript@4.9.4):
896 + resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
897 + engines: {node: ^16.0.0 || >=18.0.0}
898 + peerDependencies:
899 + eslint: ^7.0.0 || ^8.0.0
900 + typescript: '*'
901 + peerDependenciesMeta:
902 + typescript:
903 + optional: true
904 + dependencies:
905 + '@typescript-eslint/scope-manager': 6.21.0
906 + '@typescript-eslint/types': 6.21.0
907 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@4.9.4)
908 + '@typescript-eslint/visitor-keys': 6.21.0
909 + debug: 4.3.4
910 + eslint: 8.32.0
911 + typescript: 4.9.4
912 + transitivePeerDependencies:
913 + - supports-color
914 + dev: false
915 +
916 + /@typescript-eslint/scope-manager@6.21.0:
917 + resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
918 + engines: {node: ^16.0.0 || >=18.0.0}
919 + dependencies:
920 + '@typescript-eslint/types': 6.21.0
921 + '@typescript-eslint/visitor-keys': 6.21.0
922 + dev: false
923 +
924 + /@typescript-eslint/types@6.21.0:
925 + resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
926 + engines: {node: ^16.0.0 || >=18.0.0}
927 + dev: false
928 +
929 + /@typescript-eslint/typescript-estree@6.21.0(typescript@4.9.4):
930 + resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
931 + engines: {node: ^16.0.0 || >=18.0.0}
932 + peerDependencies:
933 + typescript: '*'
934 + peerDependenciesMeta:
935 + typescript:
936 + optional: true
937 + dependencies:
938 + '@typescript-eslint/types': 6.21.0
939 + '@typescript-eslint/visitor-keys': 6.21.0
940 + debug: 4.3.4
941 + globby: 11.1.0
942 + is-glob: 4.0.3
943 + minimatch: 9.0.3
944 + semver: 7.6.0
945 + ts-api-utils: 1.3.0(typescript@4.9.4)
946 + typescript: 4.9.4
947 + transitivePeerDependencies:
948 + - supports-color
949 + dev: false
950 +
951 + /@typescript-eslint/visitor-keys@6.21.0:
952 + resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
953 + engines: {node: ^16.0.0 || >=18.0.0}
954 + dependencies:
955 + '@typescript-eslint/types': 6.21.0
956 + eslint-visitor-keys: 3.4.3
957 + dev: false
958 +
959 + /@vue/compiler-core@3.4.23:
960 + resolution: {integrity: sha512-HAFmuVEwNqNdmk+w4VCQ2pkLk1Vw4XYiiyxEp3z/xvl14aLTUBw2OfVH3vBcx+FtGsynQLkkhK410Nah1N2yyQ==, tarball: https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.23.tgz}
961 + dependencies:
962 + '@babel/parser': 7.24.4
963 + '@vue/shared': 3.4.23
964 + entities: 4.5.0
965 + estree-walker: 2.0.2
966 + source-map-js: 1.2.0
967 + dev: false
968 +
969 + /@vue/compiler-dom@3.4.23:
970 + resolution: {integrity: sha512-t0b9WSTnCRrzsBGrDd1LNR5HGzYTr7LX3z6nNBG+KGvZLqrT0mY6NsMzOqlVMBKKXKVuusbbB5aOOFgTY+senw==, tarball: https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.23.tgz}
971 + dependencies:
972 + '@vue/compiler-core': 3.4.23
973 + '@vue/shared': 3.4.23
974 + dev: false
975 +
976 + /@vue/compiler-sfc@3.4.23:
977 + resolution: {integrity: sha512-fSDTKTfzaRX1kNAUiaj8JB4AokikzStWgHooMhaxyjZerw624L+IAP/fvI4ZwMpwIh8f08PVzEnu4rg8/Npssw==, tarball: https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.23.tgz}
978 + dependencies:
979 + '@babel/parser': 7.24.4
980 + '@vue/compiler-core': 3.4.23
981 + '@vue/compiler-dom': 3.4.23
982 + '@vue/compiler-ssr': 3.4.23
983 + '@vue/shared': 3.4.23
984 + estree-walker: 2.0.2
985 + magic-string: 0.30.10
986 + postcss: 8.4.38
987 + source-map-js: 1.2.0
988 + dev: false
989 +
990 + /@vue/compiler-ssr@3.4.23:
991 + resolution: {integrity: sha512-hb6Uj2cYs+tfqz71Wj6h3E5t6OKvb4MVcM2Nl5i/z1nv1gjEhw+zYaNOV+Xwn+SSN/VZM0DgANw5TuJfxfezPg==, tarball: https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.23.tgz}
992 + dependencies:
993 + '@vue/compiler-dom': 3.4.23
994 + '@vue/shared': 3.4.23
995 + dev: false
996 +
997 + /@vue/reactivity@3.4.23:
998 + resolution: {integrity: sha512-GlXR9PL+23fQ3IqnbSQ8OQKLodjqCyoCrmdLKZk3BP7jN6prWheAfU7a3mrltewTkoBm+N7qMEb372VHIkQRMQ==, tarball: https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.23.tgz}
999 + dependencies:
1000 + '@vue/shared': 3.4.23
1001 + dev: false
1002 +
1003 + /@vue/runtime-core@3.4.23:
1004 + resolution: {integrity: sha512-FeQ9MZEXoFzFkFiw9MQQ/FWs3srvrP+SjDKSeRIiQHIhtkzoj0X4rWQlRNHbGuSwLra6pMyjAttwixNMjc/xLw==, tarball: https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.23.tgz}
1005 + dependencies:
1006 + '@vue/reactivity': 3.4.23
1007 + '@vue/shared': 3.4.23
1008 + dev: false
1009 +
1010 + /@vue/runtime-dom@3.4.23:
1011 + resolution: {integrity: sha512-RXJFwwykZWBkMiTPSLEWU3kgVLNAfActBfWFlZd0y79FTUxexogd0PLG4HH2LfOktjRxV47Nulygh0JFXe5f9A==, tarball: https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.23.tgz}
1012 + dependencies:
1013 + '@vue/runtime-core': 3.4.23
1014 + '@vue/shared': 3.4.23
1015 + csstype: 3.1.3
1016 + dev: false
1017 +
1018 + /@vue/server-renderer@3.4.23(vue@3.4.23):
1019 + resolution: {integrity: sha512-LDwGHtnIzvKFNS8dPJ1SSU5Gvm36p2ck8wCZc52fc3k/IfjKcwCyrWEf0Yag/2wTFUBXrqizfhK9c/mC367dXQ==, tarball: https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.23.tgz}
1020 + peerDependencies:
1021 + vue: 3.4.23
1022 + dependencies:
1023 + '@vue/compiler-ssr': 3.4.23
1024 + '@vue/shared': 3.4.23
1025 + vue: 3.4.23(typescript@4.9.4)
1026 + dev: false
1027 +
1028 + /@vue/shared@3.4.23:
1029 + resolution: {integrity: sha512-wBQ0gvf+SMwsCQOyusNw/GoXPV47WGd1xB5A1Pgzy0sQ3Bi5r5xm3n+92y3gCnB3MWqnRDdvfkRGxhKtbBRNgg==, tarball: https://registry.npmjs.org/@vue/shared/-/shared-3.4.23.tgz}
1030 + dev: false
1031 +
1032 + /acorn-jsx@5.3.2(acorn@8.11.3):
1033 + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
1034 + peerDependencies:
1035 + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
1036 + dependencies:
1037 + acorn: 8.11.3
1038 + dev: false
1039 +
1040 + /acorn@8.11.3:
1041 + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
1042 + engines: {node: '>=0.4.0'}
1043 + hasBin: true
1044 + dev: false
1045 +
1046 + /ai@2.2.37(react@18.2.0)(solid-js@1.8.16)(svelte@4.2.15)(vue@3.4.23):
1047 + resolution: {integrity: sha512-JIYm5N1muGVqBqWnvkt29FmXhESoO5TcDxw74OE41SsM+uIou6NPDDs0XWb/ABcd1gmp6k5zym64KWMPM2xm0A==}
1048 + engines: {node: '>=14.6'}
1049 + peerDependencies:
1050 + react: ^18.2.0
1051 + solid-js: ^1.7.7
1052 + svelte: ^3.0.0 || ^4.0.0
1053 + vue: ^3.3.4
1054 + peerDependenciesMeta:
1055 + react:
1056 + optional: true
1057 + solid-js:
1058 + optional: true
1059 + svelte:
1060 + optional: true
1061 + vue:
1062 + optional: true
1063 + dependencies:
1064 + eventsource-parser: 1.0.0
1065 + nanoid: 3.3.6
1066 + react: 18.2.0
1067 + solid-js: 1.8.16
1068 + solid-swr-store: 0.10.7(solid-js@1.8.16)(swr-store@0.10.6)
1069 + sswr: 2.0.0(svelte@4.2.15)
1070 + svelte: 4.2.15
1071 + swr: 2.2.0(react@18.2.0)
1072 + swr-store: 0.10.6
1073 + swrv: 1.0.4(vue@3.4.23)
1074 + vue: 3.4.23(typescript@4.9.4)
1075 + dev: false
1076 +
1077 + /ajv@6.12.6:
1078 + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
1079 + dependencies:
1080 + fast-deep-equal: 3.1.3
1081 + fast-json-stable-stringify: 2.1.0
1082 + json-schema-traverse: 0.4.1
1083 + uri-js: 4.4.1
1084 + dev: false
1085 +
1086 + /ansi-regex@5.0.1:
1087 + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1088 + engines: {node: '>=8'}
1089 +
1090 + /ansi-regex@6.0.1:
1091 + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
1092 + engines: {node: '>=12'}
1093 +
1094 + /ansi-styles@4.3.0:
1095 + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
1096 + engines: {node: '>=8'}
1097 + dependencies:
1098 + color-convert: 2.0.1
1099 +
1100 + /ansi-styles@6.2.1:
1101 + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
1102 + engines: {node: '>=12'}
1103 +
1104 + /any-promise@1.3.0:
1105 + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
1106 + dev: true
1107 +
1108 + /anymatch@3.1.3:
1109 + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
1110 + engines: {node: '>= 8'}
1111 + dependencies:
1112 + normalize-path: 3.0.0
1113 + picomatch: 2.3.1
1114 + dev: true
1115 +
1116 + /arg@5.0.2:
1117 + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
1118 + dev: true
1119 +
1120 + /argparse@2.0.1:
1121 + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
1122 + dev: false
1123 +
1124 + /aria-query@5.3.0:
1125 + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
1126 + dependencies:
1127 + dequal: 2.0.3
1128 + dev: false
1129 +
1130 + /array-buffer-byte-length@1.0.1:
1131 + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
1132 + engines: {node: '>= 0.4'}
1133 + dependencies:
1134 + call-bind: 1.0.7
1135 + is-array-buffer: 3.0.4
1136 + dev: false
1137 +
1138 + /array-includes@3.1.8:
1139 + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
1140 + engines: {node: '>= 0.4'}
1141 + dependencies:
1142 + call-bind: 1.0.7
1143 + define-properties: 1.2.1
1144 + es-abstract: 1.23.3
1145 + es-object-atoms: 1.0.0
1146 + get-intrinsic: 1.2.4
1147 + is-string: 1.0.7
1148 + dev: false
1149 +
1150 + /array-union@2.1.0:
1151 + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
1152 + engines: {node: '>=8'}
1153 + dev: false
1154 +
1155 + /array.prototype.findlast@1.2.5:
1156 + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
1157 + engines: {node: '>= 0.4'}
1158 + dependencies:
1159 + call-bind: 1.0.7
1160 + define-properties: 1.2.1
1161 + es-abstract: 1.23.3
1162 + es-errors: 1.3.0
1163 + es-object-atoms: 1.0.0
1164 + es-shim-unscopables: 1.0.2
1165 + dev: false
1166 +
1167 + /array.prototype.findlastindex@1.2.5:
1168 + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
1169 + engines: {node: '>= 0.4'}
1170 + dependencies:
1171 + call-bind: 1.0.7
1172 + define-properties: 1.2.1
1173 + es-abstract: 1.23.3
1174 + es-errors: 1.3.0
1175 + es-object-atoms: 1.0.0
1176 + es-shim-unscopables: 1.0.2
1177 + dev: false
1178 +
1179 + /array.prototype.flat@1.3.2:
1180 + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
1181 + engines: {node: '>= 0.4'}
1182 + dependencies:
1183 + call-bind: 1.0.7
1184 + define-properties: 1.2.1
1185 + es-abstract: 1.23.3
1186 + es-shim-unscopables: 1.0.2
1187 + dev: false
1188 +
1189 + /array.prototype.flatmap@1.3.2:
1190 + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
1191 + engines: {node: '>= 0.4'}
1192 + dependencies:
1193 + call-bind: 1.0.7
1194 + define-properties: 1.2.1
1195 + es-abstract: 1.23.3
1196 + es-shim-unscopables: 1.0.2
1197 + dev: false
1198 +
1199 + /array.prototype.toreversed@1.1.2:
1200 + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
1201 + dependencies:
1202 + call-bind: 1.0.7
1203 + define-properties: 1.2.1
1204 + es-abstract: 1.23.3
1205 + es-shim-unscopables: 1.0.2
1206 + dev: false
1207 +
1208 + /array.prototype.tosorted@1.1.3:
1209 + resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
1210 + dependencies:
1211 + call-bind: 1.0.7
1212 + define-properties: 1.2.1
1213 + es-abstract: 1.23.3
1214 + es-errors: 1.3.0
1215 + es-shim-unscopables: 1.0.2
1216 + dev: false
1217 +
1218 + /arraybuffer.prototype.slice@1.0.3:
1219 + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
1220 + engines: {node: '>= 0.4'}
1221 + dependencies:
1222 + array-buffer-byte-length: 1.0.1
1223 + call-bind: 1.0.7
1224 + define-properties: 1.2.1
1225 + es-abstract: 1.23.3
1226 + es-errors: 1.3.0
1227 + get-intrinsic: 1.2.4
1228 + is-array-buffer: 3.0.4
1229 + is-shared-array-buffer: 1.0.3
1230 + dev: false
1231 +
1232 + /ast-types-flow@0.0.8:
1233 + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
1234 + dev: false
1235 +
1236 + /autoprefixer@10.4.19(postcss@8.4.38):
1237 + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
1238 + engines: {node: ^10 || ^12 || >=14}
1239 + hasBin: true
1240 + peerDependencies:
1241 + postcss: ^8.1.0
1242 + dependencies:
1243 + browserslist: 4.23.0
1244 + caniuse-lite: 1.0.30001611
1245 + fraction.js: 4.3.7
1246 + normalize-range: 0.1.2
1247 + picocolors: 1.0.0
1248 + postcss: 8.4.38
1249 + postcss-value-parser: 4.2.0
1250 + dev: true
1251 +
1252 + /available-typed-arrays@1.0.7:
1253 + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
1254 + engines: {node: '>= 0.4'}
1255 + dependencies:
1256 + possible-typed-array-names: 1.0.0
1257 + dev: false
1258 +
1259 + /axe-core@4.7.0:
1260 + resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
1261 + engines: {node: '>=4'}
1262 + dev: false
1263 +
1264 + /axobject-query@3.2.1:
1265 + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
1266 + dependencies:
1267 + dequal: 2.0.3
1268 + dev: false
1269 +
1270 + /axobject-query@4.0.0:
1271 + resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==, tarball: https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz}
1272 + dependencies:
1273 + dequal: 2.0.3
1274 + dev: false
1275 +
1276 + /balanced-match@1.0.2:
1277 + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1278 +
1279 + /binary-extensions@2.3.0:
1280 + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
1281 + engines: {node: '>=8'}
1282 + dev: true
1283 +
1284 + /brace-expansion@1.1.11:
1285 + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
1286 + dependencies:
1287 + balanced-match: 1.0.2
1288 + concat-map: 0.0.1
1289 + dev: false
1290 +
1291 + /brace-expansion@2.0.1:
1292 + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
1293 + dependencies:
1294 + balanced-match: 1.0.2
1295 +
1296 + /braces@3.0.2:
1297 + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
1298 + engines: {node: '>=8'}
1299 + dependencies:
1300 + fill-range: 7.0.1
1301 +
1302 + /browserslist@4.23.0:
1303 + resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
1304 + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1305 + hasBin: true
1306 + dependencies:
1307 + caniuse-lite: 1.0.30001611
1308 + electron-to-chromium: 1.4.745
1309 + node-releases: 2.0.14
1310 + update-browserslist-db: 1.0.13(browserslist@4.23.0)
1311 + dev: true
1312 +
1313 + /busboy@1.6.0:
1314 + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, tarball: https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz}
1315 + engines: {node: '>=10.16.0'}
1316 + dependencies:
1317 + streamsearch: 1.1.0
1318 + dev: false
1319 +
1320 + /call-bind@1.0.7:
1321 + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
1322 + engines: {node: '>= 0.4'}
1323 + dependencies:
1324 + es-define-property: 1.0.0
1325 + es-errors: 1.3.0
1326 + function-bind: 1.1.2
1327 + get-intrinsic: 1.2.4
1328 + set-function-length: 1.2.2
1329 + dev: false
1330 +
1331 + /callsites@3.1.0:
1332 + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
1333 + engines: {node: '>=6'}
1334 + dev: false
1335 +
1336 + /camelcase-css@2.0.1:
1337 + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
1338 + engines: {node: '>= 6'}
1339 + dev: true
1340 +
1341 + /caniuse-lite@1.0.30001611:
1342 + resolution: {integrity: sha512-19NuN1/3PjA3QI8Eki55N8my4LzfkMCRLgCVfrl/slbSAchQfV0+GwjPrK3rq37As4UCLlM/DHajbKkAqbv92Q==}
1343 +
1344 + /chalk@4.1.2:
1345 + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1346 + engines: {node: '>=10'}
1347 + dependencies:
1348 + ansi-styles: 4.3.0
1349 + supports-color: 7.2.0
1350 + dev: false
1351 +
1352 + /chokidar@3.6.0:
1353 + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
1354 + engines: {node: '>= 8.10.0'}
1355 + dependencies:
1356 + anymatch: 3.1.3
1357 + braces: 3.0.2
1358 + glob-parent: 5.1.2
1359 + is-binary-path: 2.1.0
1360 + is-glob: 4.0.3
1361 + normalize-path: 3.0.0
1362 + readdirp: 3.6.0
1363 + optionalDependencies:
1364 + fsevents: 2.3.3
1365 + dev: true
1366 +
1367 + /class-variance-authority@0.7.0:
1368 + resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
1369 + dependencies:
1370 + clsx: 2.0.0
1371 + dev: false
1372 +
1373 + /client-only@0.0.1:
1374 + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, tarball: https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz}
1375 + dev: false
1376 +
1377 + /clsx@1.2.1:
1378 + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
1379 + engines: {node: '>=6'}
1380 + dev: false
1381 +
1382 + /clsx@2.0.0:
1383 + resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
1384 + engines: {node: '>=6'}
1385 + dev: false
1386 +
1387 + /code-red@1.0.4:
1388 + resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==, tarball: https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz}
1389 + dependencies:
1390 + '@jridgewell/sourcemap-codec': 1.4.15
1391 + '@types/estree': 1.0.5
1392 + acorn: 8.11.3
1393 + estree-walker: 3.0.3
1394 + periscopic: 3.1.0
1395 + dev: false
1396 +
1397 + /color-convert@2.0.1:
1398 + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1399 + engines: {node: '>=7.0.0'}
1400 + dependencies:
1401 + color-name: 1.1.4
1402 +
1403 + /color-name@1.1.4:
1404 + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1405 +
1406 + /commander@4.1.1:
1407 + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
1408 + engines: {node: '>= 6'}
1409 + dev: true
1410 +
1411 + /concat-map@0.0.1:
1412 + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1413 + dev: false
1414 +
1415 + /cross-spawn@7.0.3:
1416 + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
1417 + engines: {node: '>= 8'}
1418 + dependencies:
1419 + path-key: 3.1.1
1420 + shebang-command: 2.0.0
1421 + which: 2.0.2
1422 +
1423 + /css-tree@2.3.1:
1424 + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==, tarball: https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz}
1425 + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
1426 + dependencies:
1427 + mdn-data: 2.0.30
1428 + source-map-js: 1.2.0
1429 + dev: false
1430 +
1431 + /cssesc@3.0.0:
1432 + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
1433 + engines: {node: '>=4'}
1434 + hasBin: true
1435 + dev: true
1436 +
1437 + /csstype@3.1.3:
1438 + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
1439 + dev: false
1440 +
1441 + /damerau-levenshtein@1.0.8:
1442 + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
1443 + dev: false
1444 +
1445 + /data-view-buffer@1.0.1:
1446 + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
1447 + engines: {node: '>= 0.4'}
1448 + dependencies:
1449 + call-bind: 1.0.7
1450 + es-errors: 1.3.0
1451 + is-data-view: 1.0.1
1452 + dev: false
1453 +
1454 + /data-view-byte-length@1.0.1:
1455 + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
1456 + engines: {node: '>= 0.4'}
1457 + dependencies:
1458 + call-bind: 1.0.7
1459 + es-errors: 1.3.0
1460 + is-data-view: 1.0.1
1461 + dev: false
1462 +
1463 + /data-view-byte-offset@1.0.0:
1464 + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
1465 + engines: {node: '>= 0.4'}
1466 + dependencies:
1467 + call-bind: 1.0.7
1468 + es-errors: 1.3.0
1469 + is-data-view: 1.0.1
1470 + dev: false
1471 +
1472 + /debug@3.2.7:
1473 + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
1474 + peerDependencies:
1475 + supports-color: '*'
1476 + peerDependenciesMeta:
1477 + supports-color:
1478 + optional: true
1479 + dependencies:
1480 + ms: 2.1.3
1481 + dev: false
1482 +
1483 + /debug@4.3.4:
1484 + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
1485 + engines: {node: '>=6.0'}
1486 + peerDependencies:
1487 + supports-color: '*'
1488 + peerDependenciesMeta:
1489 + supports-color:
1490 + optional: true
1491 + dependencies:
1492 + ms: 2.1.2
1493 + dev: false
1494 +
1495 + /deep-is@0.1.4:
1496 + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1497 + dev: false
1498 +
1499 + /define-data-property@1.1.4:
1500 + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
1501 + engines: {node: '>= 0.4'}
1502 + dependencies:
1503 + es-define-property: 1.0.0
1504 + es-errors: 1.3.0
1505 + gopd: 1.0.1
1506 + dev: false
1507 +
1508 + /define-properties@1.2.1:
1509 + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
1510 + engines: {node: '>= 0.4'}
1511 + dependencies:
1512 + define-data-property: 1.1.4
1513 + has-property-descriptors: 1.0.2
1514 + object-keys: 1.1.1
1515 + dev: false
1516 +
1517 + /dequal@2.0.3:
1518 + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
1519 + engines: {node: '>=6'}
1520 + dev: false
1521 +
1522 + /didyoumean@1.2.2:
1523 + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
1524 + dev: true
1525 +
1526 + /dir-glob@3.0.1:
1527 + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1528 + engines: {node: '>=8'}
1529 + dependencies:
1530 + path-type: 4.0.0
1531 + dev: false
1532 +
1533 + /dlv@1.1.3:
1534 + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
1535 + dev: true
1536 +
1537 + /doctrine@2.1.0:
1538 + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
1539 + engines: {node: '>=0.10.0'}
1540 + dependencies:
1541 + esutils: 2.0.3
1542 + dev: false
1543 +
1544 + /doctrine@3.0.0:
1545 + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
1546 + engines: {node: '>=6.0.0'}
1547 + dependencies:
1548 + esutils: 2.0.3
1549 + dev: false
1550 +
1551 + /eastasianwidth@0.2.0:
1552 + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
1553 +
1554 + /electron-to-chromium@1.4.745:
1555 + resolution: {integrity: sha512-tRbzkaRI5gbUn5DEvF0dV4TQbMZ5CLkWeTAXmpC9IrYT+GE+x76i9p+o3RJ5l9XmdQlI1pPhVtE9uNcJJ0G0EA==}
1556 + dev: true
1557 +
1558 + /emoji-regex@8.0.0:
1559 + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, tarball: https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz}
1560 +
1561 + /emoji-regex@9.2.2:
1562 + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
1563 +
1564 + /enhanced-resolve@5.16.0:
1565 + resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
1566 + engines: {node: '>=10.13.0'}
1567 + dependencies:
1568 + graceful-fs: 4.2.11
1569 + tapable: 2.2.1
1570 + dev: false
1571 +
1572 + /entities@4.5.0:
1573 + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, tarball: https://registry.npmjs.org/entities/-/entities-4.5.0.tgz}
1574 + engines: {node: '>=0.12'}
1575 + dev: false
1576 +
1577 + /es-abstract@1.23.3:
1578 + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
1579 + engines: {node: '>= 0.4'}
1580 + dependencies:
1581 + array-buffer-byte-length: 1.0.1
1582 + arraybuffer.prototype.slice: 1.0.3
1583 + available-typed-arrays: 1.0.7
1584 + call-bind: 1.0.7
1585 + data-view-buffer: 1.0.1
1586 + data-view-byte-length: 1.0.1
1587 + data-view-byte-offset: 1.0.0
1588 + es-define-property: 1.0.0
1589 + es-errors: 1.3.0
1590 + es-object-atoms: 1.0.0
1591 + es-set-tostringtag: 2.0.3
1592 + es-to-primitive: 1.2.1
1593 + function.prototype.name: 1.1.6
1594 + get-intrinsic: 1.2.4
1595 + get-symbol-description: 1.0.2
1596 + globalthis: 1.0.3
1597 + gopd: 1.0.1
1598 + has-property-descriptors: 1.0.2
1599 + has-proto: 1.0.3
1600 + has-symbols: 1.0.3
1601 + hasown: 2.0.2
1602 + internal-slot: 1.0.7
1603 + is-array-buffer: 3.0.4
1604 + is-callable: 1.2.7
1605 + is-data-view: 1.0.1
1606 + is-negative-zero: 2.0.3
1607 + is-regex: 1.1.4
1608 + is-shared-array-buffer: 1.0.3
1609 + is-string: 1.0.7
1610 + is-typed-array: 1.1.13
1611 + is-weakref: 1.0.2
1612 + object-inspect: 1.13.1
1613 + object-keys: 1.1.1
1614 + object.assign: 4.1.5
1615 + regexp.prototype.flags: 1.5.2
1616 + safe-array-concat: 1.1.2
1617 + safe-regex-test: 1.0.3
1618 + string.prototype.trim: 1.2.9
1619 + string.prototype.trimend: 1.0.8
1620 + string.prototype.trimstart: 1.0.8
1621 + typed-array-buffer: 1.0.2
1622 + typed-array-byte-length: 1.0.1
1623 + typed-array-byte-offset: 1.0.2
1624 + typed-array-length: 1.0.6
1625 + unbox-primitive: 1.0.2
1626 + which-typed-array: 1.1.15
1627 + dev: false
1628 +
1629 + /es-define-property@1.0.0:
1630 + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
1631 + engines: {node: '>= 0.4'}
1632 + dependencies:
1633 + get-intrinsic: 1.2.4
1634 + dev: false
1635 +
1636 + /es-errors@1.3.0:
1637 + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
1638 + engines: {node: '>= 0.4'}
1639 + dev: false
1640 +
1641 + /es-iterator-helpers@1.0.18:
1642 + resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==}
1643 + engines: {node: '>= 0.4'}
1644 + dependencies:
1645 + call-bind: 1.0.7
1646 + define-properties: 1.2.1
1647 + es-abstract: 1.23.3
1648 + es-errors: 1.3.0
1649 + es-set-tostringtag: 2.0.3
1650 + function-bind: 1.1.2
1651 + get-intrinsic: 1.2.4
1652 + globalthis: 1.0.3
1653 + has-property-descriptors: 1.0.2
1654 + has-proto: 1.0.3
1655 + has-symbols: 1.0.3
1656 + internal-slot: 1.0.7
1657 + iterator.prototype: 1.1.2
1658 + safe-array-concat: 1.1.2
1659 + dev: false
1660 +
1661 + /es-object-atoms@1.0.0:
1662 + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
1663 + engines: {node: '>= 0.4'}
1664 + dependencies:
1665 + es-errors: 1.3.0
1666 + dev: false
1667 +
1668 + /es-set-tostringtag@2.0.3:
1669 + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
1670 + engines: {node: '>= 0.4'}
1671 + dependencies:
1672 + get-intrinsic: 1.2.4
1673 + has-tostringtag: 1.0.2
1674 + hasown: 2.0.2
1675 + dev: false
1676 +
1677 + /es-shim-unscopables@1.0.2:
1678 + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
1679 + dependencies:
1680 + hasown: 2.0.2
1681 + dev: false
1682 +
1683 + /es-to-primitive@1.2.1:
1684 + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
1685 + engines: {node: '>= 0.4'}
1686 + dependencies:
1687 + is-callable: 1.2.7
1688 + is-date-object: 1.0.5
1689 + is-symbol: 1.0.4
1690 + dev: false
1691 +
1692 + /escalade@3.1.2:
1693 + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
1694 + engines: {node: '>=6'}
1695 + dev: true
1696 +
1697 + /escape-string-regexp@4.0.0:
1698 + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1699 + engines: {node: '>=10'}
1700 + dev: false
1701 +
1702 + /eslint-config-next@14.1.0(eslint@8.32.0)(typescript@4.9.4):
1703 + resolution: {integrity: sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==}
1704 + peerDependencies:
1705 + eslint: ^7.23.0 || ^8.0.0
1706 + typescript: '>=3.3.1'
1707 + peerDependenciesMeta:
1708 + typescript:
1709 + optional: true
1710 + dependencies:
1711 + '@next/eslint-plugin-next': 14.1.0
1712 + '@rushstack/eslint-patch': 1.10.2
1713 + '@typescript-eslint/parser': 6.21.0(eslint@8.32.0)(typescript@4.9.4)
1714 + eslint: 8.32.0
1715 + eslint-import-resolver-node: 0.3.9
1716 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.32.0)
1717 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.32.0)
1718 + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.32.0)
1719 + eslint-plugin-react: 7.34.1(eslint@8.32.0)
1720 + eslint-plugin-react-hooks: 4.6.0(eslint@8.32.0)
1721 + typescript: 4.9.4
1722 + transitivePeerDependencies:
1723 + - eslint-import-resolver-webpack
1724 + - supports-color
1725 + dev: false
1726 +
1727 + /eslint-import-resolver-node@0.3.9:
1728 + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
1729 + dependencies:
1730 + debug: 3.2.7
1731 + is-core-module: 2.13.1
1732 + resolve: 1.22.8
1733 + transitivePeerDependencies:
1734 + - supports-color
1735 + dev: false
1736 +
1737 + /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.32.0):
1738 + resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
1739 + engines: {node: ^14.18.0 || >=16.0.0}
1740 + peerDependencies:
1741 + eslint: '*'
1742 + eslint-plugin-import: '*'
1743 + dependencies:
1744 + debug: 4.3.4
1745 + enhanced-resolve: 5.16.0
1746 + eslint: 8.32.0
1747 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.32.0)
1748 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.32.0)
1749 + fast-glob: 3.3.2
1750 + get-tsconfig: 4.7.3
1751 + is-core-module: 2.13.1
1752 + is-glob: 4.0.3
1753 + transitivePeerDependencies:
1754 + - '@typescript-eslint/parser'
1755 + - eslint-import-resolver-node
1756 + - eslint-import-resolver-webpack
1757 + - supports-color
1758 + dev: false
1759 +
1760 + /eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.32.0):
1761 + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
1762 + engines: {node: '>=4'}
1763 + peerDependencies:
1764 + '@typescript-eslint/parser': '*'
1765 + eslint: '*'
1766 + eslint-import-resolver-node: '*'
1767 + eslint-import-resolver-typescript: '*'
1768 + eslint-import-resolver-webpack: '*'
1769 + peerDependenciesMeta:
1770 + '@typescript-eslint/parser':
1771 + optional: true
1772 + eslint:
1773 + optional: true
1774 + eslint-import-resolver-node:
1775 + optional: true
1776 + eslint-import-resolver-typescript:
1777 + optional: true
1778 + eslint-import-resolver-webpack:
1779 + optional: true
1780 + dependencies:
1781 + '@typescript-eslint/parser': 6.21.0(eslint@8.32.0)(typescript@4.9.4)
1782 + debug: 3.2.7
1783 + eslint: 8.32.0
1784 + eslint-import-resolver-node: 0.3.9
1785 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.32.0)
1786 + transitivePeerDependencies:
1787 + - supports-color
1788 + dev: false
1789 +
1790 + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.32.0):
1791 + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
1792 + engines: {node: '>=4'}
1793 + peerDependencies:
1794 + '@typescript-eslint/parser': '*'
1795 + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
1796 + peerDependenciesMeta:
1797 + '@typescript-eslint/parser':
1798 + optional: true
1799 + dependencies:
1800 + '@typescript-eslint/parser': 6.21.0(eslint@8.32.0)(typescript@4.9.4)
1801 + array-includes: 3.1.8
1802 + array.prototype.findlastindex: 1.2.5
1803 + array.prototype.flat: 1.3.2
1804 + array.prototype.flatmap: 1.3.2
1805 + debug: 3.2.7
1806 + doctrine: 2.1.0
1807 + eslint: 8.32.0
1808 + eslint-import-resolver-node: 0.3.9
1809 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.32.0)
1810 + hasown: 2.0.2
1811 + is-core-module: 2.13.1
1812 + is-glob: 4.0.3
1813 + minimatch: 3.1.2
1814 + object.fromentries: 2.0.8
1815 + object.groupby: 1.0.3
1816 + object.values: 1.2.0
1817 + semver: 6.3.1
1818 + tsconfig-paths: 3.15.0
1819 + transitivePeerDependencies:
1820 + - eslint-import-resolver-typescript
1821 + - eslint-import-resolver-webpack
1822 + - supports-color
1823 + dev: false
1824 +
1825 + /eslint-plugin-jsx-a11y@6.8.0(eslint@8.32.0):
1826 + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
1827 + engines: {node: '>=4.0'}
1828 + peerDependencies:
1829 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1830 + dependencies:
1831 + '@babel/runtime': 7.24.4
1832 + aria-query: 5.3.0
1833 + array-includes: 3.1.8
1834 + array.prototype.flatmap: 1.3.2
1835 + ast-types-flow: 0.0.8
1836 + axe-core: 4.7.0
1837 + axobject-query: 3.2.1
1838 + damerau-levenshtein: 1.0.8
1839 + emoji-regex: 9.2.2
1840 + es-iterator-helpers: 1.0.18
1841 + eslint: 8.32.0
1842 + hasown: 2.0.2
1843 + jsx-ast-utils: 3.3.5
1844 + language-tags: 1.0.9
1845 + minimatch: 3.1.2
1846 + object.entries: 1.1.8
1847 + object.fromentries: 2.0.8
1848 + dev: false
1849 +
1850 + /eslint-plugin-react-hooks@4.6.0(eslint@8.32.0):
1851 + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
1852 + engines: {node: '>=10'}
1853 + peerDependencies:
1854 + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1855 + dependencies:
1856 + eslint: 8.32.0
1857 + dev: false
1858 +
1859 + /eslint-plugin-react@7.34.1(eslint@8.32.0):
1860 + resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==}
1861 + engines: {node: '>=4'}
1862 + peerDependencies:
1863 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1864 + dependencies:
1865 + array-includes: 3.1.8
1866 + array.prototype.findlast: 1.2.5
1867 + array.prototype.flatmap: 1.3.2
1868 + array.prototype.toreversed: 1.1.2
1869 + array.prototype.tosorted: 1.1.3
1870 + doctrine: 2.1.0
1871 + es-iterator-helpers: 1.0.18
1872 + eslint: 8.32.0
1873 + estraverse: 5.3.0
1874 + jsx-ast-utils: 3.3.5
1875 + minimatch: 3.1.2
1876 + object.entries: 1.1.8
1877 + object.fromentries: 2.0.8
1878 + object.hasown: 1.1.4
1879 + object.values: 1.2.0
1880 + prop-types: 15.8.1
1881 + resolve: 2.0.0-next.5
1882 + semver: 6.3.1
1883 + string.prototype.matchall: 4.0.11
1884 + dev: false
1885 +
1886 + /eslint-scope@7.2.2:
1887 + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
1888 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1889 + dependencies:
1890 + esrecurse: 4.3.0
1891 + estraverse: 5.3.0
1892 + dev: false
1893 +
1894 + /eslint-utils@3.0.0(eslint@8.32.0):
1895 + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
1896 + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
1897 + peerDependencies:
1898 + eslint: '>=5'
1899 + dependencies:
1900 + eslint: 8.32.0
1901 + eslint-visitor-keys: 2.1.0
1902 + dev: false
1903 +
1904 + /eslint-visitor-keys@2.1.0:
1905 + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
1906 + engines: {node: '>=10'}
1907 + dev: false
1908 +
1909 + /eslint-visitor-keys@3.4.3:
1910 + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1911 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1912 + dev: false
1913 +
1914 + /eslint@8.32.0:
1915 + resolution: {integrity: sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==}
1916 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1917 + hasBin: true
1918 + dependencies:
1919 + '@eslint/eslintrc': 1.4.1
1920 + '@humanwhocodes/config-array': 0.11.14
1921 + '@humanwhocodes/module-importer': 1.0.1
1922 + '@nodelib/fs.walk': 1.2.8
1923 + ajv: 6.12.6
1924 + chalk: 4.1.2
1925 + cross-spawn: 7.0.3
1926 + debug: 4.3.4
1927 + doctrine: 3.0.0
1928 + escape-string-regexp: 4.0.0
1929 + eslint-scope: 7.2.2
1930 + eslint-utils: 3.0.0(eslint@8.32.0)
1931 + eslint-visitor-keys: 3.4.3
1932 + espree: 9.6.1
1933 + esquery: 1.5.0
1934 + esutils: 2.0.3
1935 + fast-deep-equal: 3.1.3
1936 + file-entry-cache: 6.0.1
1937 + find-up: 5.0.0
1938 + glob-parent: 6.0.2
1939 + globals: 13.24.0
1940 + grapheme-splitter: 1.0.4
1941 + ignore: 5.3.1
1942 + import-fresh: 3.3.0
1943 + imurmurhash: 0.1.4
1944 + is-glob: 4.0.3
1945 + is-path-inside: 3.0.3
1946 + js-sdsl: 4.4.2
1947 + js-yaml: 4.1.0
1948 + json-stable-stringify-without-jsonify: 1.0.1
1949 + levn: 0.4.1
1950 + lodash.merge: 4.6.2
1951 + minimatch: 3.1.2
1952 + natural-compare: 1.4.0
1953 + optionator: 0.9.3
1954 + regexpp: 3.2.0
1955 + strip-ansi: 6.0.1
1956 + strip-json-comments: 3.1.1
1957 + text-table: 0.2.0
1958 + transitivePeerDependencies:
1959 + - supports-color
1960 + dev: false
1961 +
1962 + /espree@9.6.1:
1963 + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1964 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1965 + dependencies:
1966 + acorn: 8.11.3
1967 + acorn-jsx: 5.3.2(acorn@8.11.3)
1968 + eslint-visitor-keys: 3.4.3
1969 + dev: false
1970 +
1971 + /esquery@1.5.0:
1972 + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1973 + engines: {node: '>=0.10'}
1974 + dependencies:
1975 + estraverse: 5.3.0
1976 + dev: false
1977 +
1978 + /esrecurse@4.3.0:
1979 + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1980 + engines: {node: '>=4.0'}
1981 + dependencies:
1982 + estraverse: 5.3.0
1983 + dev: false
1984 +
1985 + /estraverse@5.3.0:
1986 + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1987 + engines: {node: '>=4.0'}
1988 + dev: false
1989 +
1990 + /estree-walker@2.0.2:
1991 + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, tarball: https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz}
1992 + dev: false
1993 +
1994 + /estree-walker@3.0.3:
1995 + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, tarball: https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz}
1996 + dependencies:
1997 + '@types/estree': 1.0.5
1998 + dev: false
1999 +
2000 + /esutils@2.0.3:
2001 + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
2002 + engines: {node: '>=0.10.0'}
2003 + dev: false
2004 +
2005 + /eventsource-parser@1.0.0:
2006 + resolution: {integrity: sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==}
2007 + engines: {node: '>=14.18'}
2008 + dev: false
2009 +
2010 + /fast-deep-equal@3.1.3:
2011 + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
2012 + dev: false
2013 +
2014 + /fast-glob@3.3.2:
2015 + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
2016 + engines: {node: '>=8.6.0'}
2017 + dependencies:
2018 + '@nodelib/fs.stat': 2.0.5
2019 + '@nodelib/fs.walk': 1.2.8
2020 + glob-parent: 5.1.2
2021 + merge2: 1.4.1
2022 + micromatch: 4.0.5
2023 +
2024 + /fast-json-stable-stringify@2.1.0:
2025 + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
2026 + dev: false
2027 +
2028 + /fast-levenshtein@2.0.6:
2029 + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
2030 + dev: false
2031 +
2032 + /fastq@1.17.1:
2033 + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
2034 + dependencies:
2035 + reusify: 1.0.4
2036 +
2037 + /file-entry-cache@6.0.1:
2038 + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
2039 + engines: {node: ^10.12.0 || >=12.0.0}
2040 + dependencies:
2041 + flat-cache: 3.2.0
2042 + dev: false
2043 +
2044 + /fill-range@7.0.1:
2045 + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
2046 + engines: {node: '>=8'}
2047 + dependencies:
2048 + to-regex-range: 5.0.1
2049 +
2050 + /find-up@5.0.0:
2051 + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
2052 + engines: {node: '>=10'}
2053 + dependencies:
2054 + locate-path: 6.0.0
2055 + path-exists: 4.0.0
2056 + dev: false
2057 +
2058 + /flat-cache@3.2.0:
2059 + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
2060 + engines: {node: ^10.12.0 || >=12.0.0}
2061 + dependencies:
2062 + flatted: 3.3.1
2063 + keyv: 4.5.4
2064 + rimraf: 3.0.2
2065 + dev: false
2066 +
2067 + /flatted@3.3.1:
2068 + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
2069 + dev: false
2070 +
2071 + /for-each@0.3.3:
2072 + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
2073 + dependencies:
2074 + is-callable: 1.2.7
2075 + dev: false
2076 +
2077 + /foreground-child@3.1.1:
2078 + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
2079 + engines: {node: '>=14'}
2080 + dependencies:
2081 + cross-spawn: 7.0.3
2082 + signal-exit: 4.1.0
2083 +
2084 + /fraction.js@4.3.7:
2085 + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
2086 + dev: true
2087 +
2088 + /fs.realpath@1.0.0:
2089 + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
2090 + dev: false
2091 +
2092 + /fsevents@2.3.3:
2093 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, tarball: https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz}
2094 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
2095 + os: [darwin]
2096 + requiresBuild: true
2097 + dev: true
2098 + optional: true
2099 +
2100 + /function-bind@1.1.2:
2101 + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
2102 +
2103 + /function.prototype.name@1.1.6:
2104 + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
2105 + engines: {node: '>= 0.4'}
2106 + dependencies:
2107 + call-bind: 1.0.7
2108 + define-properties: 1.2.1
2109 + es-abstract: 1.23.3
2110 + functions-have-names: 1.2.3
2111 + dev: false
2112 +
2113 + /functions-have-names@1.2.3:
2114 + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
2115 + dev: false
2116 +
2117 + /get-intrinsic@1.2.4:
2118 + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
2119 + engines: {node: '>= 0.4'}
2120 + dependencies:
2121 + es-errors: 1.3.0
2122 + function-bind: 1.1.2
2123 + has-proto: 1.0.3
2124 + has-symbols: 1.0.3
2125 + hasown: 2.0.2
2126 + dev: false
2127 +
2128 + /get-symbol-description@1.0.2:
2129 + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
2130 + engines: {node: '>= 0.4'}
2131 + dependencies:
2132 + call-bind: 1.0.7
2133 + es-errors: 1.3.0
2134 + get-intrinsic: 1.2.4
2135 + dev: false
2136 +
2137 + /get-tsconfig@4.7.3:
2138 + resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==}
2139 + dependencies:
2140 + resolve-pkg-maps: 1.0.0
2141 + dev: false
2142 +
2143 + /glob-parent@5.1.2:
2144 + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
2145 + engines: {node: '>= 6'}
2146 + dependencies:
2147 + is-glob: 4.0.3
2148 +
2149 + /glob-parent@6.0.2:
2150 + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
2151 + engines: {node: '>=10.13.0'}
2152 + dependencies:
2153 + is-glob: 4.0.3
2154 +
2155 + /glob@10.3.10:
2156 + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
2157 + engines: {node: '>=16 || 14 >=14.17'}
2158 + hasBin: true
2159 + dependencies:
2160 + foreground-child: 3.1.1
2161 + jackspeak: 2.3.6
2162 + minimatch: 9.0.4
2163 + minipass: 7.0.4
2164 + path-scurry: 1.10.2
2165 + dev: false
2166 +
2167 + /glob@10.3.12:
2168 + resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
2169 + engines: {node: '>=16 || 14 >=14.17'}
2170 + hasBin: true
2171 + dependencies:
2172 + foreground-child: 3.1.1
2173 + jackspeak: 2.3.6
2174 + minimatch: 9.0.4
2175 + minipass: 7.0.4
2176 + path-scurry: 1.10.2
2177 + dev: true
2178 +
2179 + /glob@7.2.3:
2180 + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
2181 + dependencies:
2182 + fs.realpath: 1.0.0
2183 + inflight: 1.0.6
2184 + inherits: 2.0.4
2185 + minimatch: 3.1.2
2186 + once: 1.4.0
2187 + path-is-absolute: 1.0.1
2188 + dev: false
2189 +
2190 + /globals@13.24.0:
2191 + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
2192 + engines: {node: '>=8'}
2193 + dependencies:
2194 + type-fest: 0.20.2
2195 + dev: false
2196 +
2197 + /globalthis@1.0.3:
2198 + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
2199 + engines: {node: '>= 0.4'}
2200 + dependencies:
2201 + define-properties: 1.2.1
2202 + dev: false
2203 +
2204 + /globby@11.1.0:
2205 + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
2206 + engines: {node: '>=10'}
2207 + dependencies:
2208 + array-union: 2.1.0
2209 + dir-glob: 3.0.1
2210 + fast-glob: 3.3.2
2211 + ignore: 5.3.1
2212 + merge2: 1.4.1
2213 + slash: 3.0.0
2214 + dev: false
2215 +
2216 + /goober@2.1.14(csstype@3.1.3):
2217 + resolution: {integrity: sha512-4UpC0NdGyAFqLNPnhCT2iHpza2q+RAY3GV85a/mRPdzyPQMsj0KmMMuetdIkzWRbJ+Hgau1EZztq8ImmiMGhsg==}
2218 + peerDependencies:
2219 + csstype: ^3.0.10
2220 + dependencies:
2221 + csstype: 3.1.3
2222 + dev: false
2223 +
2224 + /gopd@1.0.1:
2225 + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
2226 + dependencies:
2227 + get-intrinsic: 1.2.4
2228 + dev: false
2229 +
2230 + /graceful-fs@4.2.11:
2231 + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, tarball: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz}
2232 + dev: false
2233 +
2234 + /grapheme-splitter@1.0.4:
2235 + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
2236 + dev: false
2237 +
2238 + /has-bigints@1.0.2:
2239 + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
2240 + dev: false
2241 +
2242 + /has-flag@4.0.0:
2243 + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
2244 + engines: {node: '>=8'}
2245 + dev: false
2246 +
2247 + /has-property-descriptors@1.0.2:
2248 + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
2249 + dependencies:
2250 + es-define-property: 1.0.0
2251 + dev: false
2252 +
2253 + /has-proto@1.0.3:
2254 + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
2255 + engines: {node: '>= 0.4'}
2256 + dev: false
2257 +
2258 + /has-symbols@1.0.3:
2259 + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
2260 + engines: {node: '>= 0.4'}
2261 + dev: false
2262 +
2263 + /has-tostringtag@1.0.2:
2264 + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
2265 + engines: {node: '>= 0.4'}
2266 + dependencies:
2267 + has-symbols: 1.0.3
2268 + dev: false
2269 +
2270 + /hasown@2.0.2:
2271 + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
2272 + engines: {node: '>= 0.4'}
2273 + dependencies:
2274 + function-bind: 1.1.2
2275 +
2276 + /ignore@5.3.1:
2277 + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
2278 + engines: {node: '>= 4'}
2279 + dev: false
2280 +
2281 + /import-fresh@3.3.0:
2282 + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
2283 + engines: {node: '>=6'}
2284 + dependencies:
2285 + parent-module: 1.0.1
2286 + resolve-from: 4.0.0
2287 + dev: false
2288 +
2289 + /imurmurhash@0.1.4:
2290 + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
2291 + engines: {node: '>=0.8.19'}
2292 + dev: false
2293 +
2294 + /inflight@1.0.6:
2295 + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
2296 + dependencies:
2297 + once: 1.4.0
2298 + wrappy: 1.0.2
2299 + dev: false
2300 +
2301 + /inherits@2.0.4:
2302 + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
2303 + dev: false
2304 +
2305 + /internal-slot@1.0.7:
2306 + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
2307 + engines: {node: '>= 0.4'}
2308 + dependencies:
2309 + es-errors: 1.3.0
2310 + hasown: 2.0.2
2311 + side-channel: 1.0.6
2312 + dev: false
2313 +
2314 + /is-array-buffer@3.0.4:
2315 + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
2316 + engines: {node: '>= 0.4'}
2317 + dependencies:
2318 + call-bind: 1.0.7
2319 + get-intrinsic: 1.2.4
2320 + dev: false
2321 +
2322 + /is-async-function@2.0.0:
2323 + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
2324 + engines: {node: '>= 0.4'}
2325 + dependencies:
2326 + has-tostringtag: 1.0.2
2327 + dev: false
2328 +
2329 + /is-bigint@1.0.4:
2330 + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
2331 + dependencies:
2332 + has-bigints: 1.0.2
2333 + dev: false
2334 +
2335 + /is-binary-path@2.1.0:
2336 + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
2337 + engines: {node: '>=8'}
2338 + dependencies:
2339 + binary-extensions: 2.3.0
2340 + dev: true
2341 +
2342 + /is-boolean-object@1.1.2:
2343 + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
2344 + engines: {node: '>= 0.4'}
2345 + dependencies:
2346 + call-bind: 1.0.7
2347 + has-tostringtag: 1.0.2
2348 + dev: false
2349 +
2350 + /is-callable@1.2.7:
2351 + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
2352 + engines: {node: '>= 0.4'}
2353 + dev: false
2354 +
2355 + /is-core-module@2.13.1:
2356 + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
2357 + dependencies:
2358 + hasown: 2.0.2
2359 +
2360 + /is-data-view@1.0.1:
2361 + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
2362 + engines: {node: '>= 0.4'}
2363 + dependencies:
2364 + is-typed-array: 1.1.13
2365 + dev: false
2366 +
2367 + /is-date-object@1.0.5:
2368 + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
2369 + engines: {node: '>= 0.4'}
2370 + dependencies:
2371 + has-tostringtag: 1.0.2
2372 + dev: false
2373 +
2374 + /is-extglob@2.1.1:
2375 + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
2376 + engines: {node: '>=0.10.0'}
2377 +
2378 + /is-finalizationregistry@1.0.2:
2379 + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
2380 + dependencies:
2381 + call-bind: 1.0.7
2382 + dev: false
2383 +
2384 + /is-fullwidth-code-point@3.0.0:
2385 + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, tarball: https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz}
2386 + engines: {node: '>=8'}
2387 +
2388 + /is-generator-function@1.0.10:
2389 + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
2390 + engines: {node: '>= 0.4'}
2391 + dependencies:
2392 + has-tostringtag: 1.0.2
2393 + dev: false
2394 +
2395 + /is-glob@4.0.3:
2396 + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
2397 + engines: {node: '>=0.10.0'}
2398 + dependencies:
2399 + is-extglob: 2.1.1
2400 +
2401 + /is-map@2.0.3:
2402 + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
2403 + engines: {node: '>= 0.4'}
2404 + dev: false
2405 +
2406 + /is-negative-zero@2.0.3:
2407 + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
2408 + engines: {node: '>= 0.4'}
2409 + dev: false
2410 +
2411 + /is-number-object@1.0.7:
2412 + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
2413 + engines: {node: '>= 0.4'}
2414 + dependencies:
2415 + has-tostringtag: 1.0.2
2416 + dev: false
2417 +
2418 + /is-number@7.0.0:
2419 + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
2420 + engines: {node: '>=0.12.0'}
2421 +
2422 + /is-path-inside@3.0.3:
2423 + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
2424 + engines: {node: '>=8'}
2425 + dev: false
2426 +
2427 + /is-reference@3.0.2:
2428 + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==, tarball: https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz}
2429 + dependencies:
2430 + '@types/estree': 1.0.5
2431 + dev: false
2432 +
2433 + /is-regex@1.1.4:
2434 + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
2435 + engines: {node: '>= 0.4'}
2436 + dependencies:
2437 + call-bind: 1.0.7
2438 + has-tostringtag: 1.0.2
2439 + dev: false
2440 +
2441 + /is-set@2.0.3:
2442 + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
2443 + engines: {node: '>= 0.4'}
2444 + dev: false
2445 +
2446 + /is-shared-array-buffer@1.0.3:
2447 + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
2448 + engines: {node: '>= 0.4'}
2449 + dependencies:
2450 + call-bind: 1.0.7
2451 + dev: false
2452 +
2453 + /is-string@1.0.7:
2454 + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
2455 + engines: {node: '>= 0.4'}
2456 + dependencies:
2457 + has-tostringtag: 1.0.2
2458 + dev: false
2459 +
2460 + /is-symbol@1.0.4:
2461 + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
2462 + engines: {node: '>= 0.4'}
2463 + dependencies:
2464 + has-symbols: 1.0.3
2465 + dev: false
2466 +
2467 + /is-typed-array@1.1.13:
2468 + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
2469 + engines: {node: '>= 0.4'}
2470 + dependencies:
2471 + which-typed-array: 1.1.15
2472 + dev: false
2473 +
2474 + /is-weakmap@2.0.2:
2475 + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
2476 + engines: {node: '>= 0.4'}
2477 + dev: false
2478 +
2479 + /is-weakref@1.0.2:
2480 + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
2481 + dependencies:
2482 + call-bind: 1.0.7
2483 + dev: false
2484 +
2485 + /is-weakset@2.0.3:
2486 + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
2487 + engines: {node: '>= 0.4'}
2488 + dependencies:
2489 + call-bind: 1.0.7
2490 + get-intrinsic: 1.2.4
2491 + dev: false
2492 +
2493 + /isarray@2.0.5:
2494 + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
2495 + dev: false
2496 +
2497 + /isexe@2.0.0:
2498 + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
2499 +
2500 + /iterator.prototype@1.1.2:
2501 + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
2502 + dependencies:
2503 + define-properties: 1.2.1
2504 + get-intrinsic: 1.2.4
2505 + has-symbols: 1.0.3
2506 + reflect.getprototypeof: 1.0.6
2507 + set-function-name: 2.0.2
2508 + dev: false
2509 +
2510 + /jackspeak@2.3.6:
2511 + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
2512 + engines: {node: '>=14'}
2513 + dependencies:
2514 + '@isaacs/cliui': 8.0.2
2515 + optionalDependencies:
2516 + '@pkgjs/parseargs': 0.11.0
2517 +
2518 + /jiti@1.21.0:
2519 + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
2520 + hasBin: true
2521 + dev: true
2522 +
2523 + /js-sdsl@4.4.2:
2524 + resolution: {integrity: sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w==}
2525 + dev: false
2526 +
2527 + /js-tokens@4.0.0:
2528 + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
2529 + dev: false
2530 +
2531 + /js-yaml@4.1.0:
2532 + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
2533 + hasBin: true
2534 + dependencies:
2535 + argparse: 2.0.1
2536 + dev: false
2537 +
2538 + /json-buffer@3.0.1:
2539 + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
2540 + dev: false
2541 +
2542 + /json-schema-traverse@0.4.1:
2543 + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
2544 + dev: false
2545 +
2546 + /json-stable-stringify-without-jsonify@1.0.1:
2547 + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
2548 + dev: false
2549 +
2550 + /json5@1.0.2:
2551 + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
2552 + hasBin: true
2553 + dependencies:
2554 + minimist: 1.2.8
2555 + dev: false
2556 +
2557 + /jsx-ast-utils@3.3.5:
2558 + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
2559 + engines: {node: '>=4.0'}
2560 + dependencies:
2561 + array-includes: 3.1.8
2562 + array.prototype.flat: 1.3.2
2563 + object.assign: 4.1.5
2564 + object.values: 1.2.0
2565 + dev: false
2566 +
2567 + /keyv@4.5.4:
2568 + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
2569 + dependencies:
2570 + json-buffer: 3.0.1
2571 + dev: false
2572 +
2573 + /language-subtag-registry@0.3.22:
2574 + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
2575 + dev: false
2576 +
2577 + /language-tags@1.0.9:
2578 + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
2579 + engines: {node: '>=0.10'}
2580 + dependencies:
2581 + language-subtag-registry: 0.3.22
2582 + dev: false
2583 +
2584 + /levn@0.4.1:
2585 + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
2586 + engines: {node: '>= 0.8.0'}
2587 + dependencies:
2588 + prelude-ls: 1.2.1
2589 + type-check: 0.4.0
2590 + dev: false
2591 +
2592 + /lilconfig@2.1.0:
2593 + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
2594 + engines: {node: '>=10'}
2595 + dev: true
2596 +
2597 + /lilconfig@3.1.1:
2598 + resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
2599 + engines: {node: '>=14'}
2600 + dev: true
2601 +
2602 + /lines-and-columns@1.2.4:
2603 + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
2604 + dev: true
2605 +
2606 + /locate-character@3.0.0:
2607 + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==, tarball: https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz}
2608 + dev: false
2609 +
2610 + /locate-path@6.0.0:
2611 + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
2612 + engines: {node: '>=10'}
2613 + dependencies:
2614 + p-locate: 5.0.0
2615 + dev: false
2616 +
2617 + /lodash.castarray@4.4.0:
2618 + resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
2619 + dev: true
2620 +
2621 + /lodash.isplainobject@4.0.6:
2622 + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
2623 + dev: true
2624 +
2625 + /lodash.merge@4.6.2:
2626 + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
2627 +
2628 + /loose-envify@1.4.0:
2629 + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
2630 + hasBin: true
2631 + dependencies:
2632 + js-tokens: 4.0.0
2633 + dev: false
2634 +
2635 + /lru-cache@10.2.0:
2636 + resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
2637 + engines: {node: 14 || >=16.14}
2638 +
2639 + /lru-cache@6.0.0:
2640 + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
2641 + engines: {node: '>=10'}
2642 + dependencies:
2643 + yallist: 4.0.0
2644 + dev: false
2645 +
2646 + /magic-string@0.30.10:
2647 + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==, tarball: https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz}
2648 + dependencies:
2649 + '@jridgewell/sourcemap-codec': 1.4.15
2650 + dev: false
2651 +
2652 + /mdn-data@2.0.30:
2653 + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==, tarball: https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz}
2654 + dev: false
2655 +
2656 + /merge2@1.4.1:
2657 + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
2658 + engines: {node: '>= 8'}
2659 +
2660 + /micromatch@4.0.5:
2661 + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
2662 + engines: {node: '>=8.6'}
2663 + dependencies:
2664 + braces: 3.0.2
2665 + picomatch: 2.3.1
2666 +
2667 + /mini-svg-data-uri@1.4.4:
2668 + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
2669 + hasBin: true
2670 + dev: true
2671 +
2672 + /minimatch@3.1.2:
2673 + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
2674 + dependencies:
2675 + brace-expansion: 1.1.11
2676 + dev: false
2677 +
2678 + /minimatch@9.0.3:
2679 + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
2680 + engines: {node: '>=16 || 14 >=14.17'}
2681 + dependencies:
2682 + brace-expansion: 2.0.1
2683 + dev: false
2684 +
2685 + /minimatch@9.0.4:
2686 + resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
2687 + engines: {node: '>=16 || 14 >=14.17'}
2688 + dependencies:
2689 + brace-expansion: 2.0.1
2690 +
2691 + /minimist@1.2.8:
2692 + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
2693 + dev: false
2694 +
2695 + /minipass@7.0.4:
2696 + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
2697 + engines: {node: '>=16 || 14 >=14.17'}
2698 +
2699 + /ms@2.1.2:
2700 + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
2701 + dev: false
2702 +
2703 + /ms@2.1.3:
2704 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
2705 + dev: false
2706 +
2707 + /mz@2.7.0:
2708 + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
2709 + dependencies:
2710 + any-promise: 1.3.0
2711 + object-assign: 4.1.1
2712 + thenify-all: 1.6.0
2713 + dev: true
2714 +
2715 + /nanoid@3.3.6:
2716 + resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, tarball: https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz}
2717 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2718 + hasBin: true
2719 + dev: false
2720 +
2721 + /nanoid@3.3.7:
2722 + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, tarball: https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz}
2723 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2724 + hasBin: true
2725 +
2726 + /nanoid@5.0.7:
2727 + resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==, tarball: https://registry.npmjs.org/nanoid/-/nanoid-5.0.7.tgz}
2728 + engines: {node: ^18 || >=20}
2729 + hasBin: true
2730 + dev: false
2731 +
2732 + /natural-compare@1.4.0:
2733 + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
2734 + dev: false
2735 +
2736 + /next@14.2.3(react-dom@18.2.0)(react@18.2.0):
2737 + resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==, tarball: https://registry.npmjs.org/next/-/next-14.2.3.tgz}
2738 + engines: {node: '>=18.17.0'}
2739 + hasBin: true
2740 + peerDependencies:
2741 + '@opentelemetry/api': ^1.1.0
2742 + '@playwright/test': ^1.41.2
2743 + react: ^18.2.0
2744 + react-dom: ^18.2.0
2745 + sass: ^1.3.0
2746 + peerDependenciesMeta:
2747 + '@opentelemetry/api':
2748 + optional: true
2749 + '@playwright/test':
2750 + optional: true
2751 + sass:
2752 + optional: true
2753 + dependencies:
2754 + '@next/env': 14.2.3
2755 + '@swc/helpers': 0.5.5
2756 + busboy: 1.6.0
2757 + caniuse-lite: 1.0.30001611
2758 + graceful-fs: 4.2.11
2759 + postcss: 8.4.31
2760 + react: 18.2.0
2761 + react-dom: 18.2.0(react@18.2.0)
2762 + styled-jsx: 5.1.1(react@18.2.0)
2763 + optionalDependencies:
2764 + '@next/swc-darwin-arm64': 14.2.3
2765 + '@next/swc-darwin-x64': 14.2.3
2766 + '@next/swc-linux-arm64-gnu': 14.2.3
2767 + '@next/swc-linux-arm64-musl': 14.2.3
2768 + '@next/swc-linux-x64-gnu': 14.2.3
2769 + '@next/swc-linux-x64-musl': 14.2.3
2770 + '@next/swc-win32-arm64-msvc': 14.2.3
2771 + '@next/swc-win32-ia32-msvc': 14.2.3
2772 + '@next/swc-win32-x64-msvc': 14.2.3
2773 + transitivePeerDependencies:
2774 + - '@babel/core'
2775 + - babel-plugin-macros
2776 + dev: false
2777 +
2778 + /node-releases@2.0.14:
2779 + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
2780 + dev: true
2781 +
2782 + /normalize-path@3.0.0:
2783 + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
2784 + engines: {node: '>=0.10.0'}
2785 + dev: true
2786 +
2787 + /normalize-range@0.1.2:
2788 + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
2789 + engines: {node: '>=0.10.0'}
2790 + dev: true
2791 +
2792 + /object-assign@4.1.1:
2793 + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
2794 + engines: {node: '>=0.10.0'}
2795 +
2796 + /object-hash@3.0.0:
2797 + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
2798 + engines: {node: '>= 6'}
2799 + dev: true
2800 +
2801 + /object-inspect@1.13.1:
2802 + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
2803 + dev: false
2804 +
2805 + /object-keys@1.1.1:
2806 + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
2807 + engines: {node: '>= 0.4'}
2808 + dev: false
2809 +
2810 + /object.assign@4.1.5:
2811 + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
2812 + engines: {node: '>= 0.4'}
2813 + dependencies:
2814 + call-bind: 1.0.7
2815 + define-properties: 1.2.1
2816 + has-symbols: 1.0.3
2817 + object-keys: 1.1.1
2818 + dev: false
2819 +
2820 + /object.entries@1.1.8:
2821 + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
2822 + engines: {node: '>= 0.4'}
2823 + dependencies:
2824 + call-bind: 1.0.7
2825 + define-properties: 1.2.1
2826 + es-object-atoms: 1.0.0
2827 + dev: false
2828 +
2829 + /object.fromentries@2.0.8:
2830 + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
2831 + engines: {node: '>= 0.4'}
2832 + dependencies:
2833 + call-bind: 1.0.7
2834 + define-properties: 1.2.1
2835 + es-abstract: 1.23.3
2836 + es-object-atoms: 1.0.0
2837 + dev: false
2838 +
2839 + /object.groupby@1.0.3:
2840 + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
2841 + engines: {node: '>= 0.4'}
2842 + dependencies:
2843 + call-bind: 1.0.7
2844 + define-properties: 1.2.1
2845 + es-abstract: 1.23.3
2846 + dev: false
2847 +
2848 + /object.hasown@1.1.4:
2849 + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
2850 + engines: {node: '>= 0.4'}
2851 + dependencies:
2852 + define-properties: 1.2.1
2853 + es-abstract: 1.23.3
2854 + es-object-atoms: 1.0.0
2855 + dev: false
2856 +
2857 + /object.values@1.2.0:
2858 + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
2859 + engines: {node: '>= 0.4'}
2860 + dependencies:
2861 + call-bind: 1.0.7
2862 + define-properties: 1.2.1
2863 + es-object-atoms: 1.0.0
2864 + dev: false
2865 +
2866 + /once@1.4.0:
2867 + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
2868 + dependencies:
2869 + wrappy: 1.0.2
2870 + dev: false
2871 +
2872 + /optionator@0.9.3:
2873 + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
2874 + engines: {node: '>= 0.8.0'}
2875 + dependencies:
2876 + '@aashutoshrathi/word-wrap': 1.2.6
2877 + deep-is: 0.1.4
2878 + fast-levenshtein: 2.0.6
2879 + levn: 0.4.1
2880 + prelude-ls: 1.2.1
2881 + type-check: 0.4.0
2882 + dev: false
2883 +
2884 + /p-limit@3.1.0:
2885 + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
2886 + engines: {node: '>=10'}
2887 + dependencies:
2888 + yocto-queue: 0.1.0
2889 + dev: false
2890 +
2891 + /p-locate@5.0.0:
2892 + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
2893 + engines: {node: '>=10'}
2894 + dependencies:
2895 + p-limit: 3.1.0
2896 + dev: false
2897 +
2898 + /parent-module@1.0.1:
2899 + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
2900 + engines: {node: '>=6'}
2901 + dependencies:
2902 + callsites: 3.1.0
2903 + dev: false
2904 +
2905 + /path-exists@4.0.0:
2906 + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
2907 + engines: {node: '>=8'}
2908 + dev: false
2909 +
2910 + /path-is-absolute@1.0.1:
2911 + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
2912 + engines: {node: '>=0.10.0'}
2913 + dev: false
2914 +
2915 + /path-key@3.1.1:
2916 + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
2917 + engines: {node: '>=8'}
2918 +
2919 + /path-parse@1.0.7:
2920 + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
2921 +
2922 + /path-scurry@1.10.2:
2923 + resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
2924 + engines: {node: '>=16 || 14 >=14.17'}
2925 + dependencies:
2926 + lru-cache: 10.2.0
2927 + minipass: 7.0.4
2928 +
2929 + /path-type@4.0.0:
2930 + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
2931 + engines: {node: '>=8'}
2932 + dev: false
2933 +
2934 + /periscopic@3.1.0:
2935 + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==, tarball: https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz}
2936 + dependencies:
2937 + '@types/estree': 1.0.5
2938 + estree-walker: 3.0.3
2939 + is-reference: 3.0.2
2940 + dev: false
2941 +
2942 + /picocolors@1.0.0:
2943 + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
2944 +
2945 + /picomatch@2.3.1:
2946 + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
2947 + engines: {node: '>=8.6'}
2948 +
2949 + /pify@2.3.0:
2950 + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
2951 + engines: {node: '>=0.10.0'}
2952 + dev: true
2953 +
2954 + /pirates@4.0.6:
2955 + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
2956 + engines: {node: '>= 6'}
2957 + dev: true
2958 +
2959 + /possible-typed-array-names@1.0.0:
2960 + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
2961 + engines: {node: '>= 0.4'}
2962 + dev: false
2963 +
2964 + /postcss-import@15.1.0(postcss@8.4.38):
2965 + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
2966 + engines: {node: '>=14.0.0'}
2967 + peerDependencies:
2968 + postcss: ^8.0.0
2969 + dependencies:
2970 + postcss: 8.4.38
2971 + postcss-value-parser: 4.2.0
2972 + read-cache: 1.0.0
2973 + resolve: 1.22.8
2974 + dev: true
2975 +
2976 + /postcss-js@4.0.1(postcss@8.4.38):
2977 + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
2978 + engines: {node: ^12 || ^14 || >= 16}
2979 + peerDependencies:
2980 + postcss: ^8.4.21
2981 + dependencies:
2982 + camelcase-css: 2.0.1
2983 + postcss: 8.4.38
2984 + dev: true
2985 +
2986 + /postcss-load-config@4.0.2(postcss@8.4.38):
2987 + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
2988 + engines: {node: '>= 14'}
2989 + peerDependencies:
2990 + postcss: '>=8.0.9'
2991 + ts-node: '>=9.0.0'
2992 + peerDependenciesMeta:
2993 + postcss:
2994 + optional: true
2995 + ts-node:
2996 + optional: true
2997 + dependencies:
2998 + lilconfig: 3.1.1
2999 + postcss: 8.4.38
3000 + yaml: 2.4.1
3001 + dev: true
3002 +
3003 + /postcss-nested@6.0.1(postcss@8.4.38):
3004 + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
3005 + engines: {node: '>=12.0'}
3006 + peerDependencies:
3007 + postcss: ^8.2.14
3008 + dependencies:
3009 + postcss: 8.4.38
3010 + postcss-selector-parser: 6.0.16
3011 + dev: true
3012 +
3013 + /postcss-selector-parser@6.0.10:
3014 + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
3015 + engines: {node: '>=4'}
3016 + dependencies:
3017 + cssesc: 3.0.0
3018 + util-deprecate: 1.0.2
3019 + dev: true
3020 +
3021 + /postcss-selector-parser@6.0.16:
3022 + resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
3023 + engines: {node: '>=4'}
3024 + dependencies:
3025 + cssesc: 3.0.0
3026 + util-deprecate: 1.0.2
3027 + dev: true
3028 +
3029 + /postcss-value-parser@4.2.0:
3030 + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
3031 + dev: true
3032 +
3033 + /postcss@8.4.31:
3034 + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, tarball: https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz}
3035 + engines: {node: ^10 || ^12 || >=14}
3036 + dependencies:
3037 + nanoid: 3.3.7
3038 + picocolors: 1.0.0
3039 + source-map-js: 1.2.0
3040 + dev: false
3041 +
3042 + /postcss@8.4.38:
3043 + resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
3044 + engines: {node: ^10 || ^12 || >=14}
3045 + dependencies:
3046 + nanoid: 3.3.7
3047 + picocolors: 1.0.0
3048 + source-map-js: 1.2.0
3049 +
3050 + /prelude-ls@1.2.1:
3051 + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
3052 + engines: {node: '>= 0.8.0'}
3053 + dev: false
3054 +
3055 + /prop-types@15.8.1:
3056 + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
3057 + dependencies:
3058 + loose-envify: 1.4.0
3059 + object-assign: 4.1.1
3060 + react-is: 16.13.1
3061 + dev: false
3062 +
3063 + /punycode@2.3.1:
3064 + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
3065 + engines: {node: '>=6'}
3066 + dev: false
3067 +
3068 + /queue-microtask@1.2.3:
3069 + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
3070 +
3071 + /react-dom@18.2.0(react@18.2.0):
3072 + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
3073 + peerDependencies:
3074 + react: ^18.2.0
3075 + dependencies:
3076 + loose-envify: 1.4.0
3077 + react: 18.2.0
3078 + scheduler: 0.23.0
3079 + dev: false
3080 +
3081 + /react-hot-toast@2.4.1(csstype@3.1.3)(react-dom@18.2.0)(react@18.2.0):
3082 + resolution: {integrity: sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==}
3083 + engines: {node: '>=10'}
3084 + peerDependencies:
3085 + react: '>=16'
3086 + react-dom: '>=16'
3087 + dependencies:
3088 + goober: 2.1.14(csstype@3.1.3)
3089 + react: 18.2.0
3090 + react-dom: 18.2.0(react@18.2.0)
3091 + transitivePeerDependencies:
3092 + - csstype
3093 + dev: false
3094 +
3095 + /react-is@16.13.1:
3096 + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
3097 + dev: false
3098 +
3099 + /react-textarea-autosize@8.5.3(@types/react@18.2.78)(react@18.2.0):
3100 + resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
3101 + engines: {node: '>=10'}
3102 + peerDependencies:
3103 + react: ^16.8.0 || ^17.0.0 || ^18.0.0
3104 + dependencies:
3105 + '@babel/runtime': 7.24.4
3106 + react: 18.2.0
3107 + use-composed-ref: 1.3.0(react@18.2.0)
3108 + use-latest: 1.2.1(@types/react@18.2.78)(react@18.2.0)
3109 + transitivePeerDependencies:
3110 + - '@types/react'
3111 + dev: false
3112 +
3113 + /react@18.2.0:
3114 + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
3115 + engines: {node: '>=0.10.0'}
3116 + dependencies:
3117 + loose-envify: 1.4.0
3118 + dev: false
3119 +
3120 + /read-cache@1.0.0:
3121 + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
3122 + dependencies:
3123 + pify: 2.3.0
3124 + dev: true
3125 +
3126 + /readdirp@3.6.0:
3127 + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
3128 + engines: {node: '>=8.10.0'}
3129 + dependencies:
3130 + picomatch: 2.3.1
3131 + dev: true
3132 +
3133 + /reflect.getprototypeof@1.0.6:
3134 + resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
3135 + engines: {node: '>= 0.4'}
3136 + dependencies:
3137 + call-bind: 1.0.7
3138 + define-properties: 1.2.1
3139 + es-abstract: 1.23.3
3140 + es-errors: 1.3.0
3141 + get-intrinsic: 1.2.4
3142 + globalthis: 1.0.3
3143 + which-builtin-type: 1.1.3
3144 + dev: false
3145 +
3146 + /regenerator-runtime@0.14.1:
3147 + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
3148 + dev: false
3149 +
3150 + /regexp.prototype.flags@1.5.2:
3151 + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
3152 + engines: {node: '>= 0.4'}
3153 + dependencies:
3154 + call-bind: 1.0.7
3155 + define-properties: 1.2.1
3156 + es-errors: 1.3.0
3157 + set-function-name: 2.0.2
3158 + dev: false
3159 +
3160 + /regexpp@3.2.0:
3161 + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
3162 + engines: {node: '>=8'}
3163 + dev: false
3164 +
3165 + /resolve-from@4.0.0:
3166 + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
3167 + engines: {node: '>=4'}
3168 + dev: false
3169 +
3170 + /resolve-pkg-maps@1.0.0:
3171 + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
3172 + dev: false
3173 +
3174 + /resolve@1.22.8:
3175 + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
3176 + hasBin: true
3177 + dependencies:
3178 + is-core-module: 2.13.1
3179 + path-parse: 1.0.7
3180 + supports-preserve-symlinks-flag: 1.0.0
3181 +
3182 + /resolve@2.0.0-next.5:
3183 + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
3184 + hasBin: true
3185 + dependencies:
3186 + is-core-module: 2.13.1
3187 + path-parse: 1.0.7
3188 + supports-preserve-symlinks-flag: 1.0.0
3189 + dev: false
3190 +
3191 + /reusify@1.0.4:
3192 + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
3193 + engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
3194 +
3195 + /rimraf@3.0.2:
3196 + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
3197 + hasBin: true
3198 + dependencies:
3199 + glob: 7.2.3
3200 + dev: false
3201 +
3202 + /run-parallel@1.2.0:
3203 + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
3204 + dependencies:
3205 + queue-microtask: 1.2.3
3206 +
3207 + /safe-array-concat@1.1.2:
3208 + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
3209 + engines: {node: '>=0.4'}
3210 + dependencies:
3211 + call-bind: 1.0.7
3212 + get-intrinsic: 1.2.4
3213 + has-symbols: 1.0.3
3214 + isarray: 2.0.5
3215 + dev: false
3216 +
3217 + /safe-regex-test@1.0.3:
3218 + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
3219 + engines: {node: '>= 0.4'}
3220 + dependencies:
3221 + call-bind: 1.0.7
3222 + es-errors: 1.3.0
3223 + is-regex: 1.1.4
3224 + dev: false
3225 +
3226 + /scheduler@0.23.0:
3227 + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
3228 + dependencies:
3229 + loose-envify: 1.4.0
3230 + dev: false
3231 +
3232 + /semver@6.3.1:
3233 + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
3234 + hasBin: true
3235 + dev: false
3236 +
3237 + /semver@7.6.0:
3238 + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
3239 + engines: {node: '>=10'}
3240 + hasBin: true
3241 + dependencies:
3242 + lru-cache: 6.0.0
3243 + dev: false
3244 +
3245 + /seroval-plugins@1.0.5(seroval@1.0.5):
3246 + resolution: {integrity: sha512-8+pDC1vOedPXjKG7oz8o+iiHrtF2WswaMQJ7CKFpccvSYfrzmvKY9zOJWCg+881722wIHfwkdnRmiiDm9ym+zQ==, tarball: https://registry.npmjs.org/seroval-plugins/-/seroval-plugins-1.0.5.tgz}
3247 + engines: {node: '>=10'}
3248 + peerDependencies:
3249 + seroval: ^1.0
3250 + dependencies:
3251 + seroval: 1.0.5
3252 + dev: false
3253 +
3254 + /seroval@1.0.5:
3255 + resolution: {integrity: sha512-TM+Z11tHHvQVQKeNlOUonOWnsNM+2IBwZ4vwoi4j3zKzIpc5IDw8WPwCfcc8F17wy6cBcJGbZbFOR0UCuTZHQA==, tarball: https://registry.npmjs.org/seroval/-/seroval-1.0.5.tgz}
3256 + engines: {node: '>=10'}
3257 + dev: false
3258 +
3259 + /set-function-length@1.2.2:
3260 + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
3261 + engines: {node: '>= 0.4'}
3262 + dependencies:
3263 + define-data-property: 1.1.4
3264 + es-errors: 1.3.0
3265 + function-bind: 1.1.2
3266 + get-intrinsic: 1.2.4
3267 + gopd: 1.0.1
3268 + has-property-descriptors: 1.0.2
3269 + dev: false
3270 +
3271 + /set-function-name@2.0.2:
3272 + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
3273 + engines: {node: '>= 0.4'}
3274 + dependencies:
3275 + define-data-property: 1.1.4
3276 + es-errors: 1.3.0
3277 + functions-have-names: 1.2.3
3278 + has-property-descriptors: 1.0.2
3279 + dev: false
3280 +
3281 + /shebang-command@2.0.0:
3282 + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
3283 + engines: {node: '>=8'}
3284 + dependencies:
3285 + shebang-regex: 3.0.0
3286 +
3287 + /shebang-regex@3.0.0:
3288 + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
3289 + engines: {node: '>=8'}
3290 +
3291 + /side-channel@1.0.6:
3292 + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
3293 + engines: {node: '>= 0.4'}
3294 + dependencies:
3295 + call-bind: 1.0.7
3296 + es-errors: 1.3.0
3297 + get-intrinsic: 1.2.4
3298 + object-inspect: 1.13.1
3299 + dev: false
3300 +
3301 + /signal-exit@4.1.0:
3302 + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
3303 + engines: {node: '>=14'}
3304 +
3305 + /slash@3.0.0:
3306 + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
3307 + engines: {node: '>=8'}
3308 + dev: false
3309 +
3310 + /solid-js@1.8.16:
3311 + resolution: {integrity: sha512-rja94MNU9flF3qQRLNsu60QHKBDKBkVE1DldJZPIfn2ypIn3NV2WpSbGTQIvsyGPBo+9E2IMjwqnqpbgfWuzeg==, tarball: https://registry.npmjs.org/solid-js/-/solid-js-1.8.16.tgz}
3312 + dependencies:
3313 + csstype: 3.1.3
3314 + seroval: 1.0.5
3315 + seroval-plugins: 1.0.5(seroval@1.0.5)
3316 + dev: false
3317 +
3318 + /solid-swr-store@0.10.7(solid-js@1.8.16)(swr-store@0.10.6):
3319 + resolution: {integrity: sha512-A6d68aJmRP471aWqKKPE2tpgOiR5fH4qXQNfKIec+Vap+MGQm3tvXlT8n0I8UgJSlNAsSAUuw2VTviH2h3Vv5g==}
3320 + engines: {node: '>=10'}
3321 + peerDependencies:
3322 + solid-js: ^1.2
3323 + swr-store: ^0.10
3324 + dependencies:
3325 + solid-js: 1.8.16
3326 + swr-store: 0.10.6
3327 + dev: false
3328 +
3329 + /source-map-js@1.2.0:
3330 + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
3331 + engines: {node: '>=0.10.0'}
3332 +
3333 + /sswr@2.0.0(svelte@4.2.15):
3334 + resolution: {integrity: sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==}
3335 + peerDependencies:
3336 + svelte: ^4.0.0
3337 + dependencies:
3338 + svelte: 4.2.15
3339 + swrev: 4.0.0
3340 + dev: false
3341 +
3342 + /streamsearch@1.1.0:
3343 + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, tarball: https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz}
3344 + engines: {node: '>=10.0.0'}
3345 + dev: false
3346 +
3347 + /string-width@4.2.3:
3348 + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, tarball: https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz}
3349 + engines: {node: '>=8'}
3350 + dependencies:
3351 + emoji-regex: 8.0.0
3352 + is-fullwidth-code-point: 3.0.0
3353 + strip-ansi: 6.0.1
3354 +
3355 + /string-width@5.1.2:
3356 + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
3357 + engines: {node: '>=12'}
3358 + dependencies:
3359 + eastasianwidth: 0.2.0
3360 + emoji-regex: 9.2.2
3361 + strip-ansi: 7.1.0
3362 +
3363 + /string.prototype.matchall@4.0.11:
3364 + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
3365 + engines: {node: '>= 0.4'}
3366 + dependencies:
3367 + call-bind: 1.0.7
3368 + define-properties: 1.2.1
3369 + es-abstract: 1.23.3
3370 + es-errors: 1.3.0
3371 + es-object-atoms: 1.0.0
3372 + get-intrinsic: 1.2.4
3373 + gopd: 1.0.1
3374 + has-symbols: 1.0.3
3375 + internal-slot: 1.0.7
3376 + regexp.prototype.flags: 1.5.2
3377 + set-function-name: 2.0.2
3378 + side-channel: 1.0.6
3379 + dev: false
3380 +
3381 + /string.prototype.trim@1.2.9:
3382 + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
3383 + engines: {node: '>= 0.4'}
3384 + dependencies:
3385 + call-bind: 1.0.7
3386 + define-properties: 1.2.1
3387 + es-abstract: 1.23.3
3388 + es-object-atoms: 1.0.0
3389 + dev: false
3390 +
3391 + /string.prototype.trimend@1.0.8:
3392 + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
3393 + dependencies:
3394 + call-bind: 1.0.7
3395 + define-properties: 1.2.1
3396 + es-object-atoms: 1.0.0
3397 + dev: false
3398 +
3399 + /string.prototype.trimstart@1.0.8:
3400 + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
3401 + engines: {node: '>= 0.4'}
3402 + dependencies:
3403 + call-bind: 1.0.7
3404 + define-properties: 1.2.1
3405 + es-object-atoms: 1.0.0
3406 + dev: false
3407 +
3408 + /strip-ansi@6.0.1:
3409 + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
3410 + engines: {node: '>=8'}
3411 + dependencies:
3412 + ansi-regex: 5.0.1
3413 +
3414 + /strip-ansi@7.1.0:
3415 + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
3416 + engines: {node: '>=12'}
3417 + dependencies:
3418 + ansi-regex: 6.0.1
3419 +
3420 + /strip-bom@3.0.0:
3421 + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
3422 + engines: {node: '>=4'}
3423 + dev: false
3424 +
3425 + /strip-json-comments@3.1.1:
3426 + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
3427 + engines: {node: '>=8'}
3428 + dev: false
3429 +
3430 + /styled-jsx@5.1.1(react@18.2.0):
3431 + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, tarball: https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz}
3432 + engines: {node: '>= 12.0.0'}
3433 + peerDependencies:
3434 + '@babel/core': '*'
3435 + babel-plugin-macros: '*'
3436 + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
3437 + peerDependenciesMeta:
3438 + '@babel/core':
3439 + optional: true
3440 + babel-plugin-macros:
3441 + optional: true
3442 + dependencies:
3443 + client-only: 0.0.1
3444 + react: 18.2.0
3445 + dev: false
3446 +
3447 + /sucrase@3.35.0:
3448 + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
3449 + engines: {node: '>=16 || 14 >=14.17'}
3450 + hasBin: true
3451 + dependencies:
3452 + '@jridgewell/gen-mapping': 0.3.5
3453 + commander: 4.1.1
3454 + glob: 10.3.12
3455 + lines-and-columns: 1.2.4
3456 + mz: 2.7.0
3457 + pirates: 4.0.6
3458 + ts-interface-checker: 0.1.13
3459 + dev: true
3460 +
3461 + /supports-color@7.2.0:
3462 + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
3463 + engines: {node: '>=8'}
3464 + dependencies:
3465 + has-flag: 4.0.0
3466 + dev: false
3467 +
3468 + /supports-preserve-symlinks-flag@1.0.0:
3469 + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
3470 + engines: {node: '>= 0.4'}
3471 +
3472 + /svelte@4.2.15:
3473 + resolution: {integrity: sha512-j9KJSccHgLeRERPlhMKrCXpk2TqL2m5Z+k+OBTQhZOhIdCCd3WfqV+ylPWeipEwq17P/ekiSFWwrVQv93i3bsg==, tarball: https://registry.npmjs.org/svelte/-/svelte-4.2.15.tgz}
3474 + engines: {node: '>=16'}
3475 + dependencies:
3476 + '@ampproject/remapping': 2.3.0
3477 + '@jridgewell/sourcemap-codec': 1.4.15
3478 + '@jridgewell/trace-mapping': 0.3.25
3479 + '@types/estree': 1.0.5
3480 + acorn: 8.11.3
3481 + aria-query: 5.3.0
3482 + axobject-query: 4.0.0
3483 + code-red: 1.0.4
3484 + css-tree: 2.3.1
3485 + estree-walker: 3.0.3
3486 + is-reference: 3.0.2
3487 + locate-character: 3.0.0
3488 + magic-string: 0.30.10
3489 + periscopic: 3.1.0
3490 + dev: false
3491 +
3492 + /swr-store@0.10.6:
3493 + resolution: {integrity: sha512-xPjB1hARSiRaNNlUQvWSVrG5SirCjk2TmaUyzzvk69SZQan9hCJqw/5rG9iL7xElHU784GxRPISClq4488/XVw==}
3494 + engines: {node: '>=10'}
3495 + dependencies:
3496 + dequal: 2.0.3
3497 + dev: false
3498 +
3499 + /swr@2.2.0(react@18.2.0):
3500 + resolution: {integrity: sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==}
3501 + peerDependencies:
3502 + react: ^16.11.0 || ^17.0.0 || ^18.0.0
3503 + dependencies:
3504 + react: 18.2.0
3505 + use-sync-external-store: 1.2.0(react@18.2.0)
3506 + dev: false
3507 +
3508 + /swrev@4.0.0:
3509 + resolution: {integrity: sha512-LqVcOHSB4cPGgitD1riJ1Hh4vdmITOp+BkmfmXRh4hSF/t7EnS4iD+SOTmq7w5pPm/SiPeto4ADbKS6dHUDWFA==}
3510 + dev: false
3511 +
3512 + /swrv@1.0.4(vue@3.4.23):
3513 + resolution: {integrity: sha512-zjEkcP8Ywmj+xOJW3lIT65ciY/4AL4e/Or7Gj0MzU3zBJNMdJiT8geVZhINavnlHRMMCcJLHhraLTAiDOTmQ9g==}
3514 + peerDependencies:
3515 + vue: '>=3.2.26 < 4'
3516 + dependencies:
3517 + vue: 3.4.23(typescript@4.9.4)
3518 + dev: false
3519 +
3520 + /tailwind-merge@2.3.0:
3521 + resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==}
3522 + dependencies:
3523 + '@babel/runtime': 7.24.4
3524 + dev: false
3525 +
3526 + /tailwindcss@3.4.3:
3527 + resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
3528 + engines: {node: '>=14.0.0'}
3529 + hasBin: true
3530 + dependencies:
3531 + '@alloc/quick-lru': 5.2.0
3532 + arg: 5.0.2
3533 + chokidar: 3.6.0
3534 + didyoumean: 1.2.2
3535 + dlv: 1.1.3
3536 + fast-glob: 3.3.2
3537 + glob-parent: 6.0.2
3538 + is-glob: 4.0.3
3539 + jiti: 1.21.0
3540 + lilconfig: 2.1.0
3541 + micromatch: 4.0.5
3542 + normalize-path: 3.0.0
3543 + object-hash: 3.0.0
3544 + picocolors: 1.0.0
3545 + postcss: 8.4.38
3546 + postcss-import: 15.1.0(postcss@8.4.38)
3547 + postcss-js: 4.0.1(postcss@8.4.38)
3548 + postcss-load-config: 4.0.2(postcss@8.4.38)
3549 + postcss-nested: 6.0.1(postcss@8.4.38)
3550 + postcss-selector-parser: 6.0.16
3551 + resolve: 1.22.8
3552 + sucrase: 3.35.0
3553 + transitivePeerDependencies:
3554 + - ts-node
3555 + dev: true
3556 +
3557 + /tapable@2.2.1:
3558 + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
3559 + engines: {node: '>=6'}
3560 + dev: false
3561 +
3562 + /text-table@0.2.0:
3563 + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
3564 + dev: false
3565 +
3566 + /thenify-all@1.6.0:
3567 + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
3568 + engines: {node: '>=0.8'}
3569 + dependencies:
3570 + thenify: 3.3.1
3571 + dev: true
3572 +
3573 + /thenify@3.3.1:
3574 + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
3575 + dependencies:
3576 + any-promise: 1.3.0
3577 + dev: true
3578 +
3579 + /to-fast-properties@2.0.0:
3580 + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, tarball: https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz}
3581 + engines: {node: '>=4'}
3582 + dev: false
3583 +
3584 + /to-regex-range@5.0.1:
3585 + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
3586 + engines: {node: '>=8.0'}
3587 + dependencies:
3588 + is-number: 7.0.0
3589 +
3590 + /ts-api-utils@1.3.0(typescript@4.9.4):
3591 + resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
3592 + engines: {node: '>=16'}
3593 + peerDependencies:
3594 + typescript: '>=4.2.0'
3595 + dependencies:
3596 + typescript: 4.9.4
3597 + dev: false
3598 +
3599 + /ts-interface-checker@0.1.13:
3600 + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
3601 + dev: true
3602 +
3603 + /tsconfig-paths@3.15.0:
3604 + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
3605 + dependencies:
3606 + '@types/json5': 0.0.29
3607 + json5: 1.0.2
3608 + minimist: 1.2.8
3609 + strip-bom: 3.0.0
3610 + dev: false
3611 +
3612 + /tslib@2.6.2:
3613 + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, tarball: https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz}
3614 + dev: false
3615 +
3616 + /type-check@0.4.0:
3617 + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
3618 + engines: {node: '>= 0.8.0'}
3619 + dependencies:
3620 + prelude-ls: 1.2.1
3621 + dev: false
3622 +
3623 + /type-fest@0.20.2:
3624 + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
3625 + engines: {node: '>=10'}
3626 + dev: false
3627 +
3628 + /typed-array-buffer@1.0.2:
3629 + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
3630 + engines: {node: '>= 0.4'}
3631 + dependencies:
3632 + call-bind: 1.0.7
3633 + es-errors: 1.3.0
3634 + is-typed-array: 1.1.13
3635 + dev: false
3636 +
3637 + /typed-array-byte-length@1.0.1:
3638 + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
3639 + engines: {node: '>= 0.4'}
3640 + dependencies:
3641 + call-bind: 1.0.7
3642 + for-each: 0.3.3
3643 + gopd: 1.0.1
3644 + has-proto: 1.0.3
3645 + is-typed-array: 1.1.13
3646 + dev: false
3647 +
3648 + /typed-array-byte-offset@1.0.2:
3649 + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
3650 + engines: {node: '>= 0.4'}
3651 + dependencies:
3652 + available-typed-arrays: 1.0.7
3653 + call-bind: 1.0.7
3654 + for-each: 0.3.3
3655 + gopd: 1.0.1
3656 + has-proto: 1.0.3
3657 + is-typed-array: 1.1.13
3658 + dev: false
3659 +
3660 + /typed-array-length@1.0.6:
3661 + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
3662 + engines: {node: '>= 0.4'}
3663 + dependencies:
3664 + call-bind: 1.0.7
3665 + for-each: 0.3.3
3666 + gopd: 1.0.1
3667 + has-proto: 1.0.3
3668 + is-typed-array: 1.1.13
3669 + possible-typed-array-names: 1.0.0
3670 + dev: false
3671 +
3672 + /typescript@4.9.4:
3673 + resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==}
3674 + engines: {node: '>=4.2.0'}
3675 + hasBin: true
3676 + dev: false
3677 +
3678 + /unbox-primitive@1.0.2:
3679 + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
3680 + dependencies:
3681 + call-bind: 1.0.7
3682 + has-bigints: 1.0.2
3683 + has-symbols: 1.0.3
3684 + which-boxed-primitive: 1.0.2
3685 + dev: false
3686 +
3687 + /update-browserslist-db@1.0.13(browserslist@4.23.0):
3688 + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
3689 + hasBin: true
3690 + peerDependencies:
3691 + browserslist: '>= 4.21.0'
3692 + dependencies:
3693 + browserslist: 4.23.0
3694 + escalade: 3.1.2
3695 + picocolors: 1.0.0
3696 + dev: true
3697 +
3698 + /uri-js@4.4.1:
3699 + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
3700 + dependencies:
3701 + punycode: 2.3.1
3702 + dev: false
3703 +
3704 + /use-composed-ref@1.3.0(react@18.2.0):
3705 + resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
3706 + peerDependencies:
3707 + react: ^16.8.0 || ^17.0.0 || ^18.0.0
3708 + dependencies:
3709 + react: 18.2.0
3710 + dev: false
3711 +
3712 + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.78)(react@18.2.0):
3713 + resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
3714 + peerDependencies:
3715 + '@types/react': '*'
3716 + react: ^16.8.0 || ^17.0.0 || ^18.0.0
3717 + peerDependenciesMeta:
3718 + '@types/react':
3719 + optional: true
3720 + dependencies:
3721 + '@types/react': 18.2.78
3722 + react: 18.2.0
3723 + dev: false
3724 +
3725 + /use-latest@1.2.1(@types/react@18.2.78)(react@18.2.0):
3726 + resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
3727 + peerDependencies:
3728 + '@types/react': '*'
3729 + react: ^16.8.0 || ^17.0.0 || ^18.0.0
3730 + peerDependenciesMeta:
3731 + '@types/react':
3732 + optional: true
3733 + dependencies:
3734 + '@types/react': 18.2.78
3735 + react: 18.2.0
3736 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.78)(react@18.2.0)
3737 + dev: false
3738 +
3739 + /use-sync-external-store@1.2.0(react@18.2.0):
3740 + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
3741 + peerDependencies:
3742 + react: ^16.8.0 || ^17.0.0 || ^18.0.0
3743 + dependencies:
3744 + react: 18.2.0
3745 + dev: false
3746 +
3747 + /util-deprecate@1.0.2:
3748 + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
3749 + dev: true
3750 +
3751 + /vue@3.4.23(typescript@4.9.4):
3752 + resolution: {integrity: sha512-X1y6yyGJ28LMUBJ0k/qIeKHstGd+BlWQEOT40x3auJFTmpIhpbKLgN7EFsqalnJXq1Km5ybDEsp6BhuWKciUDg==, tarball: https://registry.npmjs.org/vue/-/vue-3.4.23.tgz}
3753 + peerDependencies:
3754 + typescript: '*'
3755 + peerDependenciesMeta:
3756 + typescript:
3757 + optional: true
3758 + dependencies:
3759 + '@vue/compiler-dom': 3.4.23
3760 + '@vue/compiler-sfc': 3.4.23
3761 + '@vue/runtime-dom': 3.4.23
3762 + '@vue/server-renderer': 3.4.23(vue@3.4.23)
3763 + '@vue/shared': 3.4.23
3764 + typescript: 4.9.4
3765 + dev: false
3766 +
3767 + /which-boxed-primitive@1.0.2:
3768 + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
3769 + dependencies:
3770 + is-bigint: 1.0.4
3771 + is-boolean-object: 1.1.2
3772 + is-number-object: 1.0.7
3773 + is-string: 1.0.7
3774 + is-symbol: 1.0.4
3775 + dev: false
3776 +
3777 + /which-builtin-type@1.1.3:
3778 + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
3779 + engines: {node: '>= 0.4'}
3780 + dependencies:
3781 + function.prototype.name: 1.1.6
3782 + has-tostringtag: 1.0.2
3783 + is-async-function: 2.0.0
3784 + is-date-object: 1.0.5
3785 + is-finalizationregistry: 1.0.2
3786 + is-generator-function: 1.0.10
3787 + is-regex: 1.1.4
3788 + is-weakref: 1.0.2
3789 + isarray: 2.0.5
3790 + which-boxed-primitive: 1.0.2
3791 + which-collection: 1.0.2
3792 + which-typed-array: 1.1.15
3793 + dev: false
3794 +
3795 + /which-collection@1.0.2:
3796 + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
3797 + engines: {node: '>= 0.4'}
3798 + dependencies:
3799 + is-map: 2.0.3
3800 + is-set: 2.0.3
3801 + is-weakmap: 2.0.2
3802 + is-weakset: 2.0.3
3803 + dev: false
3804 +
3805 + /which-typed-array@1.1.15:
3806 + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
3807 + engines: {node: '>= 0.4'}
3808 + dependencies:
3809 + available-typed-arrays: 1.0.7
3810 + call-bind: 1.0.7
3811 + for-each: 0.3.3
3812 + gopd: 1.0.1
3813 + has-tostringtag: 1.0.2
3814 + dev: false
3815 +
3816 + /which@2.0.2:
3817 + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
3818 + engines: {node: '>= 8'}
3819 + hasBin: true
3820 + dependencies:
3821 + isexe: 2.0.0
3822 +
3823 + /wrap-ansi@7.0.0:
3824 + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, tarball: https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz}
3825 + engines: {node: '>=10'}
3826 + dependencies:
3827 + ansi-styles: 4.3.0
3828 + string-width: 4.2.3
3829 + strip-ansi: 6.0.1
3830 +
3831 + /wrap-ansi@8.1.0:
3832 + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
3833 + engines: {node: '>=12'}
3834 + dependencies:
3835 + ansi-styles: 6.2.1
3836 + string-width: 5.1.2
3837 + strip-ansi: 7.1.0
3838 +
3839 + /wrappy@1.0.2:
3840 + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
3841 + dev: false
3842 +
3843 + /yallist@4.0.0:
3844 + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
3845 + dev: false
3846 +
3847 + /yaml@2.4.1:
3848 + resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==}
3849 + engines: {node: '>= 14'}
3850 + hasBin: true
3851 + dev: true
3852 +
3853 + /yocto-queue@0.1.0:
3854 + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
3855 + engines: {node: '>=10'}
3856 + dev: false
public/BUILD.bazel new
+11
@@ -0,0 +1,11 @@
1 +load("@aspect_rules_js//js:defs.bzl", "js_library")
2 +
3 +js_library(
4 + name = "public",
5 + srcs = [
6 + "favicon.ico",
7 + "grid.svg",
8 + "logo192.png",
9 + ],
10 + visibility = ["//:__subpackages__"],
11 +)
tailwind.config.ts renamed
tsconfig.json
+5 -5
@@ -10,7 +10,6 @@
10 "skipLibCheck": true,
11 "strict": true,
12 "forceConsistentCasingInFileNames": true,
13 - "noEmit": true,
13 "esModuleInterop": true,
14 "module": "esnext",
15 "moduleResolution": "node",
@@ -20,8 +19,9 @@
19 "incremental": true,
20 "baseUrl": ".",
21 "paths": {
23 - "@/*": [
24 - "./*"
22 + "@/app/*": [
23 + "./app/*",
24 + "./dist/tauri-on-bazel/app/*"
25 ]
26 },
27 "plugins": [
@@ -31,10 +31,10 @@
31 ]
32 },
33 "include": [
34 - "next-env.d.ts",
34 "**/*.ts",
35 "**/*.tsx",
37 - ".next/types/**/*.ts"
36 + ".next/types/**/*.ts",
37 + "next-env.d.ts"
38 ],
39 "exclude": [
40 "node_modules"