initial commit
Seto Elkahfi committed
Jul 26, 2024 at 00:06 UTC
73b07438b312c20f1cbd19e3ddc3eb9e16ff4ee4
188 files changed
+15559
.bazelignore
new
+6
@@ -0,0 +1,6 @@
1
+.vscode
2
+
3
+bazel-out
4
+dist
5
+
6
+node_modules
.bazelrc
new
+64
@@ -0,0 +1,64 @@
1
+# Enable Bzlmod for every Bazel command
2
+common --enable_bzlmod
3
+
4
+# BuildBuddy
5
+build --bes_results_url=https://app.buildbuddy.io/invocation/
6
+build --bes_backend=grpcs://remote.buildbuddy.io
7
+build --nolegacy_important_outputs
8
+try-import ./auth.bazelrc
9
+
10
+###############################
11
+# Filesystem interactions #
12
+###############################
13
+
14
+build --disk_cache=~/.bazel/cache
15
+build --repository_cache=~/.bazel/repo_cache
16
+
17
+build --symlink_prefix=dist/
18
+
19
+build --nolegacy_external_runfiles
20
+run --nolegacy_external_runfiles
21
+test --nolegacy_external_runfiles
22
+
23
+build --incompatible_strict_action_env
24
+run --incompatible_strict_action_env
25
+test --incompatible_strict_action_env
26
+
27
+build --enable_runfiles
28
+run --enable_runfiles
29
+test --enable_runfiles
30
+
31
+## BUILD apple
32
+
33
+build --macos_minimum_os=13
34
+build --host_macos_minimum_os=13
35
+
36
+# https://bazel.build/reference/command-line-reference#flag--incompatible_strict_action_env
37
+build --incompatible_strict_action_env
38
+
39
+# Disable the worker, which has sandboxing disabled by default, which can hide
40
+# issues with non-hermetic bugs.
41
+build --spawn_strategy=sandboxed,local
42
+build --worker_sandboxing=true
43
+
44
+build --incompatible_disallow_empty_glob
45
+
46
+build --features=swift.use_global_module_cache
47
+
48
+# Enable indexing while building.
49
+build --features swift.use_global_index_store
50
+build --features swift.index_while_building
51
+
52
+# Since there's no way to set the deployment version for swift_{binary,test},
53
+# this forces all targets' minimum macOS to Github Actions macOS version.
54
+build --macos_minimum_os=12.6
55
+
56
+## TEST
57
+
58
+# `bazel test` tries to build everything also by default, so skip that so the
59
+# *_library targets in examples/... aren't built (and fail since they are
60
+# platform specific).
61
+test --build_tests_only
62
+
63
+# Show detailed errors for test failures
64
+test --test_output=errors
.bazelversion
new
+1
@@ -0,0 +1 @@
1
+7.2.1
.gitattributes
new
+2
@@ -0,0 +1,2 @@
1
+*.png filter=lfs diff=lfs merge=lfs -text
2
+*.jpg filter=lfs diff=lfs merge=lfs -text
.gitignore
new
+223
@@ -0,0 +1,223 @@
1
+# Created by https://www.toptal.com/developers/gitignore/api/bazel,node,nextjs,rust,visualstudiocode
2
+# Edit at https://www.toptal.com/developers/gitignore?templates=bazel,node,nextjs,rust,visualstudiocode
3
+
4
+### Bazel ###
5
+# gitignore template for Bazel build system
6
+# website: https://bazel.build/
7
+
8
+# Ignore all bazel-* symlinks. There is no full list since this can change
9
+# based on the name of the directory bazel is cloned into.
10
+/bazel-*
11
+auth.bazelrc
12
+
13
+# Directories for the Bazel IntelliJ plugin containing the generated
14
+# IntelliJ project files and plugin configuration. Seperate directories are
15
+# for the IntelliJ, Android Studio and CLion versions of the plugin.
16
+/.ijwb/
17
+/.aswb/
18
+/.clwb/
19
+
20
+### NextJS ###
21
+# dependencies
22
+/node_modules
23
+/.pnp
24
+.pnp.js
25
+
26
+# testing
27
+/coverage
28
+
29
+# next.js
30
+/.next/
31
+/out/
32
+
33
+# misc
34
+.DS_Store
35
+*.pem
36
+
37
+# debug
38
+npm-debug.log*
39
+yarn-debug.log*
40
+yarn-error.log*
41
+.pnpm-debug.log*
42
+
43
+# local env files
44
+.env*.local
45
+
46
+# vercel
47
+.vercel
48
+
49
+# typescript
50
+*.tsbuildinfo
51
+next-env.d.ts
52
+
53
+### Node ###
54
+# Logs
55
+logs
56
+*.log
57
+lerna-debug.log*
58
+
59
+# Diagnostic reports (https://nodejs.org/api/report.html)
60
+report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
61
+
62
+# Runtime data
63
+pids
64
+*.pid
65
+*.seed
66
+*.pid.lock
67
+
68
+# Directory for instrumented libs generated by jscoverage/JSCover
69
+lib-cov
70
+
71
+# Coverage directory used by tools like istanbul
72
+coverage
73
+*.lcov
74
+
75
+# nyc test coverage
76
+.nyc_output
77
+
78
+# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
79
+.grunt
80
+
81
+# Bower dependency directory (https://bower.io/)
82
+bower_components
83
+
84
+# node-waf configuration
85
+.lock-wscript
86
+
87
+# Compiled binary addons (https://nodejs.org/api/addons.html)
88
+build/Release
89
+
90
+# Dependency directories
91
+node_modules/
92
+jspm_packages/
93
+
94
+# Snowpack dependency directory (https://snowpack.dev/)
95
+web_modules/
96
+
97
+# TypeScript cache
98
+
99
+# Optional npm cache directory
100
+.npm
101
+
102
+# Optional eslint cache
103
+.eslintcache
104
+
105
+# Optional stylelint cache
106
+.stylelintcache
107
+
108
+# Microbundle cache
109
+.rpt2_cache/
110
+.rts2_cache_cjs/
111
+.rts2_cache_es/
112
+.rts2_cache_umd/
113
+
114
+# Optional REPL history
115
+.node_repl_history
116
+
117
+# Output of 'npm pack'
118
+*.tgz
119
+
120
+# Yarn Integrity file
121
+.yarn-integrity
122
+
123
+# dotenv environment variable files
124
+.env
125
+.env.development.local
126
+.env.test.local
127
+.env.production.local
128
+.env.local
129
+
130
+# parcel-bundler cache (https://parceljs.org/)
131
+.cache
132
+.parcel-cache
133
+
134
+# Next.js build output
135
+.next
136
+out
137
+
138
+# Nuxt.js build / generate output
139
+.nuxt
140
+dist
141
+
142
+# Gatsby files
143
+.cache/
144
+# Comment in the public line in if your project uses Gatsby and not Next.js
145
+# https://nextjs.org/blog/next-9-1#public-directory-support
146
+# public
147
+
148
+# vuepress build output
149
+.vuepress/dist
150
+
151
+# vuepress v2.x temp and cache directory
152
+.temp
153
+
154
+# Docusaurus cache and generated files
155
+.docusaurus
156
+
157
+# Serverless directories
158
+.serverless/
159
+
160
+# FuseBox cache
161
+.fusebox/
162
+
163
+# DynamoDB Local files
164
+.dynamodb/
165
+
166
+# TernJS port file
167
+.tern-port
168
+
169
+# Stores VSCode versions used for testing VSCode extensions
170
+.vscode-test
171
+
172
+# yarn v2
173
+.yarn/cache
174
+.yarn/unplugged
175
+.yarn/build-state.yml
176
+.yarn/install-state.gz
177
+.pnp.*
178
+
179
+### Node Patch ###
180
+# Serverless Webpack directories
181
+.webpack/
182
+
183
+# Optional stylelint cache
184
+
185
+# SvelteKit build / generate output
186
+.svelte-kit
187
+
188
+### Rust ###
189
+# Generated by Cargo
190
+# will have compiled files and executables
191
+debug/
192
+target/
193
+
194
+# These are backup files generated by rustfmt
195
+**/*.rs.bk
196
+
197
+# MSVC Windows builds of rustc generate these, which store debugging information
198
+*.pdb
199
+
200
+### VisualStudioCode ###
201
+.vscode/*
202
+!.vscode/settings.json
203
+!.vscode/tasks.json
204
+!.vscode/launch.json
205
+!.vscode/extensions.json
206
+!.vscode/*.code-snippets
207
+*.code-workspace
208
+
209
+# Local History for Visual Studio Code
210
+.history/
211
+
212
+# Built Visual Studio Code Extensions
213
+*.vsix
214
+
215
+### VisualStudioCode Patch ###
216
+# Ignore all local history of files
217
+.history
218
+.ionide
219
+
220
+# Xcode
221
+.xcodeproj
222
+
223
+# End of https://www.toptal.com/developers/gitignore/api/bazel,node,nextjs,rust,visualstudiocode
BUILD
LICENSE
new
+674
@@ -0,0 +1,674 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+to take away your freedom to share and change the works. By contrast,
15
+the GNU General Public License is intended to guarantee your freedom to
16
+share and change all versions of a program--to make sure it remains free
17
+software for all its users. We, the Free Software Foundation, use the
18
+GNU General Public License for most of our software; it applies also to
19
+any other work released this way by its authors. You can apply it to
20
+your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+price. Our General Public Licenses are designed to make sure that you
24
+have the freedom to distribute copies of free software (and charge for
25
+them if you wish), that you receive source code or can get it if you
26
+want it, that you can change the software or use pieces of it in new
27
+free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+these rights or asking you to surrender the rights. Therefore, you have
31
+certain responsibilities if you distribute copies of the software, or if
32
+you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+gratis or for a fee, you must pass on to the recipients the same
36
+freedoms that you received. You must make sure that they, too, receive
37
+or can get the source code. And you must show them these terms so they
38
+know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+(1) assert copyright on the software, and (2) offer you this License
42
+giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+that there is no warranty for this free software. For both users' and
46
+authors' sake, the GPL requires that modified versions be marked as
47
+changed, so that their problems will not be attributed erroneously to
48
+authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+modified versions of the software inside them, although the manufacturer
52
+can do so. This is fundamentally incompatible with the aim of
53
+protecting users' freedom to change the software. The systematic
54
+pattern of such abuse occurs in the area of products for individuals to
55
+use, which is precisely where it is most unacceptable. Therefore, we
56
+have designed this version of the GPL to prohibit the practice for those
57
+products. If such problems arise substantially in other domains, we
58
+stand ready to extend this provision to those domains in future versions
59
+of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+States should not allow patents to restrict development and use of
63
+software on general-purpose computers, but in those that do, we wish to
64
+avoid the special danger that patents applied to a free program could
65
+make it effectively proprietary. To prevent this, the GPL assures that
66
+patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+License. Each licensee is addressed as "you". "Licensees" and
82
+"recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+in a fashion requiring copyright permission, other than the making of an
86
+exact copy. The resulting work is called a "modified version" of the
87
+earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+permission, would make you directly or secondarily liable for
94
+infringement under applicable copyright law, except executing it on a
95
+computer or modifying a private copy. Propagation includes copying,
96
+distribution (with or without modification), making available to the
97
+public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+parties to make or receive copies. Mere interaction with a user through
101
+a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+to the extent that it includes a convenient and prominently visible
105
+feature that (1) displays an appropriate copyright notice, and (2)
106
+tells the user that there is no warranty for the work (except to the
107
+extent that warranties are provided), that licensees may convey the
108
+work under this License, and how to view a copy of this License. If
109
+the interface presents a list of user commands or options, such as a
110
+menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+for making modifications to it. "Object code" means any non-source
116
+form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+standard defined by a recognized standards body, or, in the case of
120
+interfaces specified for a particular programming language, one that
121
+is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+than the work as a whole, that (a) is included in the normal form of
125
+packaging a Major Component, but which is not part of that Major
126
+Component, and (b) serves only to enable use of the work with that
127
+Major Component, or to implement a Standard Interface for which an
128
+implementation is available to the public in source code form. A
129
+"Major Component", in this context, means a major essential component
130
+(kernel, window system, and so on) of the specific operating system
131
+(if any) on which the executable work runs, or a compiler used to
132
+produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+the source code needed to generate, install, and (for an executable
136
+work) run the object code and to modify the work, including scripts to
137
+control those activities. However, it does not include the work's
138
+System Libraries, or general-purpose tools or generally available free
139
+programs which are used unmodified in performing those activities but
140
+which are not part of the work. For example, Corresponding Source
141
+includes interface definition files associated with source files for
142
+the work, and the source code for shared libraries and dynamically
143
+linked subprograms that the work is specifically designed to require,
144
+such as by intimate data communication or control flow between those
145
+subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+can regenerate automatically from other parts of the Corresponding
149
+Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+copyright on the Program, and are irrevocable provided the stated
158
+conditions are met. This License explicitly affirms your unlimited
159
+permission to run the unmodified Program. The output from running a
160
+covered work is covered by this License only if the output, given its
161
+content, constitutes a covered work. This License acknowledges your
162
+rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+convey, without conditions so long as your license otherwise remains
166
+in force. You may convey covered works to others for the sole purpose
167
+of having them make modifications exclusively for you, or provide you
168
+with facilities for running those works, provided that you comply with
169
+the terms of this License in conveying all material for which you do
170
+not control copyright. Those thus making or running the covered works
171
+for you must do so exclusively on your behalf, under your direction
172
+and control, on terms that prohibit them from making any copies of
173
+your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+the conditions stated below. Sublicensing is not allowed; section 10
177
+makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+measure under any applicable law fulfilling obligations under article
183
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+similar laws prohibiting or restricting circumvention of such
185
+measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+circumvention of technological measures to the extent such circumvention
189
+is effected by exercising rights under this License with respect to
190
+the covered work, and you disclaim any intention to limit operation or
191
+modification of the work as a means of enforcing, against the work's
192
+users, your or third parties' legal rights to forbid circumvention of
193
+technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+receive it, in any medium, provided that you conspicuously and
199
+appropriately publish on each copy an appropriate copyright notice;
200
+keep intact all notices stating that this License and any
201
+non-permissive terms added in accord with section 7 apply to the code;
202
+keep intact all notices of the absence of any warranty; and give all
203
+recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+produce it from the Program, in the form of source code under the
212
+terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+works, which are not by their nature extensions of the covered work,
237
+and which are not combined with it such as to form a larger program,
238
+in or on a volume of a storage or distribution medium, is called an
239
+"aggregate" if the compilation and its resulting copyright are not
240
+used to limit the access or legal rights of the compilation's users
241
+beyond what the individual works permit. Inclusion of a covered work
242
+in an aggregate does not cause this License to apply to the other
243
+parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+of sections 4 and 5, provided that you also convey the
249
+machine-readable Corresponding Source under the terms of this License,
250
+in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+from the Corresponding Source as a System Library, need not be
295
+included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+tangible personal property which is normally used for personal, family,
299
+or household purposes, or (2) anything designed or sold for incorporation
300
+into a dwelling. In determining whether a product is a consumer product,
301
+doubtful cases shall be resolved in favor of coverage. For a particular
302
+product received by a particular user, "normally used" refers to a
303
+typical or common use of that class of product, regardless of the status
304
+of the particular user or of the way in which the particular user
305
+actually uses, or expects or is expected to use, the product. A product
306
+is a consumer product regardless of whether the product has substantial
307
+commercial, industrial or non-consumer uses, unless such uses represent
308
+the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+procedures, authorization keys, or other information required to install
312
+and execute modified versions of a covered work in that User Product from
313
+a modified version of its Corresponding Source. The information must
314
+suffice to ensure that the continued functioning of the modified object
315
+code is in no case prevented or interfered with solely because
316
+modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+specifically for use in, a User Product, and the conveying occurs as
320
+part of a transaction in which the right of possession and use of the
321
+User Product is transferred to the recipient in perpetuity or for a
322
+fixed term (regardless of how the transaction is characterized), the
323
+Corresponding Source conveyed under this section must be accompanied
324
+by the Installation Information. But this requirement does not apply
325
+if neither you nor any third party retains the ability to install
326
+modified object code on the User Product (for example, the work has
327
+been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+requirement to continue to provide support service, warranty, or updates
331
+for a work that has been modified or installed by the recipient, or for
332
+the User Product in which it has been modified or installed. Access to a
333
+network may be denied when the modification itself materially and
334
+adversely affects the operation of the network or violates the rules and
335
+protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+in accord with this section must be in a format that is publicly
339
+documented (and with an implementation available to the public in
340
+source code form), and must require no special password or key for
341
+unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+License by making exceptions from one or more of its conditions.
347
+Additional permissions that are applicable to the entire Program shall
348
+be treated as though they were included in this License, to the extent
349
+that they are valid under applicable law. If additional permissions
350
+apply only to part of the Program, that part may be used separately
351
+under those permissions, but the entire Program remains governed by
352
+this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+remove any additional permissions from that copy, or from any part of
356
+it. (Additional permissions may be written to require their own
357
+removal in certain cases when you modify the work.) You may place
358
+additional permissions on material, added by you to a covered work,
359
+for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+add to a covered work, you may (if authorized by the copyright holders of
363
+that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+restrictions" within the meaning of section 10. If the Program as you
390
+received it, or any part of it, contains a notice stating that it is
391
+governed by this License along with a term that is a further
392
+restriction, you may remove that term. If a license document contains
393
+a further restriction but permits relicensing or conveying under this
394
+License, you may add to a covered work material governed by the terms
395
+of that license document, provided that the further restriction does
396
+not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+must place, in the relevant source files, a statement of the
400
+additional terms that apply to those files, or a notice indicating
401
+where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+form of a separately written license, or stated as exceptions;
405
+the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+provided under this License. Any attempt otherwise to propagate or
411
+modify it is void, and will automatically terminate your rights under
412
+this License (including any patent licenses granted under the third
413
+paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+license from a particular copyright holder is reinstated (a)
417
+provisionally, unless and until the copyright holder explicitly and
418
+finally terminates your license, and (b) permanently, if the copyright
419
+holder fails to notify you of the violation by some reasonable means
420
+prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+reinstated permanently if the copyright holder notifies you of the
424
+violation by some reasonable means, this is the first time you have
425
+received notice of violation of this License (for any work) from that
426
+copyright holder, and you cure the violation prior to 30 days after
427
+your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+licenses of parties who have received copies or rights from you under
431
+this License. If your rights have been terminated and not permanently
432
+reinstated, you do not qualify to receive new licenses for the same
433
+material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+run a copy of the Program. Ancillary propagation of a covered work
439
+occurring solely as a consequence of using peer-to-peer transmission
440
+to receive a copy likewise does not require acceptance. However,
441
+nothing other than this License grants you permission to propagate or
442
+modify any covered work. These actions infringe copyright if you do
443
+not accept this License. Therefore, by modifying or propagating a
444
+covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+receives a license from the original licensors, to run, modify and
450
+propagate that work, subject to this License. You are not responsible
451
+for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+organization, or substantially all assets of one, or subdividing an
455
+organization, or merging organizations. If propagation of a covered
456
+work results from an entity transaction, each party to that
457
+transaction who receives a copy of the work also receives whatever
458
+licenses to the work the party's predecessor in interest had or could
459
+give under the previous paragraph, plus a right to possession of the
460
+Corresponding Source of the work from the predecessor in interest, if
461
+the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+rights granted or affirmed under this License. For example, you may
465
+not impose a license fee, royalty, or other charge for exercise of
466
+rights granted under this License, and you may not initiate litigation
467
+(including a cross-claim or counterclaim in a lawsuit) alleging that
468
+any patent claim is infringed by making, using, selling, offering for
469
+sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+License of the Program or a work on which the Program is based. The
475
+work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+owned or controlled by the contributor, whether already acquired or
479
+hereafter acquired, that would be infringed by some manner, permitted
480
+by this License, of making, using, or selling its contributor version,
481
+but do not include claims that would be infringed only as a
482
+consequence of further modification of the contributor version. For
483
+purposes of this definition, "control" includes the right to grant
484
+patent sublicenses in a manner consistent with the requirements of
485
+this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+patent license under the contributor's essential patent claims, to
489
+make, use, sell, offer for sale, import and otherwise run, modify and
490
+propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+agreement or commitment, however denominated, not to enforce a patent
494
+(such as an express permission to practice a patent or covenant not to
495
+sue for patent infringement). To "grant" such a patent license to a
496
+party means to make such an agreement or commitment not to enforce a
497
+patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+and the Corresponding Source of the work is not available for anyone
501
+to copy, free of charge and under the terms of this License, through a
502
+publicly available network server or other readily accessible means,
503
+then you must either (1) cause the Corresponding Source to be so
504
+available, or (2) arrange to deprive yourself of the benefit of the
505
+patent license for this particular work, or (3) arrange, in a manner
506
+consistent with the requirements of this License, to extend the patent
507
+license to downstream recipients. "Knowingly relying" means you have
508
+actual knowledge that, but for the patent license, your conveying the
509
+covered work in a country, or your recipient's use of the covered work
510
+in a country, would infringe one or more identifiable patents in that
511
+country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+arrangement, you convey, or propagate by procuring conveyance of, a
515
+covered work, and grant a patent license to some of the parties
516
+receiving the covered work authorizing them to use, propagate, modify
517
+or convey a specific copy of the covered work, then the patent license
518
+you grant is automatically extended to all recipients of the covered
519
+work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+the scope of its coverage, prohibits the exercise of, or is
523
+conditioned on the non-exercise of one or more of the rights that are
524
+specifically granted under this License. You may not convey a covered
525
+work if you are a party to an arrangement with a third party that is
526
+in the business of distributing software, under which you make payment
527
+to the third party based on the extent of your activity of conveying
528
+the work, and under which the third party grants, to any of the
529
+parties who would receive the covered work from you, a discriminatory
530
+patent license (a) in connection with copies of the covered work
531
+conveyed by you (or copies made from those copies), or (b) primarily
532
+for and in connection with specific products or compilations that
533
+contain the covered work, unless you entered into that arrangement,
534
+or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+any implied license or other defenses to infringement that may
538
+otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+otherwise) that contradict the conditions of this License, they do not
544
+excuse you from the conditions of this License. If you cannot convey a
545
+covered work so as to satisfy simultaneously your obligations under this
546
+License and any other pertinent obligations, then as a consequence you may
547
+not convey it at all. For example, if you agree to terms that obligate you
548
+to collect a royalty for further conveying from those to whom you convey
549
+the Program, the only way you could satisfy both those terms and this
550
+License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+permission to link or combine any covered work with a work licensed
556
+under version 3 of the GNU Affero General Public License into a single
557
+combined work, and to convey the resulting work. The terms of this
558
+License will continue to apply to the part which is the covered work,
559
+but the special requirements of the GNU Affero General Public License,
560
+section 13, concerning interaction through a network will apply to the
561
+combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+the GNU General Public License from time to time. Such new versions will
567
+be similar in spirit to the present version, but may differ in detail to
568
+address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+Program specifies that a certain numbered version of the GNU General
572
+Public License "or any later version" applies to it, you have the
573
+option of following the terms and conditions either of that numbered
574
+version or of any later version published by the Free Software
575
+Foundation. If the Program does not specify a version number of the
576
+GNU General Public License, you may choose any version ever published
577
+by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+versions of the GNU General Public License can be used, that proxy's
581
+public statement of acceptance of a version permanently authorizes you
582
+to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+permissions. However, no additional obligations are imposed on any
586
+author or copyright holder as a result of your choosing to follow a
587
+later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+above cannot be given local legal effect according to their terms,
616
+reviewing courts shall apply local law that most closely approximates
617
+an absolute waiver of all civil liability in connection with the
618
+Program, unless a warranty or assumption of liability accompanies a
619
+copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+possible use to the public, the best way to achieve this is to make it
627
+free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+to attach them to the start of each source file to most effectively
631
+state the exclusion of warranty; and each file should have at least
632
+the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
649
+
650
+Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+The hypothetical commands `show w' and `show c' should show the appropriate
661
+parts of the General Public License. Of course, your program's commands
662
+might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+For more information on this, and how to apply and follow the GNU GPL, see
667
+<https://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+into proprietary programs. If your program is a subroutine library, you
671
+may consider it more useful to permit linking proprietary applications with
672
+the library. If this is what you want to do, use the GNU Lesser General
673
+Public License instead of this License. But first, please read
674
+<https://www.gnu.org/licenses/why-not-lgpl.html>.
MODULE.bazel
new
+36
@@ -0,0 +1,36 @@
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
+###############################################################################
7
+
8
+bazel_dep(name = "bazel_skylib", version = "1.7.1")
9
+bazel_dep(name = "rules_ruby", version = "0.12.1")
10
+bazel_dep(name = "rules_apple", version = "3.6.0", repo_name = "build_bazel_rules_apple")
11
+bazel_dep(name = "rules_xcodeproj", version = "2.5.2")
12
+bazel_dep(name = "apple_support", version = "1.15.1", repo_name = "build_bazel_apple_support")
13
+bazel_dep(name = "rules_swift", version = "1.18.0", repo_name = "build_bazel_rules_swift")
14
+
15
+ruby = use_extension("@rules_ruby//ruby:extensions.bzl", "ruby")
16
+ruby.toolchain(
17
+ name = "ruby",
18
+ version_file = "//backend/app:.ruby-version",
19
+)
20
+use_repo(ruby, "ruby")
21
+ruby.bundle_fetch(
22
+ name = "bundle",
23
+ gemfile = "//backend/app:Gemfile",
24
+ gemfile_lock = "//backend/app:Gemfile.lock",
25
+)
26
+use_repo(ruby, "bundle", "ruby_toolchains")
27
+
28
+# rules_apple dependencies
29
+bazel_dep(
30
+ name = "buildifier_prebuilt",
31
+ version = "6.4.0",
32
+ dev_dependency = True,
33
+)
34
+
35
+non_module_dependencies = use_extension("//frontend/apple/tools:extensions.bzl", "non_module_dependencies")
36
+use_repo(non_module_dependencies, "SwiftLint")
MODULE.bazel.lock
new
+964
@@ -0,0 +1,964 @@
1
+{
2
+ "lockFileVersion": 11,
3
+ "registryFileHashes": {
4
+ "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497",
5
+ "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2",
6
+ "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/MODULE.bazel": "70390338f7a5106231d20620712f7cccb659cd0e9d073d1991c038eb9fc57589",
7
+ "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/source.json": "7e3a9adf473e9af076ae485ed649d5641ad50ec5c11718103f34de03170d94ad",
8
+ "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85",
9
+ "https://bcr.bazel.build/modules/apple_support/1.15.1/source.json": "517f2b77430084c541bc9be2db63fdcbb7102938c5f64c17ee60ffda2e5cf07b",
10
+ "https://bcr.bazel.build/modules/apple_support/1.3.2/MODULE.bazel": "413d6cb36ed01ac4b4a4d945d43408901dfce22098af0e307f57806fcdd2b4f3",
11
+ "https://bcr.bazel.build/modules/apple_support/1.4.1/MODULE.bazel": "862b373a6b7dd1bb3992fea13d43079a71a7faafb4f99d5856c03e6451707d62",
12
+ "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel": "50341a62efbc483e8a2a6aec30994a58749bd7b885e18dd96aa8c33031e558ef",
13
+ "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd",
14
+ "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8",
15
+ "https://bcr.bazel.build/modules/bazel_features/1.11.0/source.json": "c9320aa53cd1c441d24bd6b716da087ad7e4ff0d9742a9884587596edfe53015",
16
+ "https://bcr.bazel.build/modules/bazel_features/1.3.0/MODULE.bazel": "cdcafe83ec318cda34e02948e81d790aab8df7a929cec6f6969f13a489ccecd9",
17
+ "https://bcr.bazel.build/modules/bazel_skylib/1.0.3/MODULE.bazel": "bcb0fd896384802d1ad283b4e4eb4d718eebd8cb820b0a2c3a347fb971afd9d8",
18
+ "https://bcr.bazel.build/modules/bazel_skylib/1.1.1/MODULE.bazel": "1add3e7d93ff2e6998f9e118022c84d163917d912f5afafb3058e3d2f1545b5e",
19
+ "https://bcr.bazel.build/modules/bazel_skylib/1.2.1/MODULE.bazel": "f35baf9da0efe45fa3da1696ae906eea3d615ad41e2e3def4aeb4e8bc0ef9a7a",
20
+ "https://bcr.bazel.build/modules/bazel_skylib/1.3.0/MODULE.bazel": "20228b92868bf5cfc41bda7afc8a8ba2a543201851de39d990ec957b513579c5",
21
+ "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/MODULE.bazel": "8fdee2dbaace6c252131c00e1de4b165dc65af02ea278476187765e1a617b917",
22
+ "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/MODULE.bazel": "3120d80c5861aa616222ec015332e5f8d3171e062e3e804a2a0253e1be26e59b",
23
+ "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/source.json": "f121b43eeefc7c29efbd51b83d08631e2347297c95aac9764a701f2a6a2bb953",
24
+ "https://bcr.bazel.build/modules/buildifier_prebuilt/6.4.0/MODULE.bazel": "37389c6b5a40c59410b4226d3bb54b08637f393d66e2fa57925c6fcf68e64bf4",
25
+ "https://bcr.bazel.build/modules/buildifier_prebuilt/6.4.0/source.json": "83eb01b197ed0b392f797860c9da5ed1bf95f4d0ded994d694a3d44731275916",
26
+ "https://bcr.bazel.build/modules/buildozer/7.1.2/MODULE.bazel": "2e8dd40ede9c454042645fd8d8d0cd1527966aa5c919de86661e62953cd73d84",
27
+ "https://bcr.bazel.build/modules/buildozer/7.1.2/source.json": "c9028a501d2db85793a6996205c8de120944f50a0d570438fcae0457a5f9d1f8",
28
+ "https://bcr.bazel.build/modules/googletest/1.11.0/MODULE.bazel": "3a83f095183f66345ca86aa13c58b59f9f94a2f81999c093d4eeaa2d262d12f4",
29
+ "https://bcr.bazel.build/modules/googletest/1.11.0/source.json": "c73d9ef4268c91bd0c1cd88f1f9dfa08e814b1dbe89b5f594a9f08ba0244d206",
30
+ "https://bcr.bazel.build/modules/nlohmann_json/3.6.1/MODULE.bazel": "6f7b417dcc794d9add9e556673ad25cb3ba835224290f4f848f8e2db1e1fca74",
31
+ "https://bcr.bazel.build/modules/nlohmann_json/3.6.1/source.json": "f448c6e8963fdfa7eb831457df83ad63d3d6355018f6574fb017e8169deb43a9",
32
+ "https://bcr.bazel.build/modules/platforms/0.0.4/MODULE.bazel": "9b328e31ee156f53f3c416a64f8491f7eb731742655a47c9eec4703a71644aee",
33
+ "https://bcr.bazel.build/modules/platforms/0.0.5/MODULE.bazel": "5733b54ea419d5eaf7997054bb55f6a1d0b5ff8aedf0176fef9eea44f3acda37",
34
+ "https://bcr.bazel.build/modules/platforms/0.0.6/MODULE.bazel": "ad6eeef431dc52aefd2d77ed20a4b353f8ebf0f4ecdd26a807d2da5aa8cd0615",
35
+ "https://bcr.bazel.build/modules/platforms/0.0.7/MODULE.bazel": "72fd4a0ede9ee5c021f6a8dd92b503e089f46c227ba2813ff183b71616034814",
36
+ "https://bcr.bazel.build/modules/platforms/0.0.9/MODULE.bazel": "4a87a60c927b56ddd67db50c89acaa62f4ce2a1d2149ccb63ffd871d5ce29ebc",
37
+ "https://bcr.bazel.build/modules/platforms/0.0.9/source.json": "cd74d854bf16a9e002fb2ca7b1a421f4403cda29f824a765acd3a8c56f8d43e6",
38
+ "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel": "a5a29bb89544f9b97edce05642fac225a808b5b7be74038ea3640fae2f8e66a7",
39
+ "https://bcr.bazel.build/modules/protobuf/21.7/source.json": "bbe500720421e582ff2d18b0802464205138c06056f443184de39fbb8187b09b",
40
+ "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0",
41
+ "https://bcr.bazel.build/modules/protobuf/3.19.2/MODULE.bazel": "532ffe5f2186b69fdde039efe6df13ba726ff338c6bc82275ad433013fa10573",
42
+ "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858",
43
+ "https://bcr.bazel.build/modules/rules_apple/2.0.0/MODULE.bazel": "01218eea3b726bd23eb2a7626f36815c2f5b67a54308a06e5633272c33ff5557",
44
+ "https://bcr.bazel.build/modules/rules_apple/3.6.0/MODULE.bazel": "7e3979510cbb7d6a20e8523a116cfc1252fe71821236c7340ca5bfd3a74b4479",
45
+ "https://bcr.bazel.build/modules/rules_apple/3.6.0/source.json": "ae28b5a2d970646b9ea40f39c644ee381e46346e1d3c6f20c8bf6cabcb23b1a5",
46
+ "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647",
47
+ "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c",
48
+ "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e",
49
+ "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel": "836e76439f354b89afe6a911a7adf59a6b2518fafb174483ad78a2a2fde7b1c5",
50
+ "https://bcr.bazel.build/modules/rules_cc/0.0.9/source.json": "1f1ba6fea244b616de4a554a0f4983c91a9301640c8fe0dd1d410254115c8430",
51
+ "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74",
52
+ "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe",
53
+ "https://bcr.bazel.build/modules/rules_java/7.6.1/source.json": "8f3f3076554e1558e8e468b2232991c510ecbcbed9e6f8c06ac31c93bcf38362",
54
+ "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7",
55
+ "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/source.json": "a075731e1b46bc8425098512d038d416e966ab19684a10a34f4741295642fc35",
56
+ "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0",
57
+ "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d",
58
+ "https://bcr.bazel.build/modules/rules_license/0.0.7/source.json": "355cc5737a0f294e560d52b1b7a6492d4fff2caf0bef1a315df5a298fca2d34a",
59
+ "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc",
60
+ "https://bcr.bazel.build/modules/rules_pkg/0.7.0/source.json": "c2557066e0c0342223ba592510ad3d812d4963b9024831f7f66fd0584dd8c66c",
61
+ "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06",
62
+ "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "e8dff86b0971688790ae75528fe1813f71809b5afd57facb44dad9e8eca631b7",
63
+ "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/source.json": "d57902c052424dfda0e71646cb12668d39c4620ee0544294d9d941e7d12bc3a9",
64
+ "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f",
65
+ "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel": "26114f0c0b5e93018c0c066d6673f1a2c3737c7e90af95eff30cfee38d0bbac7",
66
+ "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel": "65dc875cc1a06c30d5bbdba7ab021fd9e551a6579e408a3943a61303e2228a53",
67
+ "https://bcr.bazel.build/modules/rules_python/0.27.1/source.json": "88980dfdcf0651a11344cad2ab1f962ea1b0e51edc80ebbae274c8fa9cde78f4",
68
+ "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c",
69
+ "https://bcr.bazel.build/modules/rules_ruby/0.12.1/MODULE.bazel": "1478e2aed2ef3c680f507b5c68ca801e2aa7af1efdbe19a017b424e3640f96a4",
70
+ "https://bcr.bazel.build/modules/rules_ruby/0.12.1/source.json": "feafea136466ad6b94a482299687d5ebbdc86f5a7ed6a91cef1467e54ff95e13",
71
+ "https://bcr.bazel.build/modules/rules_swift/1.18.0/MODULE.bazel": "a6aba73625d0dc64c7b4a1e831549b6e375fbddb9d2dde9d80c9de6ec45b24c9",
72
+ "https://bcr.bazel.build/modules/rules_swift/1.18.0/source.json": "9e636cabd446f43444ea2662341a9cbb74ecd87ab0557225ae73f1127cb7ff52",
73
+ "https://bcr.bazel.build/modules/rules_swift/1.5.0/MODULE.bazel": "0c25f9486a624f315c67c7cd5cf8f1c332c5dfa8725f32776aab3dee5892d0a5",
74
+ "https://bcr.bazel.build/modules/rules_swift/1.6.0/MODULE.bazel": "bef5271981372961749b0c8bca27286bf266fdc6a4dc844701a3830e98fbe20a",
75
+ "https://bcr.bazel.build/modules/rules_xcodeproj/2.5.2/MODULE.bazel": "9722f96abc1424c52372fe23b75f63fe5bc2448dfcdd5c6c0f73dc5f08e612f7",
76
+ "https://bcr.bazel.build/modules/rules_xcodeproj/2.5.2/source.json": "1e5c82cfd3077a518ad281ad745277d00913a416313d60d4179634b264557e26",
77
+ "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8",
78
+ "https://bcr.bazel.build/modules/stardoc/0.5.1/source.json": "a96f95e02123320aa015b956f29c00cb818fa891ef823d55148e1a362caacf29",
79
+ "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43",
80
+ "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/source.json": "f1ef7d3f9e0e26d4b23d1c39b5f5de71f584dd7d1b4ef83d9bbba6ec7a6a6459",
81
+ "https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0",
82
+ "https://bcr.bazel.build/modules/zlib/1.2.12/MODULE.bazel": "3b1a8834ada2a883674be8cbd36ede1b6ec481477ada359cd2d3ddc562340b27",
83
+ "https://bcr.bazel.build/modules/zlib/1.3/MODULE.bazel": "6a9c02f19a24dcedb05572b2381446e27c272cd383aed11d41d99da9e3167a72",
84
+ "https://bcr.bazel.build/modules/zlib/1.3/source.json": "b6b43d0737af846022636e6e255fd4a96fee0d34f08f3830e6e0bac51465c37c"
85
+ },
86
+ "selectedYankedVersions": {},
87
+ "moduleExtensions": {
88
+ "//frontend/apple/tools:extensions.bzl%non_module_dependencies": {
89
+ "general": {
90
+ "bzlTransitiveDigest": "bN4XnN8JYSfQa86mWk1mfoSoumUV16h7auqdMM3mNTI=",
91
+ "usagesDigest": "Re5uVemxYtY/uNpN6A1b1EN4Ga4m8++MbCx9onEGRmk=",
92
+ "recordedFileInputs": {},
93
+ "recordedDirentsInputs": {},
94
+ "envVariables": {},
95
+ "generatedRepoSpecs": {
96
+ "SwiftLint": {
97
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
98
+ "ruleClassName": "http_archive",
99
+ "attributes": {
100
+ "build_file_content": "\nload(\"@bazel_skylib//rules:native_binary.bzl\", \"native_binary\")\nnative_binary(\n name = \"swiftlint\",\n src = \"bin/swiftlint\",\n out = \"swiftlint\",\n visibility = [\"//visibility:public\"],\n)\n",
101
+ "sha256": "03416a4f75f023e10f9a76945806ddfe70ca06129b895455cc773c5c7d86b73e",
102
+ "strip_prefix": "SwiftLintBinary.artifactbundle/swiftlint-0.53.0-macos",
103
+ "url": "https://github.com/realm/SwiftLint/releases/download/0.53.0/SwiftLintBinary-macos.artifactbundle.zip"
104
+ }
105
+ }
106
+ },
107
+ "recordedRepoMappingEntries": [
108
+ [
109
+ "",
110
+ "bazel_tools",
111
+ "bazel_tools"
112
+ ]
113
+ ]
114
+ }
115
+ },
116
+ "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": {
117
+ "general": {
118
+ "bzlTransitiveDigest": "ltCGFbl/LQQZXn/LEMXfKX7pGwyqNiOCHcmiQW0tmjM=",
119
+ "usagesDigest": "AZ07CGIsARGyHZ1Sp7Zl8rnyTcVg6lMuVR9IN6kfh94=",
120
+ "recordedFileInputs": {},
121
+ "recordedDirentsInputs": {},
122
+ "envVariables": {},
123
+ "generatedRepoSpecs": {
124
+ "local_config_apple_cc": {
125
+ "bzlFile": "@@apple_support~//crosstool:setup.bzl",
126
+ "ruleClassName": "_apple_cc_autoconf",
127
+ "attributes": {}
128
+ },
129
+ "local_config_apple_cc_toolchains": {
130
+ "bzlFile": "@@apple_support~//crosstool:setup.bzl",
131
+ "ruleClassName": "_apple_cc_autoconf_toolchains",
132
+ "attributes": {}
133
+ }
134
+ },
135
+ "recordedRepoMappingEntries": [
136
+ [
137
+ "apple_support~",
138
+ "bazel_tools",
139
+ "bazel_tools"
140
+ ]
141
+ ]
142
+ }
143
+ },
144
+ "@@buildifier_prebuilt~//:defs.bzl%buildifier_prebuilt_deps_extension": {
145
+ "general": {
146
+ "bzlTransitiveDigest": "eXBP0KrRexbBjR0KdxpnbWtfahy0r48xfQb4hBQ4Mcc=",
147
+ "usagesDigest": "nThSTPRdiQbhDFl8FRM2nsKJftWMtPBQHrp/mdk716w=",
148
+ "recordedFileInputs": {},
149
+ "recordedDirentsInputs": {},
150
+ "envVariables": {},
151
+ "generatedRepoSpecs": {
152
+ "buildozer_darwin_amd64": {
153
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
154
+ "ruleClassName": "http_file",
155
+ "attributes": {
156
+ "urls": [
157
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-darwin-amd64"
158
+ ],
159
+ "downloaded_file_path": "buildozer",
160
+ "executable": true,
161
+ "sha256": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e"
162
+ }
163
+ },
164
+ "buildifier_linux_amd64": {
165
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
166
+ "ruleClassName": "http_file",
167
+ "attributes": {
168
+ "urls": [
169
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-linux-amd64"
170
+ ],
171
+ "downloaded_file_path": "buildifier",
172
+ "executable": true,
173
+ "sha256": "be63db12899f48600bad94051123b1fd7b5251e7661b9168582ce52396132e92"
174
+ }
175
+ },
176
+ "buildozer_darwin_arm64": {
177
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
178
+ "ruleClassName": "http_file",
179
+ "attributes": {
180
+ "urls": [
181
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-darwin-arm64"
182
+ ],
183
+ "downloaded_file_path": "buildozer",
184
+ "executable": true,
185
+ "sha256": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d"
186
+ }
187
+ },
188
+ "buildozer_linux_amd64": {
189
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
190
+ "ruleClassName": "http_file",
191
+ "attributes": {
192
+ "urls": [
193
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-linux-amd64"
194
+ ],
195
+ "downloaded_file_path": "buildozer",
196
+ "executable": true,
197
+ "sha256": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119"
198
+ }
199
+ },
200
+ "buildozer_windows_amd64": {
201
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
202
+ "ruleClassName": "http_file",
203
+ "attributes": {
204
+ "urls": [
205
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-windows-amd64.exe"
206
+ ],
207
+ "downloaded_file_path": "buildozer.exe",
208
+ "executable": true,
209
+ "sha256": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b"
210
+ }
211
+ },
212
+ "buildozer_linux_arm64": {
213
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
214
+ "ruleClassName": "http_file",
215
+ "attributes": {
216
+ "urls": [
217
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildozer-linux-arm64"
218
+ ],
219
+ "downloaded_file_path": "buildozer",
220
+ "executable": true,
221
+ "sha256": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa"
222
+ }
223
+ },
224
+ "buildifier_windows_amd64": {
225
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
226
+ "ruleClassName": "http_file",
227
+ "attributes": {
228
+ "urls": [
229
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-windows-amd64.exe"
230
+ ],
231
+ "downloaded_file_path": "buildifier.exe",
232
+ "executable": true,
233
+ "sha256": "da8372f35e34b65fb6d997844d041013bb841e55f58b54d596d35e49680fe13c"
234
+ }
235
+ },
236
+ "buildifier_prebuilt_toolchains": {
237
+ "bzlFile": "@@buildifier_prebuilt~//:defs.bzl",
238
+ "ruleClassName": "_buildifier_toolchain_setup",
239
+ "attributes": {
240
+ "assets_json": "[{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"darwin\",\"sha256\":\"eeb47b2de27f60efe549348b183fac24eae80f1479e8b06cac0799c486df5bed\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildifier\",\"platform\":\"darwin\",\"sha256\":\"fa07ba0d20165917ca4cc7609f9b19a8a4392898148b7babdf6bb2a7dd963f05\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"linux\",\"sha256\":\"be63db12899f48600bad94051123b1fd7b5251e7661b9168582ce52396132e92\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildifier\",\"platform\":\"linux\",\"sha256\":\"18540fc10f86190f87485eb86963e603e41fa022f88a2d1b0cf52ff252b5e1dd\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildifier\",\"platform\":\"windows\",\"sha256\":\"da8372f35e34b65fb6d997844d041013bb841e55f58b54d596d35e49680fe13c\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"darwin\",\"sha256\":\"d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildozer\",\"platform\":\"darwin\",\"sha256\":\"9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"linux\",\"sha256\":\"8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119\",\"version\":\"v6.4.0\"},{\"arch\":\"arm64\",\"name\":\"buildozer\",\"platform\":\"linux\",\"sha256\":\"6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa\",\"version\":\"v6.4.0\"},{\"arch\":\"amd64\",\"name\":\"buildozer\",\"platform\":\"windows\",\"sha256\":\"e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b\",\"version\":\"v6.4.0\"}]"
241
+ }
242
+ },
243
+ "buildifier_darwin_amd64": {
244
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
245
+ "ruleClassName": "http_file",
246
+ "attributes": {
247
+ "urls": [
248
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-darwin-amd64"
249
+ ],
250
+ "downloaded_file_path": "buildifier",
251
+ "executable": true,
252
+ "sha256": "eeb47b2de27f60efe549348b183fac24eae80f1479e8b06cac0799c486df5bed"
253
+ }
254
+ },
255
+ "buildifier_darwin_arm64": {
256
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
257
+ "ruleClassName": "http_file",
258
+ "attributes": {
259
+ "urls": [
260
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-darwin-arm64"
261
+ ],
262
+ "downloaded_file_path": "buildifier",
263
+ "executable": true,
264
+ "sha256": "fa07ba0d20165917ca4cc7609f9b19a8a4392898148b7babdf6bb2a7dd963f05"
265
+ }
266
+ },
267
+ "buildifier_linux_arm64": {
268
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
269
+ "ruleClassName": "http_file",
270
+ "attributes": {
271
+ "urls": [
272
+ "https://github.com/bazelbuild/buildtools/releases/download/v6.4.0/buildifier-linux-arm64"
273
+ ],
274
+ "downloaded_file_path": "buildifier",
275
+ "executable": true,
276
+ "sha256": "18540fc10f86190f87485eb86963e603e41fa022f88a2d1b0cf52ff252b5e1dd"
277
+ }
278
+ }
279
+ },
280
+ "recordedRepoMappingEntries": [
281
+ [
282
+ "buildifier_prebuilt~",
283
+ "bazel_skylib",
284
+ "bazel_skylib~"
285
+ ],
286
+ [
287
+ "buildifier_prebuilt~",
288
+ "bazel_tools",
289
+ "bazel_tools"
290
+ ]
291
+ ]
292
+ }
293
+ },
294
+ "@@platforms//host:extension.bzl%host_platform": {
295
+ "general": {
296
+ "bzlTransitiveDigest": "xelQcPZH8+tmuOHVjL9vDxMnnQNMlwj0SlvgoqBkm4U=",
297
+ "usagesDigest": "meSzxn3DUCcYEhq4HQwExWkWtU4EjriRBQLsZN+Q0SU=",
298
+ "recordedFileInputs": {},
299
+ "recordedDirentsInputs": {},
300
+ "envVariables": {},
301
+ "generatedRepoSpecs": {
302
+ "host_platform": {
303
+ "bzlFile": "@@platforms//host:extension.bzl",
304
+ "ruleClassName": "host_platform_repo",
305
+ "attributes": {}
306
+ }
307
+ },
308
+ "recordedRepoMappingEntries": []
309
+ }
310
+ },
311
+ "@@rules_apple~//apple:extensions.bzl%non_module_deps": {
312
+ "general": {
313
+ "bzlTransitiveDigest": "oPEqZNfcs022H7NPLNmv1aKCcHiNduKzqmo+Rcv5880=",
314
+ "usagesDigest": "vM/KnSVCs5XDWP6erz59ph9O37ujRi5KERl2+ig1V1s=",
315
+ "recordedFileInputs": {},
316
+ "recordedDirentsInputs": {},
317
+ "envVariables": {},
318
+ "generatedRepoSpecs": {
319
+ "xctestrunner": {
320
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
321
+ "ruleClassName": "http_archive",
322
+ "attributes": {
323
+ "urls": [
324
+ "https://github.com/google/xctestrunner/archive/b7698df3d435b6491b4b4c0f9fc7a63fbed5e3a6.tar.gz"
325
+ ],
326
+ "strip_prefix": "xctestrunner-b7698df3d435b6491b4b4c0f9fc7a63fbed5e3a6",
327
+ "sha256": "ae3a063c985a8633cb7eb566db21656f8db8eb9a0edb8c182312c7f0db53730d"
328
+ }
329
+ }
330
+ },
331
+ "recordedRepoMappingEntries": [
332
+ [
333
+ "rules_apple~",
334
+ "bazel_tools",
335
+ "bazel_tools"
336
+ ]
337
+ ]
338
+ }
339
+ },
340
+ "@@rules_python~//python/extensions:python.bzl%python": {
341
+ "general": {
342
+ "bzlTransitiveDigest": "/yOJamf205SazTZcWeVppJIMp+ft3hLNKXSwoDADZNo=",
343
+ "usagesDigest": "ZE2I3XMaBI3a/ZeZaclrZU48gDCvEch5L5cq9Ek70e8=",
344
+ "recordedFileInputs": {},
345
+ "recordedDirentsInputs": {},
346
+ "envVariables": {},
347
+ "generatedRepoSpecs": {
348
+ "python_3_11_s390x-unknown-linux-gnu": {
349
+ "bzlFile": "@@rules_python~//python:repositories.bzl",
350
+ "ruleClassName": "python_repository",
351
+ "attributes": {
352
+ "sha256": "f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c",
353
+ "patches": [],
354
+ "platform": "s390x-unknown-linux-gnu",
355
+ "python_version": "3.11.6",
356
+ "release_filename": "20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz",
357
+ "urls": [
358
+ "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz"
359
+ ],
360
+ "distutils_content": "",
361
+ "strip_prefix": "python",
362
+ "coverage_tool": "",
363
+ "ignore_root_user_error": false
364
+ }
365
+ },
366
+ "python_3_11": {
367
+ "bzlFile": "@@rules_python~//python/private:toolchains_repo.bzl",
368
+ "ruleClassName": "toolchain_aliases",
369
+ "attributes": {
370
+ "python_version": "3.11.6",
371
+ "user_repository_name": "python_3_11",
372
+ "platforms": [
373
+ "aarch64-apple-darwin",
374
+ "aarch64-unknown-linux-gnu",
375
+ "ppc64le-unknown-linux-gnu",
376
+ "s390x-unknown-linux-gnu",
377
+ "x86_64-apple-darwin",
378
+ "x86_64-pc-windows-msvc",
379
+ "x86_64-unknown-linux-gnu"
380
+ ]
381
+ }
382
+ },
383
+ "python_3_11_aarch64-unknown-linux-gnu": {
384
+ "bzlFile": "@@rules_python~//python:repositories.bzl",
385
+ "ruleClassName": "python_repository",
386
+ "attributes": {
387
+ "sha256": "3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec",
388
+ "patches": [],
389
+ "platform": "aarch64-unknown-linux-gnu",
390
+ "python_version": "3.11.6",
391
+ "release_filename": "20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz",
392
+ "urls": [
393
+ "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz"
394
+ ],
395
+ "distutils_content": "",
396
+ "strip_prefix": "python",
397
+ "coverage_tool": "",
398
+ "ignore_root_user_error": false
399
+ }
400
+ },
401
+ "python_3_11_aarch64-apple-darwin": {
402
+ "bzlFile": "@@rules_python~//python:repositories.bzl",
403
+ "ruleClassName": "python_repository",
404
+ "attributes": {
405
+ "sha256": "916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990",
406
+ "patches": [],
407
+ "platform": "aarch64-apple-darwin",
408
+ "python_version": "3.11.6",
409
+ "release_filename": "20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz",
410
+ "urls": [
411
+ "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz"
412
+ ],
413
+ "distutils_content": "",
414
+ "strip_prefix": "python",
415
+ "coverage_tool": "",
416
+ "ignore_root_user_error": false
417
+ }
418
+ },
419
+ "python_3_11_ppc64le-unknown-linux-gnu": {
420
+ "bzlFile": "@@rules_python~//python:repositories.bzl",
421
+ "ruleClassName": "python_repository",
422
+ "attributes": {
423
+ "sha256": "7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf",
424
+ "patches": [],
425
+ "platform": "ppc64le-unknown-linux-gnu",
426
+ "python_version": "3.11.6",
427
+ "release_filename": "20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz",
428
+ "urls": [
429
+ "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz"
430
+ ],
431
+ "distutils_content": "",
432
+ "strip_prefix": "python",
433
+ "coverage_tool": "",
434
+ "ignore_root_user_error": false
435
+ }
436
+ },
437
+ "python_3_11_x86_64-apple-darwin": {
438
+ "bzlFile": "@@rules_python~//python:repositories.bzl",
439
+ "ruleClassName": "python_repository",
440
+ "attributes": {
441
+ "sha256": "178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371",
442
+ "patches": [],
443
+ "platform": "x86_64-apple-darwin",
444
+ "python_version": "3.11.6",
445
+ "release_filename": "20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz",
446
+ "urls": [
447
+ "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz"
448
+ ],
449
+ "distutils_content": "",
450
+ "strip_prefix": "python",
451
+ "coverage_tool": "",
452
+ "ignore_root_user_error": false
453
+ }
454
+ },
455
+ "pythons_hub": {
456
+ "bzlFile": "@@rules_python~//python/private/bzlmod:pythons_hub.bzl",
457
+ "ruleClassName": "hub_repo",
458
+ "attributes": {
459
+ "default_python_version": "3.11",
460
+ "toolchain_prefixes": [
461
+ "_0000_python_3_11_"
462
+ ],
463
+ "toolchain_python_versions": [
464
+ "3.11"
465
+ ],
466
+ "toolchain_set_python_version_constraints": [
467
+ "False"
468
+ ],
469
+ "toolchain_user_repository_names": [
470
+ "python_3_11"
471
+ ]
472
+ }
473
+ },
474
+ "python_versions": {
475
+ "bzlFile": "@@rules_python~//python/private:toolchains_repo.bzl",
476
+ "ruleClassName": "multi_toolchain_aliases",
477
+ "attributes": {
478
+ "python_versions": {
479
+ "3.11": "python_3_11"
480
+ }
481
+ }
482
+ },
483
+ "python_3_11_x86_64-pc-windows-msvc": {
484
+ "bzlFile": "@@rules_python~//python:repositories.bzl",
485
+ "ruleClassName": "python_repository",
486
+ "attributes": {
487
+ "sha256": "3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea",
488
+ "patches": [],
489
+ "platform": "x86_64-pc-windows-msvc",
490
+ "python_version": "3.11.6",
491
+ "release_filename": "20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz",
492
+ "urls": [
493
+ "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"
494
+ ],
495
+ "distutils_content": "",
496
+ "strip_prefix": "python",
497
+ "coverage_tool": "",
498
+ "ignore_root_user_error": false
499
+ }
500
+ },
501
+ "python_3_11_x86_64-unknown-linux-gnu": {
502
+ "bzlFile": "@@rules_python~//python:repositories.bzl",
503
+ "ruleClassName": "python_repository",
504
+ "attributes": {
505
+ "sha256": "ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8",
506
+ "patches": [],
507
+ "platform": "x86_64-unknown-linux-gnu",
508
+ "python_version": "3.11.6",
509
+ "release_filename": "20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz",
510
+ "urls": [
511
+ "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz"
512
+ ],
513
+ "distutils_content": "",
514
+ "strip_prefix": "python",
515
+ "coverage_tool": "",
516
+ "ignore_root_user_error": false
517
+ }
518
+ }
519
+ },
520
+ "recordedRepoMappingEntries": [
521
+ [
522
+ "rules_python~",
523
+ "bazel_tools",
524
+ "bazel_tools"
525
+ ]
526
+ ]
527
+ }
528
+ },
529
+ "@@rules_python~//python/private/bzlmod:internal_deps.bzl%internal_deps": {
530
+ "general": {
531
+ "bzlTransitiveDigest": "BBwtJlGgWcMoGDUgN/9oMYPkMEig0gnViMArGuYOgvw=",
532
+ "usagesDigest": "0KtJR32xTfnnwt2hOSAdBgKoWuOMjlmHn+Po/xBs5Aw=",
533
+ "recordedFileInputs": {},
534
+ "recordedDirentsInputs": {},
535
+ "envVariables": {},
536
+ "generatedRepoSpecs": {
537
+ "pypi__wheel": {
538
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
539
+ "ruleClassName": "http_archive",
540
+ "attributes": {
541
+ "url": "https://files.pythonhosted.org/packages/b8/8b/31273bf66016be6ad22bb7345c37ff350276cfd46e389a0c2ac5da9d9073/wheel-0.41.2-py3-none-any.whl",
542
+ "sha256": "75909db2664838d015e3d9139004ee16711748a52c8f336b52882266540215d8",
543
+ "type": "zip",
544
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
545
+ }
546
+ },
547
+ "pypi__click": {
548
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
549
+ "ruleClassName": "http_archive",
550
+ "attributes": {
551
+ "url": "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl",
552
+ "sha256": "ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28",
553
+ "type": "zip",
554
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
555
+ }
556
+ },
557
+ "pypi__importlib_metadata": {
558
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
559
+ "ruleClassName": "http_archive",
560
+ "attributes": {
561
+ "url": "https://files.pythonhosted.org/packages/cc/37/db7ba97e676af155f5fcb1a35466f446eadc9104e25b83366e8088c9c926/importlib_metadata-6.8.0-py3-none-any.whl",
562
+ "sha256": "3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb",
563
+ "type": "zip",
564
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
565
+ }
566
+ },
567
+ "pypi__pyproject_hooks": {
568
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
569
+ "ruleClassName": "http_archive",
570
+ "attributes": {
571
+ "url": "https://files.pythonhosted.org/packages/d5/ea/9ae603de7fbb3df820b23a70f6aff92bf8c7770043254ad8d2dc9d6bcba4/pyproject_hooks-1.0.0-py3-none-any.whl",
572
+ "sha256": "283c11acd6b928d2f6a7c73fa0d01cb2bdc5f07c57a2eeb6e83d5e56b97976f8",
573
+ "type": "zip",
574
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
575
+ }
576
+ },
577
+ "pypi__pep517": {
578
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
579
+ "ruleClassName": "http_archive",
580
+ "attributes": {
581
+ "url": "https://files.pythonhosted.org/packages/ee/2f/ef63e64e9429111e73d3d6cbee80591672d16f2725e648ebc52096f3d323/pep517-0.13.0-py3-none-any.whl",
582
+ "sha256": "4ba4446d80aed5b5eac6509ade100bff3e7943a8489de249654a5ae9b33ee35b",
583
+ "type": "zip",
584
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
585
+ }
586
+ },
587
+ "pypi__packaging": {
588
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
589
+ "ruleClassName": "http_archive",
590
+ "attributes": {
591
+ "url": "https://files.pythonhosted.org/packages/ab/c3/57f0601a2d4fe15de7a553c00adbc901425661bf048f2a22dfc500caf121/packaging-23.1-py3-none-any.whl",
592
+ "sha256": "994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61",
593
+ "type": "zip",
594
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
595
+ }
596
+ },
597
+ "pypi__pip_tools": {
598
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
599
+ "ruleClassName": "http_archive",
600
+ "attributes": {
601
+ "url": "https://files.pythonhosted.org/packages/e8/df/47e6267c6b5cdae867adbdd84b437393e6202ce4322de0a5e0b92960e1d6/pip_tools-7.3.0-py3-none-any.whl",
602
+ "sha256": "8717693288720a8c6ebd07149c93ab0be1fced0b5191df9e9decd3263e20d85e",
603
+ "type": "zip",
604
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
605
+ }
606
+ },
607
+ "pypi__setuptools": {
608
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
609
+ "ruleClassName": "http_archive",
610
+ "attributes": {
611
+ "url": "https://files.pythonhosted.org/packages/4f/ab/0bcfebdfc3bfa8554b2b2c97a555569c4c1ebc74ea288741ea8326c51906/setuptools-68.1.2-py3-none-any.whl",
612
+ "sha256": "3d8083eed2d13afc9426f227b24fd1659489ec107c0e86cec2ffdde5c92e790b",
613
+ "type": "zip",
614
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
615
+ }
616
+ },
617
+ "pypi__zipp": {
618
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
619
+ "ruleClassName": "http_archive",
620
+ "attributes": {
621
+ "url": "https://files.pythonhosted.org/packages/8c/08/d3006317aefe25ea79d3b76c9650afabaf6d63d1c8443b236e7405447503/zipp-3.16.2-py3-none-any.whl",
622
+ "sha256": "679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0",
623
+ "type": "zip",
624
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
625
+ }
626
+ },
627
+ "pypi__colorama": {
628
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
629
+ "ruleClassName": "http_archive",
630
+ "attributes": {
631
+ "url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl",
632
+ "sha256": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6",
633
+ "type": "zip",
634
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
635
+ }
636
+ },
637
+ "pypi__build": {
638
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
639
+ "ruleClassName": "http_archive",
640
+ "attributes": {
641
+ "url": "https://files.pythonhosted.org/packages/58/91/17b00d5fac63d3dca605f1b8269ba3c65e98059e1fd99d00283e42a454f0/build-0.10.0-py3-none-any.whl",
642
+ "sha256": "af266720050a66c893a6096a2f410989eeac74ff9a68ba194b3f6473e8e26171",
643
+ "type": "zip",
644
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
645
+ }
646
+ },
647
+ "rules_python_internal": {
648
+ "bzlFile": "@@rules_python~//python/private:internal_config_repo.bzl",
649
+ "ruleClassName": "internal_config_repo",
650
+ "attributes": {}
651
+ },
652
+ "pypi__pip": {
653
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
654
+ "ruleClassName": "http_archive",
655
+ "attributes": {
656
+ "url": "https://files.pythonhosted.org/packages/50/c2/e06851e8cc28dcad7c155f4753da8833ac06a5c704c109313b8d5a62968a/pip-23.2.1-py3-none-any.whl",
657
+ "sha256": "7ccf472345f20d35bdc9d1841ff5f313260c2c33fe417f48c30ac46cccabf5be",
658
+ "type": "zip",
659
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
660
+ }
661
+ },
662
+ "pypi__installer": {
663
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
664
+ "ruleClassName": "http_archive",
665
+ "attributes": {
666
+ "url": "https://files.pythonhosted.org/packages/e5/ca/1172b6638d52f2d6caa2dd262ec4c811ba59eee96d54a7701930726bce18/installer-0.7.0-py3-none-any.whl",
667
+ "sha256": "05d1933f0a5ba7d8d6296bb6d5018e7c94fa473ceb10cf198a92ccea19c27b53",
668
+ "type": "zip",
669
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
670
+ }
671
+ },
672
+ "pypi__more_itertools": {
673
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
674
+ "ruleClassName": "http_archive",
675
+ "attributes": {
676
+ "url": "https://files.pythonhosted.org/packages/5a/cb/6dce742ea14e47d6f565589e859ad225f2a5de576d7696e0623b784e226b/more_itertools-10.1.0-py3-none-any.whl",
677
+ "sha256": "64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6",
678
+ "type": "zip",
679
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
680
+ }
681
+ },
682
+ "pypi__tomli": {
683
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
684
+ "ruleClassName": "http_archive",
685
+ "attributes": {
686
+ "url": "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl",
687
+ "sha256": "939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc",
688
+ "type": "zip",
689
+ "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
690
+ }
691
+ }
692
+ },
693
+ "recordedRepoMappingEntries": [
694
+ [
695
+ "rules_python~",
696
+ "bazel_tools",
697
+ "bazel_tools"
698
+ ]
699
+ ]
700
+ }
701
+ },
702
+ "@@rules_ruby~//ruby:extensions.bzl%ruby": {
703
+ "general": {
704
+ "bzlTransitiveDigest": "NxSP9LLm4RG1oiyMls+315qCJ1kNmOzIXiHYPRymYKc=",
705
+ "usagesDigest": "dQ7IEjRkJ6ZSOUkMgaZHMDyUCD+VLt9OczHvGhguz4s=",
706
+ "recordedFileInputs": {},
707
+ "recordedDirentsInputs": {},
708
+ "envVariables": {},
709
+ "generatedRepoSpecs": {
710
+ "ruby_toolchains": {
711
+ "bzlFile": "@@rules_ruby~//ruby/private/toolchain:repository_proxy.bzl",
712
+ "ruleClassName": "rb_toolchain_repository_proxy",
713
+ "attributes": {
714
+ "toolchain": "@ruby//:toolchain",
715
+ "toolchain_type": "@rules_ruby//ruby:toolchain_type"
716
+ }
717
+ },
718
+ "bundle": {
719
+ "bzlFile": "@@rules_ruby~//ruby/private:bundle_fetch.bzl",
720
+ "ruleClassName": "rb_bundle_fetch",
721
+ "attributes": {
722
+ "srcs": [],
723
+ "env": {},
724
+ "gemfile": "@@//backend/app:Gemfile",
725
+ "gemfile_lock": "@@//backend/app:Gemfile.lock",
726
+ "gem_checksums": {},
727
+ "bundler_remote": "https://rubygems.org/",
728
+ "bundler_checksums": {}
729
+ }
730
+ },
731
+ "ruby": {
732
+ "bzlFile": "@@rules_ruby~//ruby/private:download.bzl",
733
+ "ruleClassName": "rb_download",
734
+ "attributes": {
735
+ "version": "",
736
+ "version_file": "@@//backend/app:.ruby-version",
737
+ "msys2_packages": [
738
+ "libyaml"
739
+ ],
740
+ "ruby_build_version": "20240530.1"
741
+ }
742
+ }
743
+ },
744
+ "recordedRepoMappingEntries": [
745
+ [
746
+ "rules_ruby~",
747
+ "bazel_skylib",
748
+ "bazel_skylib~"
749
+ ]
750
+ ]
751
+ }
752
+ },
753
+ "@@rules_swift~//swift:extensions.bzl%non_module_deps": {
754
+ "general": {
755
+ "bzlTransitiveDigest": "Cmw0SWMEF+W7yHokTa/RRl3v7uDPKysmnNQ6hvKeA30=",
756
+ "usagesDigest": "Bxpjq7dEoQ6itfQLt8YOa+X+mqBZ+FWDDiSlD7pLoho=",
757
+ "recordedFileInputs": {},
758
+ "recordedDirentsInputs": {},
759
+ "envVariables": {},
760
+ "generatedRepoSpecs": {
761
+ "com_github_grpc_grpc_swift": {
762
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
763
+ "ruleClassName": "http_archive",
764
+ "attributes": {
765
+ "urls": [
766
+ "https://github.com/grpc/grpc-swift/archive/1.16.0.tar.gz"
767
+ ],
768
+ "sha256": "58b60431d0064969f9679411264b82e40a217ae6bd34e17096d92cc4e47556a5",
769
+ "strip_prefix": "grpc-swift-1.16.0/",
770
+ "build_file": "@@rules_swift~//third_party:com_github_grpc_grpc_swift/BUILD.overlay"
771
+ }
772
+ },
773
+ "com_github_apple_swift_nio_extras": {
774
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
775
+ "ruleClassName": "http_archive",
776
+ "attributes": {
777
+ "urls": [
778
+ "https://github.com/apple/swift-nio-extras/archive/1.4.0.tar.gz"
779
+ ],
780
+ "sha256": "4684b52951d9d9937bb3e8ccd6b5daedd777021ef2519ea2f18c4c922843b52b",
781
+ "strip_prefix": "swift-nio-extras-1.4.0/",
782
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_extras/BUILD.overlay"
783
+ }
784
+ },
785
+ "com_github_apple_swift_protobuf": {
786
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
787
+ "ruleClassName": "http_archive",
788
+ "attributes": {
789
+ "urls": [
790
+ "https://github.com/apple/swift-protobuf/archive/1.20.2.tar.gz"
791
+ ],
792
+ "sha256": "3fb50bd4d293337f202d917b6ada22f9548a0a0aed9d9a4d791e6fbd8a246ebb",
793
+ "strip_prefix": "swift-protobuf-1.20.2/",
794
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_protobuf/BUILD.overlay"
795
+ }
796
+ },
797
+ "com_github_apple_swift_nio_ssl": {
798
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
799
+ "ruleClassName": "http_archive",
800
+ "attributes": {
801
+ "urls": [
802
+ "https://github.com/apple/swift-nio-ssl/archive/2.23.0.tar.gz"
803
+ ],
804
+ "sha256": "4787c63f61dd04d99e498adc3d1a628193387e41efddf8de19b8db04544d016d",
805
+ "strip_prefix": "swift-nio-ssl-2.23.0/",
806
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_ssl/BUILD.overlay"
807
+ }
808
+ },
809
+ "com_github_apple_swift_atomics": {
810
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
811
+ "ruleClassName": "http_archive",
812
+ "attributes": {
813
+ "urls": [
814
+ "https://github.com/apple/swift-atomics/archive/1.1.0.tar.gz"
815
+ ],
816
+ "sha256": "1bee7f469f7e8dc49f11cfa4da07182fbc79eab000ec2c17bfdce468c5d276fb",
817
+ "strip_prefix": "swift-atomics-1.1.0/",
818
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_atomics/BUILD.overlay"
819
+ }
820
+ },
821
+ "com_github_apple_swift_nio_http2": {
822
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
823
+ "ruleClassName": "http_archive",
824
+ "attributes": {
825
+ "urls": [
826
+ "https://github.com/apple/swift-nio-http2/archive/1.26.0.tar.gz"
827
+ ],
828
+ "sha256": "f0edfc9d6a7be1d587e5b403f2d04264bdfae59aac1d74f7d974a9022c6d2b25",
829
+ "strip_prefix": "swift-nio-http2-1.26.0/",
830
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_http2/BUILD.overlay"
831
+ }
832
+ },
833
+ "com_github_apple_swift_nio_transport_services": {
834
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
835
+ "ruleClassName": "http_archive",
836
+ "attributes": {
837
+ "urls": [
838
+ "https://github.com/apple/swift-nio-transport-services/archive/1.15.0.tar.gz"
839
+ ],
840
+ "sha256": "f3498dafa633751a52b9b7f741f7ac30c42bcbeb3b9edca6d447e0da8e693262",
841
+ "strip_prefix": "swift-nio-transport-services-1.15.0/",
842
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio_transport_services/BUILD.overlay"
843
+ }
844
+ },
845
+ "build_bazel_rules_swift_index_import": {
846
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
847
+ "ruleClassName": "http_archive",
848
+ "attributes": {
849
+ "build_file": "@@rules_swift~//third_party:build_bazel_rules_swift_index_import/BUILD.overlay",
850
+ "canonical_id": "index-import-5.8",
851
+ "urls": [
852
+ "https://github.com/MobileNativeFoundation/index-import/releases/download/5.8.0.1/index-import.tar.gz"
853
+ ],
854
+ "sha256": "28c1ffa39d99e74ed70623899b207b41f79214c498c603915aef55972a851a15"
855
+ }
856
+ },
857
+ "com_github_apple_swift_nio": {
858
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
859
+ "ruleClassName": "http_archive",
860
+ "attributes": {
861
+ "urls": [
862
+ "https://github.com/apple/swift-nio/archive/2.42.0.tar.gz"
863
+ ],
864
+ "sha256": "e3304bc3fb53aea74a3e54bd005ede11f6dc357117d9b1db642d03aea87194a0",
865
+ "strip_prefix": "swift-nio-2.42.0/",
866
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_nio/BUILD.overlay"
867
+ }
868
+ },
869
+ "com_github_apple_swift_log": {
870
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
871
+ "ruleClassName": "http_archive",
872
+ "attributes": {
873
+ "urls": [
874
+ "https://github.com/apple/swift-log/archive/1.4.4.tar.gz"
875
+ ],
876
+ "sha256": "48fe66426c784c0c20031f15dc17faf9f4c9037c192bfac2f643f65cb2321ba0",
877
+ "strip_prefix": "swift-log-1.4.4/",
878
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_log/BUILD.overlay"
879
+ }
880
+ },
881
+ "com_github_apple_swift_collections": {
882
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
883
+ "ruleClassName": "http_archive",
884
+ "attributes": {
885
+ "urls": [
886
+ "https://github.com/apple/swift-collections/archive/1.0.4.tar.gz"
887
+ ],
888
+ "sha256": "d9e4c8a91c60fb9c92a04caccbb10ded42f4cb47b26a212bc6b39cc390a4b096",
889
+ "strip_prefix": "swift-collections-1.0.4/",
890
+ "build_file": "@@rules_swift~//third_party:com_github_apple_swift_collections/BUILD.overlay"
891
+ }
892
+ },
893
+ "build_bazel_rules_swift_local_config": {
894
+ "bzlFile": "@@rules_swift~//swift/internal:swift_autoconfiguration.bzl",
895
+ "ruleClassName": "swift_autoconfiguration",
896
+ "attributes": {}
897
+ }
898
+ },
899
+ "recordedRepoMappingEntries": [
900
+ [
901
+ "rules_swift~",
902
+ "bazel_tools",
903
+ "bazel_tools"
904
+ ],
905
+ [
906
+ "rules_swift~",
907
+ "build_bazel_rules_swift",
908
+ "rules_swift~"
909
+ ]
910
+ ]
911
+ }
912
+ },
913
+ "@@rules_xcodeproj~//xcodeproj:extensions.bzl%internal": {
914
+ "general": {
915
+ "bzlTransitiveDigest": "1fbslW10PK5watY0cKS44ulYJ5jYEZhkpBmoqcJnee4=",
916
+ "usagesDigest": "qfGibscY0fbJEeXBgiU8BdSb2zK7PKb9vPJdVK2fcH8=",
917
+ "recordedFileInputs": {},
918
+ "recordedDirentsInputs": {},
919
+ "envVariables": {},
920
+ "generatedRepoSpecs": {
921
+ "rules_xcodeproj_generated": {
922
+ "bzlFile": "@@rules_xcodeproj~//xcodeproj:repositories.bzl",
923
+ "ruleClassName": "generated_files_repo",
924
+ "attributes": {}
925
+ }
926
+ },
927
+ "recordedRepoMappingEntries": [
928
+ [
929
+ "rules_xcodeproj~",
930
+ "bazel_tools",
931
+ "bazel_tools"
932
+ ]
933
+ ]
934
+ }
935
+ },
936
+ "@@rules_xcodeproj~//xcodeproj:extensions.bzl%non_module_deps": {
937
+ "general": {
938
+ "bzlTransitiveDigest": "1fbslW10PK5watY0cKS44ulYJ5jYEZhkpBmoqcJnee4=",
939
+ "usagesDigest": "g/L3wDxIXCaaSeguUJCldomhPNUIkgxP9BG7VF2Gblw=",
940
+ "recordedFileInputs": {},
941
+ "recordedDirentsInputs": {},
942
+ "envVariables": {},
943
+ "generatedRepoSpecs": {
944
+ "rules_xcodeproj_index_import": {
945
+ "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
946
+ "ruleClassName": "http_archive",
947
+ "attributes": {
948
+ "build_file_content": "load(\"@bazel_skylib//rules:native_binary.bzl\", \"native_binary\")\n\nnative_binary(\n name = \"index_import\",\n src = \"index-import\",\n out = \"index-import\",\n visibility = [\"//visibility:public\"],\n)\n",
949
+ "sha256": "28c1ffa39d99e74ed70623899b207b41f79214c498c603915aef55972a851a15",
950
+ "url": "https://github.com/MobileNativeFoundation/index-import/releases/download/5.8.0.1/index-import.tar.gz"
951
+ }
952
+ }
953
+ },
954
+ "recordedRepoMappingEntries": [
955
+ [
956
+ "rules_xcodeproj~",
957
+ "bazel_tools",
958
+ "bazel_tools"
959
+ ]
960
+ ]
961
+ }
962
+ }
963
+ }
964
+}
README.md
new
+44
@@ -0,0 +1,44 @@
1
+# tower-of-bazel
2
+
3
+> {fast, correct} + {no masters but ourselves} = {tower of bazel}
4
+
5
+This simple repo demonstrates how to set up a multi-language monorepo.
6
+
7
+## Before running it
8
+
9
+This project is using `git LFS`. After cloning it, remember to run the following commands.
10
+
11
+```bash
12
+git lfs install
13
+git lfs pull
14
+```
15
+
16
+## How to use
17
+
18
+If you're new to Bazel, read [the documentation](https://bazel.build/docs). Otherwise, query all targets:
19
+
20
+```bash
21
+bazel query //...
22
+```
23
+
24
+### Tauri
25
+
26
+Run debug Tauri app:
27
+
28
+```bash
29
+bazel run //frontend/desktop:dev
30
+```
31
+
32
+### Apple
33
+
34
+Generate Xcode project:
35
+
36
+```bash
37
+bazel run //frontend/apple:xcodeproj
38
+```
39
+
40
+## Credits
41
+
42
+- [Tauri](https://github.com/marmos91/tauri-bazel-next-typescript).
43
+- [Tauri on Bazel](https://github.com/setoelkahfi/tauri-on-bazel).
44
+- [Apple](https://github.com/mattrobmattrob/bazel-ios-swiftui-template).
WORKSPACE
new
+46
@@ -0,0 +1,46 @@
1
+workspace(name = "tower-of-bazel")
2
+
3
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4
+
5
+http_archive(
6
+ name = "rules_nodejs",
7
+ sha256 = "0c2277164b1752bb71ecfba3107f01c6a8fb02e4835a790914c71dfadcf646ba",
8
+ urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.8.5/rules_nodejs-core-5.8.5.tar.gz"],
9
+)
10
+
11
+http_archive(
12
+ name = "build_bazel_rules_nodejs",
13
+ sha256 = "a1295b168f183218bc88117cf00674bcd102498f294086ff58318f830dd9d9d1",
14
+ urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/5.8.5/rules_nodejs-5.8.5.tar.gz"],
15
+)
16
+
17
+load("@build_bazel_rules_nodejs//:repositories.bzl", "build_bazel_rules_nodejs_dependencies")
18
+
19
+build_bazel_rules_nodejs_dependencies()
20
+
21
+load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains")
22
+
23
+node_version = "20.14.0"
24
+
25
+nodejs_register_toolchains(
26
+ name = "nodejs",
27
+ node_version = node_version,
28
+)
29
+
30
+load("@build_bazel_rules_nodejs//:index.bzl", "npm_install")
31
+
32
+npm_install(
33
+ name = "npm",
34
+ package_json = "//frontend/desktop:package.json",
35
+ package_lock_json = "//frontend/desktop:package-lock.json",
36
+ package_path = "frontend/desktop/",
37
+ quiet = False,
38
+ symlink_node_modules = True,
39
+)
40
+
41
+# Load the Ruby rules
42
+load("@rules_ruby//ruby:deps.bzl", "rb_register_toolchains")
43
+
44
+rb_register_toolchains(
45
+ version_file = "//backend/app:.ruby-version",
46
+)
backend/app/.dockerignore
new
+37
@@ -0,0 +1,37 @@
1
+# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
2
+
3
+# Ignore git directory.
4
+/.git/
5
+
6
+# Ignore bundler config.
7
+/.bundle
8
+
9
+# Ignore all environment files (except templates).
10
+/.env*
11
+!/.env*.erb
12
+
13
+# Ignore all default key files.
14
+/config/master.key
15
+/config/credentials/*.key
16
+
17
+# Ignore all logfiles and tempfiles.
18
+/log/*
19
+/tmp/*
20
+!/log/.keep
21
+!/tmp/.keep
22
+
23
+# Ignore pidfiles, but keep the directory.
24
+/tmp/pids/*
25
+!/tmp/pids/.keep
26
+
27
+# Ignore storage (uploaded files in development and any SQLite databases).
28
+/storage/*
29
+!/storage/.keep
30
+/tmp/storage/*
31
+!/tmp/storage/.keep
32
+
33
+# Ignore assets.
34
+/node_modules/
35
+/app/assets/builds/*
36
+!/app/assets/builds/.keep
37
+/public/assets
backend/app/.gitattributes
new
+9
@@ -0,0 +1,9 @@
1
+# See https://git-scm.com/docs/gitattributes for more about git attribute files.
2
+
3
+# Mark the database schema as having been generated.
4
+db/schema.rb linguist-generated
5
+
6
+# Mark any vendored files as having been vendored.
7
+vendor/* linguist-vendored
8
+config/credentials/*.yml.enc diff=rails_credentials
9
+config/credentials.yml.enc diff=rails_credentials
backend/app/.gitignore
new
+38
@@ -0,0 +1,38 @@
1
+# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+#
3
+# If you find yourself ignoring temporary files generated by your text editor
4
+# or operating system, you probably want to add a global ignore instead:
5
+# git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+# Ignore bundler config.
8
+/.bundle
9
+
10
+# Ignore all environment files (except templates).
11
+/.env*
12
+!/.env*.erb
13
+
14
+# Ignore all logfiles and tempfiles.
15
+/log/*
16
+/tmp/*
17
+!/log/.keep
18
+!/tmp/.keep
19
+
20
+# Ignore pidfiles, but keep the directory.
21
+/tmp/pids/*
22
+!/tmp/pids/
23
+!/tmp/pids/.keep
24
+
25
+# Ignore storage (uploaded files in development and any SQLite databases).
26
+/storage/*
27
+!/storage/.keep
28
+/tmp/storage/*
29
+!/tmp/storage/
30
+!/tmp/storage/.keep
31
+
32
+/public/assets
33
+
34
+# Ignore master key for decrypting credentials and more.
35
+/config/master.key
36
+
37
+/app/assets/builds/*
38
+!/app/assets/builds/.keep
backend/app/.ruby-version
new
+1
@@ -0,0 +1 @@
1
+3.3.2
backend/app/BUILD
new
+11
@@ -0,0 +1,11 @@
1
+load("@rules_ruby//ruby:defs.bzl", "rb_binary")
2
+
3
+package(default_visibility = ["//:__subpackages__"])
4
+
5
+rb_binary(
6
+ name = "rails",
7
+ main = "@bundle//bin:rails",
8
+ deps = [
9
+ "@bundle",
10
+ ],
11
+)
backend/app/Dockerfile
new
+62
@@ -0,0 +1,62 @@
1
+# syntax = docker/dockerfile:1
2
+
3
+# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
4
+ARG RUBY_VERSION=3.3.2
5
+FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base
6
+
7
+# Rails app lives here
8
+WORKDIR /rails
9
+
10
+# Set production environment
11
+ENV RAILS_ENV="production" \
12
+ BUNDLE_DEPLOYMENT="1" \
13
+ BUNDLE_PATH="/usr/local/bundle" \
14
+ BUNDLE_WITHOUT="development"
15
+
16
+
17
+# Throw-away build stage to reduce size of final image
18
+FROM base as build
19
+
20
+# Install packages needed to build gems
21
+RUN apt-get update -qq && \
22
+ apt-get install --no-install-recommends -y build-essential git libpq-dev libvips pkg-config
23
+
24
+# Install application gems
25
+COPY Gemfile Gemfile.lock ./
26
+RUN bundle install && \
27
+ rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \
28
+ bundle exec bootsnap precompile --gemfile
29
+
30
+# Copy application code
31
+COPY . .
32
+
33
+# Precompile bootsnap code for faster boot times
34
+RUN bundle exec bootsnap precompile app/ lib/
35
+
36
+# Precompiling assets for production without requiring secret RAILS_MASTER_KEY
37
+RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
38
+
39
+
40
+# Final stage for app image
41
+FROM base
42
+
43
+# Install packages needed for deployment
44
+RUN apt-get update -qq && \
45
+ apt-get install --no-install-recommends -y curl libvips postgresql-client && \
46
+ rm -rf /var/lib/apt/lists /var/cache/apt/archives
47
+
48
+# Copy built artifacts: gems, application
49
+COPY --from=build /usr/local/bundle /usr/local/bundle
50
+COPY --from=build /rails /rails
51
+
52
+# Run and own only the runtime files as a non-root user for security
53
+RUN useradd rails --create-home --shell /bin/bash && \
54
+ chown -R rails:rails db log storage tmp
55
+USER rails:rails
56
+
57
+# Entrypoint prepares the database.
58
+ENTRYPOINT ["/rails/bin/docker-entrypoint"]
59
+
60
+# Start the server by default, this can be overwritten at runtime
61
+EXPOSE 3000
62
+CMD ["./bin/rails", "server"]
backend/app/Gemfile
new
+70
@@ -0,0 +1,70 @@
1
+source "https://rubygems.org"
2
+
3
+ruby "3.3.2"
4
+
5
+# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
6
+gem "rails", "~> 7.1.3", ">= 7.1.3.4"
7
+
8
+# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
9
+gem "sprockets-rails"
10
+
11
+# Use postgresql as the database for Active Record
12
+gem "pg", "~> 1.1"
13
+
14
+# Use the Puma web server [https://github.com/puma/puma]
15
+gem "puma", ">= 5.0"
16
+
17
+# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
18
+gem "importmap-rails"
19
+
20
+# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
21
+gem "turbo-rails"
22
+
23
+# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
24
+gem "stimulus-rails"
25
+
26
+# Use Tailwind CSS [https://github.com/rails/tailwindcss-rails]
27
+gem "tailwindcss-rails"
28
+
29
+# Build JSON APIs with ease [https://github.com/rails/jbuilder]
30
+gem "jbuilder"
31
+
32
+# Use Redis adapter to run Action Cable in production
33
+gem "redis", ">= 4.0.1"
34
+
35
+# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
36
+# gem "kredis"
37
+
38
+# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
39
+# gem "bcrypt", "~> 3.1.7"
40
+
41
+# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
42
+gem "tzinfo-data", platforms: %i[ windows jruby ]
43
+
44
+# Reduces boot times through caching; required in config/boot.rb
45
+gem "bootsnap", require: false
46
+
47
+# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
48
+# gem "image_processing", "~> 1.2"
49
+
50
+group :development, :test do
51
+ # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
52
+ gem "debug", platforms: %i[ mri windows ]
53
+end
54
+
55
+group :development do
56
+ # Use console on exceptions pages [https://github.com/rails/web-console]
57
+ gem "web-console"
58
+
59
+ # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
60
+ # gem "rack-mini-profiler"
61
+
62
+ # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
63
+ # gem "spring"
64
+end
65
+
66
+group :test do
67
+ # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
68
+ gem "capybara"
69
+ gem "selenium-webdriver"
70
+end
backend/app/Gemfile.lock
new
+294
@@ -0,0 +1,294 @@
1
+GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ actioncable (7.1.3.4)
5
+ actionpack (= 7.1.3.4)
6
+ activesupport (= 7.1.3.4)
7
+ nio4r (~> 2.0)
8
+ websocket-driver (>= 0.6.1)
9
+ zeitwerk (~> 2.6)
10
+ actionmailbox (7.1.3.4)
11
+ actionpack (= 7.1.3.4)
12
+ activejob (= 7.1.3.4)
13
+ activerecord (= 7.1.3.4)
14
+ activestorage (= 7.1.3.4)
15
+ activesupport (= 7.1.3.4)
16
+ mail (>= 2.7.1)
17
+ net-imap
18
+ net-pop
19
+ net-smtp
20
+ actionmailer (7.1.3.4)
21
+ actionpack (= 7.1.3.4)
22
+ actionview (= 7.1.3.4)
23
+ activejob (= 7.1.3.4)
24
+ activesupport (= 7.1.3.4)
25
+ mail (~> 2.5, >= 2.5.4)
26
+ net-imap
27
+ net-pop
28
+ net-smtp
29
+ rails-dom-testing (~> 2.2)
30
+ actionpack (7.1.3.4)
31
+ actionview (= 7.1.3.4)
32
+ activesupport (= 7.1.3.4)
33
+ nokogiri (>= 1.8.5)
34
+ racc
35
+ rack (>= 2.2.4)
36
+ rack-session (>= 1.0.1)
37
+ rack-test (>= 0.6.3)
38
+ rails-dom-testing (~> 2.2)
39
+ rails-html-sanitizer (~> 1.6)
40
+ actiontext (7.1.3.4)
41
+ actionpack (= 7.1.3.4)
42
+ activerecord (= 7.1.3.4)
43
+ activestorage (= 7.1.3.4)
44
+ activesupport (= 7.1.3.4)
45
+ globalid (>= 0.6.0)
46
+ nokogiri (>= 1.8.5)
47
+ actionview (7.1.3.4)
48
+ activesupport (= 7.1.3.4)
49
+ builder (~> 3.1)
50
+ erubi (~> 1.11)
51
+ rails-dom-testing (~> 2.2)
52
+ rails-html-sanitizer (~> 1.6)
53
+ activejob (7.1.3.4)
54
+ activesupport (= 7.1.3.4)
55
+ globalid (>= 0.3.6)
56
+ activemodel (7.1.3.4)
57
+ activesupport (= 7.1.3.4)
58
+ activerecord (7.1.3.4)
59
+ activemodel (= 7.1.3.4)
60
+ activesupport (= 7.1.3.4)
61
+ timeout (>= 0.4.0)
62
+ activestorage (7.1.3.4)
63
+ actionpack (= 7.1.3.4)
64
+ activejob (= 7.1.3.4)
65
+ activerecord (= 7.1.3.4)
66
+ activesupport (= 7.1.3.4)
67
+ marcel (~> 1.0)
68
+ activesupport (7.1.3.4)
69
+ base64
70
+ bigdecimal
71
+ concurrent-ruby (~> 1.0, >= 1.0.2)
72
+ connection_pool (>= 2.2.5)
73
+ drb
74
+ i18n (>= 1.6, < 2)
75
+ minitest (>= 5.1)
76
+ mutex_m
77
+ tzinfo (~> 2.0)
78
+ addressable (2.8.7)
79
+ public_suffix (>= 2.0.2, < 7.0)
80
+ base64 (0.2.0)
81
+ bigdecimal (3.1.8)
82
+ bindex (0.8.1)
83
+ bootsnap (1.18.3)
84
+ msgpack (~> 1.2)
85
+ builder (3.3.0)
86
+ capybara (3.40.0)
87
+ addressable
88
+ matrix
89
+ mini_mime (>= 0.1.3)
90
+ nokogiri (~> 1.11)
91
+ rack (>= 1.6.0)
92
+ rack-test (>= 0.6.3)
93
+ regexp_parser (>= 1.5, < 3.0)
94
+ xpath (~> 3.2)
95
+ concurrent-ruby (1.3.3)
96
+ connection_pool (2.4.1)
97
+ crass (1.0.6)
98
+ date (3.3.4)
99
+ debug (1.9.2)
100
+ irb (~> 1.10)
101
+ reline (>= 0.3.8)
102
+ drb (2.2.1)
103
+ erubi (1.13.0)
104
+ globalid (1.2.1)
105
+ activesupport (>= 6.1)
106
+ i18n (1.14.5)
107
+ concurrent-ruby (~> 1.0)
108
+ importmap-rails (2.0.1)
109
+ actionpack (>= 6.0.0)
110
+ activesupport (>= 6.0.0)
111
+ railties (>= 6.0.0)
112
+ io-console (0.7.2)
113
+ irb (1.14.0)
114
+ rdoc (>= 4.0.0)
115
+ reline (>= 0.4.2)
116
+ jbuilder (2.12.0)
117
+ actionview (>= 5.0.0)
118
+ activesupport (>= 5.0.0)
119
+ logger (1.6.0)
120
+ loofah (2.22.0)
121
+ crass (~> 1.0.2)
122
+ nokogiri (>= 1.12.0)
123
+ mail (2.8.1)
124
+ mini_mime (>= 0.1.1)
125
+ net-imap
126
+ net-pop
127
+ net-smtp
128
+ marcel (1.0.4)
129
+ matrix (0.4.2)
130
+ mini_mime (1.1.5)
131
+ minitest (5.24.1)
132
+ msgpack (1.7.2)
133
+ mutex_m (0.2.0)
134
+ net-imap (0.4.14)
135
+ date
136
+ net-protocol
137
+ net-pop (0.1.2)
138
+ net-protocol
139
+ net-protocol (0.2.2)
140
+ timeout
141
+ net-smtp (0.5.0)
142
+ net-protocol
143
+ nio4r (2.7.3)
144
+ nokogiri (1.16.6-aarch64-linux)
145
+ racc (~> 1.4)
146
+ nokogiri (1.16.6-arm-linux)
147
+ racc (~> 1.4)
148
+ nokogiri (1.16.6-arm64-darwin)
149
+ racc (~> 1.4)
150
+ nokogiri (1.16.6-x86-linux)
151
+ racc (~> 1.4)
152
+ nokogiri (1.16.6-x86_64-darwin)
153
+ racc (~> 1.4)
154
+ nokogiri (1.16.6-x86_64-linux)
155
+ racc (~> 1.4)
156
+ pg (1.5.6)
157
+ psych (5.1.2)
158
+ stringio
159
+ public_suffix (6.0.1)
160
+ puma (6.4.2)
161
+ nio4r (~> 2.0)
162
+ racc (1.8.0)
163
+ rack (3.1.7)
164
+ rack-session (2.0.0)
165
+ rack (>= 3.0.0)
166
+ rack-test (2.1.0)
167
+ rack (>= 1.3)
168
+ rackup (2.1.0)
169
+ rack (>= 3)
170
+ webrick (~> 1.8)
171
+ rails (7.1.3.4)
172
+ actioncable (= 7.1.3.4)
173
+ actionmailbox (= 7.1.3.4)
174
+ actionmailer (= 7.1.3.4)
175
+ actionpack (= 7.1.3.4)
176
+ actiontext (= 7.1.3.4)
177
+ actionview (= 7.1.3.4)
178
+ activejob (= 7.1.3.4)
179
+ activemodel (= 7.1.3.4)
180
+ activerecord (= 7.1.3.4)
181
+ activestorage (= 7.1.3.4)
182
+ activesupport (= 7.1.3.4)
183
+ bundler (>= 1.15.0)
184
+ railties (= 7.1.3.4)
185
+ rails-dom-testing (2.2.0)
186
+ activesupport (>= 5.0.0)
187
+ minitest
188
+ nokogiri (>= 1.6)
189
+ rails-html-sanitizer (1.6.0)
190
+ loofah (~> 2.21)
191
+ nokogiri (~> 1.14)
192
+ railties (7.1.3.4)
193
+ actionpack (= 7.1.3.4)
194
+ activesupport (= 7.1.3.4)
195
+ irb
196
+ rackup (>= 1.0.0)
197
+ rake (>= 12.2)
198
+ thor (~> 1.0, >= 1.2.2)
199
+ zeitwerk (~> 2.6)
200
+ rake (13.2.1)
201
+ rdoc (6.7.0)
202
+ psych (>= 4.0.0)
203
+ redis (5.2.0)
204
+ redis-client (>= 0.22.0)
205
+ redis-client (0.22.2)
206
+ connection_pool
207
+ regexp_parser (2.9.2)
208
+ reline (0.5.9)
209
+ io-console (~> 0.5)
210
+ rexml (3.3.2)
211
+ strscan
212
+ rubyzip (2.3.2)
213
+ selenium-webdriver (4.23.0)
214
+ base64 (~> 0.2)
215
+ logger (~> 1.4)
216
+ rexml (~> 3.2, >= 3.2.5)
217
+ rubyzip (>= 1.2.2, < 3.0)
218
+ websocket (~> 1.0)
219
+ sprockets (4.2.1)
220
+ concurrent-ruby (~> 1.0)
221
+ rack (>= 2.2.4, < 4)
222
+ sprockets-rails (3.5.1)
223
+ actionpack (>= 6.1)
224
+ activesupport (>= 6.1)
225
+ sprockets (>= 3.0.0)
226
+ stimulus-rails (1.3.3)
227
+ railties (>= 6.0.0)
228
+ stringio (3.1.1)
229
+ strscan (3.1.0)
230
+ tailwindcss-rails (2.6.3)
231
+ railties (>= 7.0.0)
232
+ tailwindcss-rails (2.6.3-aarch64-linux)
233
+ railties (>= 7.0.0)
234
+ tailwindcss-rails (2.6.3-arm-linux)
235
+ railties (>= 7.0.0)
236
+ tailwindcss-rails (2.6.3-arm64-darwin)
237
+ railties (>= 7.0.0)
238
+ tailwindcss-rails (2.6.3-x86_64-darwin)
239
+ railties (>= 7.0.0)
240
+ tailwindcss-rails (2.6.3-x86_64-linux)
241
+ railties (>= 7.0.0)
242
+ thor (1.3.1)
243
+ timeout (0.4.1)
244
+ turbo-rails (2.0.6)
245
+ actionpack (>= 6.0.0)
246
+ activejob (>= 6.0.0)
247
+ railties (>= 6.0.0)
248
+ tzinfo (2.0.6)
249
+ concurrent-ruby (~> 1.0)
250
+ web-console (4.2.1)
251
+ actionview (>= 6.0.0)
252
+ activemodel (>= 6.0.0)
253
+ bindex (>= 0.4.0)
254
+ railties (>= 6.0.0)
255
+ webrick (1.8.1)
256
+ websocket (1.2.11)
257
+ websocket-driver (0.7.6)
258
+ websocket-extensions (>= 0.1.0)
259
+ websocket-extensions (0.1.5)
260
+ xpath (3.2.0)
261
+ nokogiri (~> 1.8)
262
+ zeitwerk (2.6.16)
263
+
264
+PLATFORMS
265
+ aarch64-linux
266
+ arm-linux
267
+ arm64-darwin
268
+ x86-linux
269
+ x86_64-darwin
270
+ x86_64-linux
271
+
272
+DEPENDENCIES
273
+ bootsnap
274
+ capybara
275
+ debug
276
+ importmap-rails
277
+ jbuilder
278
+ pg (~> 1.1)
279
+ puma (>= 5.0)
280
+ rails (~> 7.1.3, >= 7.1.3.4)
281
+ redis (>= 4.0.1)
282
+ selenium-webdriver
283
+ sprockets-rails
284
+ stimulus-rails
285
+ tailwindcss-rails
286
+ turbo-rails
287
+ tzinfo-data
288
+ web-console
289
+
290
+RUBY VERSION
291
+ ruby 3.3.2p78
292
+
293
+BUNDLED WITH
294
+ 2.5.16
backend/app/Procfile.dev
new
+2
@@ -0,0 +1,2 @@
1
+web: bin/rails server
2
+css: bin/rails tailwindcss:watch
backend/app/README.md
new
+24
@@ -0,0 +1,24 @@
1
+# README
2
+
3
+This README would normally document whatever steps are necessary to get the
4
+application up and running.
5
+
6
+Things you may want to cover:
7
+
8
+* Ruby version
9
+
10
+* System dependencies
11
+
12
+* Configuration
13
+
14
+* Database creation
15
+
16
+* Database initialization
17
+
18
+* How to run the test suite
19
+
20
+* Services (job queues, cache servers, search engines, etc.)
21
+
22
+* Deployment instructions
23
+
24
+* ...
backend/app/Rakefile
new
+6
@@ -0,0 +1,6 @@
1
+# Add your own tasks in files placed in lib/tasks ending in .rake,
2
+# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+require_relative "config/application"
5
+
6
+Rails.application.load_tasks
backend/app/app/assets/builds/.keep
backend/app/app/assets/config/manifest.js
new
+5
@@ -0,0 +1,5 @@
1
+//= link_tree ../images
2
+//= link_directory ../stylesheets .css
3
+//= link_tree ../../javascript .js
4
+//= link_tree ../../../vendor/javascript .js
5
+//= link_tree ../builds
backend/app/app/assets/images/.keep
backend/app/app/assets/stylesheets/application.css
new
+15
@@ -0,0 +1,15 @@
1
+/*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
6
+ * vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
backend/app/app/assets/stylesheets/application.tailwind.css
new
+13
@@ -0,0 +1,13 @@
1
+@tailwind base;
2
+@tailwind components;
3
+@tailwind utilities;
4
+
5
+/*
6
+
7
+@layer components {
8
+ .btn-primary {
9
+ @apply py-2 px-4 bg-blue-200;
10
+ }
11
+}
12
+
13
+*/
backend/app/app/channels/application_cable/channel.rb
new
+4
@@ -0,0 +1,4 @@
1
+module ApplicationCable
2
+ class Channel < ActionCable::Channel::Base
3
+ end
4
+end
backend/app/app/channels/application_cable/connection.rb
new
+4
@@ -0,0 +1,4 @@
1
+module ApplicationCable
2
+ class Connection < ActionCable::Connection::Base
3
+ end
4
+end
backend/app/app/controllers/application_controller.rb
new
+2
@@ -0,0 +1,2 @@
1
+class ApplicationController < ActionController::Base
2
+end
backend/app/app/controllers/concerns/.keep
backend/app/app/helpers/application_helper.rb
new
+2
@@ -0,0 +1,2 @@
1
+module ApplicationHelper
2
+end
backend/app/app/javascript/application.js
new
+3
@@ -0,0 +1,3 @@
1
+// Configure your import map in config/importmap.rb. Read more: https://github.com/rails/importmap-rails
2
+import "@hotwired/turbo-rails"
3
+import "controllers"
backend/app/app/javascript/controllers/application.js
new
+9
@@ -0,0 +1,9 @@
1
+import { Application } from "@hotwired/stimulus"
2
+
3
+const application = Application.start()
4
+
5
+// Configure Stimulus development experience
6
+application.debug = false
7
+window.Stimulus = application
8
+
9
+export { application }
backend/app/app/javascript/controllers/hello_controller.js
new
+7
@@ -0,0 +1,7 @@
1
+import { Controller } from "@hotwired/stimulus"
2
+
3
+export default class extends Controller {
4
+ connect() {
5
+ this.element.textContent = "Hello World!"
6
+ }
7
+}
backend/app/app/javascript/controllers/index.js
new
+11
@@ -0,0 +1,11 @@
1
+// Import and register all your controllers from the importmap under controllers/*
2
+
3
+import { application } from "controllers/application"
4
+
5
+// Eager load all controllers defined in the import map under controllers/**/*_controller
6
+import { eagerLoadControllersFrom } from "@hotwired/stimulus-loading"
7
+eagerLoadControllersFrom("controllers", application)
8
+
9
+// Lazy load controllers as they appear in the DOM (remember not to preload controllers in import map!)
10
+// import { lazyLoadControllersFrom } from "@hotwired/stimulus-loading"
11
+// lazyLoadControllersFrom("controllers", application)
backend/app/app/jobs/application_job.rb
new
+7
@@ -0,0 +1,7 @@
1
+class ApplicationJob < ActiveJob::Base
2
+ # Automatically retry jobs that encountered a deadlock
3
+ # retry_on ActiveRecord::Deadlocked
4
+
5
+ # Most jobs are safe to ignore if the underlying records are no longer available
6
+ # discard_on ActiveJob::DeserializationError
7
+end
backend/app/app/mailers/application_mailer.rb
new
+4
@@ -0,0 +1,4 @@
1
+class ApplicationMailer < ActionMailer::Base
2
+ default from: "from@example.com"
3
+ layout "mailer"
4
+end
backend/app/app/models/application_record.rb
new
+3
@@ -0,0 +1,3 @@
1
+class ApplicationRecord < ActiveRecord::Base
2
+ primary_abstract_class
3
+end
backend/app/app/models/concerns/.keep
backend/app/app/views/layouts/application.html.erb
new
+19
@@ -0,0 +1,19 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+ <title>App</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <%= csrf_meta_tags %>
7
+ <%= csp_meta_tag %>
8
+ <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
9
+
10
+ <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
11
+ <%= javascript_importmap_tags %>
12
+ </head>
13
+
14
+ <body>
15
+ <main class="container mx-auto mt-28 px-5 flex">
16
+ <%= yield %>
17
+ </main>
18
+ </body>
19
+</html>
backend/app/app/views/layouts/mailer.html.erb
new
+13
@@ -0,0 +1,13 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
+ <style>
6
+ /* Email styles need to be inline */
7
+ </style>
8
+ </head>
9
+
10
+ <body>
11
+ <%= yield %>
12
+ </body>
13
+</html>
backend/app/app/views/layouts/mailer.text.erb
new
+1
@@ -0,0 +1 @@
1
+<%= yield %>
backend/app/bin/bundle
new
+109
@@ -0,0 +1,109 @@
1
+#!/usr/bin/env ruby
2
+# frozen_string_literal: true
3
+
4
+#
5
+# This file was generated by Bundler.
6
+#
7
+# The application 'bundle' is installed as part of a gem, and
8
+# this file is here to facilitate running it.
9
+#
10
+
11
+require "rubygems"
12
+
13
+m = Module.new do
14
+ module_function
15
+
16
+ def invoked_as_script?
17
+ File.expand_path($0) == File.expand_path(__FILE__)
18
+ end
19
+
20
+ def env_var_version
21
+ ENV["BUNDLER_VERSION"]
22
+ end
23
+
24
+ def cli_arg_version
25
+ return unless invoked_as_script? # don't want to hijack other binstubs
26
+ return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
27
+ bundler_version = nil
28
+ update_index = nil
29
+ ARGV.each_with_index do |a, i|
30
+ if update_index && update_index.succ == i && a.match?(Gem::Version::ANCHORED_VERSION_PATTERN)
31
+ bundler_version = a
32
+ end
33
+ next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
34
+ bundler_version = $1
35
+ update_index = i
36
+ end
37
+ bundler_version
38
+ end
39
+
40
+ def gemfile
41
+ gemfile = ENV["BUNDLE_GEMFILE"]
42
+ return gemfile if gemfile && !gemfile.empty?
43
+
44
+ File.expand_path("../Gemfile", __dir__)
45
+ end
46
+
47
+ def lockfile
48
+ lockfile =
49
+ case File.basename(gemfile)
50
+ when "gems.rb" then gemfile.sub(/\.rb$/, ".locked")
51
+ else "#{gemfile}.lock"
52
+ end
53
+ File.expand_path(lockfile)
54
+ end
55
+
56
+ def lockfile_version
57
+ return unless File.file?(lockfile)
58
+ lockfile_contents = File.read(lockfile)
59
+ return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
60
+ Regexp.last_match(1)
61
+ end
62
+
63
+ def bundler_requirement
64
+ @bundler_requirement ||=
65
+ env_var_version ||
66
+ cli_arg_version ||
67
+ bundler_requirement_for(lockfile_version)
68
+ end
69
+
70
+ def bundler_requirement_for(version)
71
+ return "#{Gem::Requirement.default}.a" unless version
72
+
73
+ bundler_gem_version = Gem::Version.new(version)
74
+
75
+ bundler_gem_version.approximate_recommendation
76
+ end
77
+
78
+ def load_bundler!
79
+ ENV["BUNDLE_GEMFILE"] ||= gemfile
80
+
81
+ activate_bundler
82
+ end
83
+
84
+ def activate_bundler
85
+ gem_error = activation_error_handling do
86
+ gem "bundler", bundler_requirement
87
+ end
88
+ return if gem_error.nil?
89
+ require_error = activation_error_handling do
90
+ require "bundler/version"
91
+ end
92
+ return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
93
+ warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
94
+ exit 42
95
+ end
96
+
97
+ def activation_error_handling
98
+ yield
99
+ nil
100
+ rescue StandardError, LoadError => e
101
+ e
102
+ end
103
+end
104
+
105
+m.load_bundler!
106
+
107
+if m.invoked_as_script?
108
+ load Gem.bin_path("bundler", "bundle")
109
+end
backend/app/bin/dev
new
+16
@@ -0,0 +1,16 @@
1
+#!/usr/bin/env sh
2
+
3
+if ! gem list foreman -i --silent; then
4
+ echo "Installing foreman..."
5
+ gem install foreman
6
+fi
7
+
8
+# Default to port 3000 if not specified
9
+export PORT="${PORT:-3000}"
10
+
11
+# Let the debug gem allow remote connections,
12
+# but avoid loading until `debugger` is called
13
+export RUBY_DEBUG_OPEN="true"
14
+export RUBY_DEBUG_LAZY="true"
15
+
16
+exec foreman start -f Procfile.dev "$@"
backend/app/bin/docker-entrypoint
new
+8
@@ -0,0 +1,8 @@
1
+#!/bin/bash -e
2
+
3
+# If running the rails server then create or migrate existing database
4
+if [ "${1}" == "./bin/rails" ] && [ "${2}" == "server" ]; then
5
+ ./bin/rails db:prepare
6
+fi
7
+
8
+exec "${@}"
backend/app/bin/importmap
new
+4
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env ruby
2
+
3
+require_relative "../config/application"
4
+require "importmap/commands"
backend/app/bin/rails
new
+4
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env ruby
2
+APP_PATH = File.expand_path("../config/application", __dir__)
3
+require_relative "../config/boot"
4
+require "rails/commands"
backend/app/bin/rake
new
+4
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env ruby
2
+require_relative "../config/boot"
3
+require "rake"
4
+Rake.application.run
backend/app/bin/setup
new
+33
@@ -0,0 +1,33 @@
1
+#!/usr/bin/env ruby
2
+require "fileutils"
3
+
4
+# path to your application root.
5
+APP_ROOT = File.expand_path("..", __dir__)
6
+
7
+def system!(*args)
8
+ system(*args, exception: true)
9
+end
10
+
11
+FileUtils.chdir APP_ROOT do
12
+ # This script is a way to set up or update your development environment automatically.
13
+ # This script is idempotent, so that you can run it at any time and get an expectable outcome.
14
+ # Add necessary setup steps to this file.
15
+
16
+ puts "== Installing dependencies =="
17
+ system! "gem install bundler --conservative"
18
+ system("bundle check") || system!("bundle install")
19
+
20
+ # puts "\n== Copying sample files =="
21
+ # unless File.exist?("config/database.yml")
22
+ # FileUtils.cp "config/database.yml.sample", "config/database.yml"
23
+ # end
24
+
25
+ puts "\n== Preparing database =="
26
+ system! "bin/rails db:prepare"
27
+
28
+ puts "\n== Removing old logs and tempfiles =="
29
+ system! "bin/rails log:clear tmp:clear"
30
+
31
+ puts "\n== Restarting application server =="
32
+ system! "bin/rails restart"
33
+end
backend/app/config.ru
new
+6
@@ -0,0 +1,6 @@
1
+# This file is used by Rack-based servers to start the application.
2
+
3
+require_relative "config/environment"
4
+
5
+run Rails.application
6
+Rails.application.load_server
backend/app/config/application.rb
new
+27
@@ -0,0 +1,27 @@
1
+require_relative "boot"
2
+
3
+require "rails/all"
4
+
5
+# Require the gems listed in Gemfile, including any gems
6
+# you've limited to :test, :development, or :production.
7
+Bundler.require(*Rails.groups)
8
+
9
+module App
10
+ class Application < Rails::Application
11
+ # Initialize configuration defaults for originally generated Rails version.
12
+ config.load_defaults 7.1
13
+
14
+ # Please, add to the `ignore` list any other `lib` subdirectories that do
15
+ # not contain `.rb` files, or that should not be reloaded or eager loaded.
16
+ # Common ones are `templates`, `generators`, or `middleware`, for example.
17
+ config.autoload_lib(ignore: %w(assets tasks))
18
+
19
+ # Configuration for the application, engines, and railties goes here.
20
+ #
21
+ # These settings can be overridden in specific environments using the files
22
+ # in config/environments, which are processed later.
23
+ #
24
+ # config.time_zone = "Central Time (US & Canada)"
25
+ # config.eager_load_paths << Rails.root.join("extras")
26
+ end
27
+end
backend/app/config/boot.rb
new
+4
@@ -0,0 +1,4 @@
1
+ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
2
+
3
+require "bundler/setup" # Set up gems listed in the Gemfile.
4
+require "bootsnap/setup" # Speed up boot time by caching expensive operations.
backend/app/config/cable.yml
new
+11
@@ -0,0 +1,11 @@
1
+development:
2
+ adapter: redis
3
+ url: redis://localhost:6379/1
4
+
5
+test:
6
+ adapter: test
7
+
8
+production:
9
+ adapter: redis
10
+ url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
11
+ channel_prefix: app_production
backend/app/config/credentials.yml.enc
new
+1
@@ -0,0 +1 @@
1
+brHk1caPrAeLh0lK3edeD1nSb4+sD8AQYON6gPiWqAyc6vsPSqmP5IfJxsNP/BYCpazP2p1BME5w0WM1Ajz0+aEfXgSSDDDQSpbKOvQewRbh7dbFg6hx6RrK3kW0iyc7kjxKjyfZrrBuyrYWxSAX6f6OvchNQFCHJNqIzGq93FIh1IHLSzElnnzsML6gXgrxyLeaO4mawgjQmi3rnu+yxjQUQTm3Tt/1jH8pES3+SBFHLfooBH3Gz/KgIFbCzVNtopzNx0WNjc2jlrIhFXFz9UYyUZ8eSmpASkxG+QCIU3WXz2kT77YaU6i2XK31mJHJDCM+e4PiKs5V/KUsixmq0CgD726j8YDWG5qXu7hVsY9kCs+KP41I+jw96lMnELOAX9B2XbCzkxi8rX27pQx048SmxmYM--CGTyt5gCq+BS1shj--70OzsjNJbu57vQtqUGeR4w==
\ No newline at end of file
backend/app/config/database.yml
new
+84
@@ -0,0 +1,84 @@
1
+# PostgreSQL. Versions 9.3 and up are supported.
2
+#
3
+# Install the pg driver:
4
+# gem install pg
5
+# On macOS with Homebrew:
6
+# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
7
+# On Windows:
8
+# gem install pg
9
+# Choose the win32 build.
10
+# Install PostgreSQL and put its /bin directory on your path.
11
+#
12
+# Configure Using Gemfile
13
+# gem "pg"
14
+#
15
+default: &default
16
+ adapter: postgresql
17
+ encoding: unicode
18
+ # For details on connection pooling, see Rails configuration guide
19
+ # https://guides.rubyonrails.org/configuring.html#database-pooling
20
+ pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
21
+
22
+development:
23
+ <<: *default
24
+ database: app_development
25
+
26
+ # The specified database role being used to connect to PostgreSQL.
27
+ # To create additional roles in PostgreSQL see `$ createuser --help`.
28
+ # When left blank, PostgreSQL will use the default role. This is
29
+ # the same name as the operating system user running Rails.
30
+ #username: app
31
+
32
+ # The password associated with the PostgreSQL role (username).
33
+ #password:
34
+
35
+ # Connect on a TCP socket. Omitted by default since the client uses a
36
+ # domain socket that doesn't need configuration. Windows does not have
37
+ # domain sockets, so uncomment these lines.
38
+ #host: localhost
39
+
40
+ # The TCP port the server listens on. Defaults to 5432.
41
+ # If your server runs on a different port number, change accordingly.
42
+ #port: 5432
43
+
44
+ # Schema search path. The server defaults to $user,public
45
+ #schema_search_path: myapp,sharedapp,public
46
+
47
+ # Minimum log levels, in increasing order:
48
+ # debug5, debug4, debug3, debug2, debug1,
49
+ # log, notice, warning, error, fatal, and panic
50
+ # Defaults to warning.
51
+ #min_messages: notice
52
+
53
+# Warning: The database defined as "test" will be erased and
54
+# re-generated from your development database when you run "rake".
55
+# Do not set this db to the same as development or production.
56
+test:
57
+ <<: *default
58
+ database: app_test
59
+
60
+# As with config/credentials.yml, you never want to store sensitive information,
61
+# like your database password, in your source code. If your source code is
62
+# ever seen by anyone, they now have access to your database.
63
+#
64
+# Instead, provide the password or a full connection URL as an environment
65
+# variable when you boot the app. For example:
66
+#
67
+# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase"
68
+#
69
+# If the connection URL is provided in the special DATABASE_URL environment
70
+# variable, Rails will automatically merge its configuration values on top of
71
+# the values provided in this file. Alternatively, you can specify a connection
72
+# URL environment variable explicitly:
73
+#
74
+# production:
75
+# url: <%= ENV["MY_APP_DATABASE_URL"] %>
76
+#
77
+# Read https://guides.rubyonrails.org/configuring.html#configuring-a-database
78
+# for a full overview on how database connection configuration can be specified.
79
+#
80
+production:
81
+ <<: *default
82
+ database: app_production
83
+ username: app
84
+ password: <%= ENV["APP_DATABASE_PASSWORD"] %>
backend/app/config/environment.rb
new
+5
@@ -0,0 +1,5 @@
1
+# Load the Rails application.
2
+require_relative "application"
3
+
4
+# Initialize the Rails application.
5
+Rails.application.initialize!
backend/app/config/environments/development.rb
new
+76
@@ -0,0 +1,76 @@
1
+require "active_support/core_ext/integer/time"
2
+
3
+Rails.application.configure do
4
+ # Settings specified here will take precedence over those in config/application.rb.
5
+
6
+ # In the development environment your application's code is reloaded any time
7
+ # it changes. This slows down response time but is perfect for development
8
+ # since you don't have to restart the web server when you make code changes.
9
+ config.enable_reloading = true
10
+
11
+ # Do not eager load code on boot.
12
+ config.eager_load = false
13
+
14
+ # Show full error reports.
15
+ config.consider_all_requests_local = true
16
+
17
+ # Enable server timing
18
+ config.server_timing = true
19
+
20
+ # Enable/disable caching. By default caching is disabled.
21
+ # Run rails dev:cache to toggle caching.
22
+ if Rails.root.join("tmp/caching-dev.txt").exist?
23
+ config.action_controller.perform_caching = true
24
+ config.action_controller.enable_fragment_cache_logging = true
25
+
26
+ config.cache_store = :memory_store
27
+ config.public_file_server.headers = {
28
+ "Cache-Control" => "public, max-age=#{2.days.to_i}"
29
+ }
30
+ else
31
+ config.action_controller.perform_caching = false
32
+
33
+ config.cache_store = :null_store
34
+ end
35
+
36
+ # Store uploaded files on the local file system (see config/storage.yml for options).
37
+ config.active_storage.service = :local
38
+
39
+ # Don't care if the mailer can't send.
40
+ config.action_mailer.raise_delivery_errors = false
41
+
42
+ config.action_mailer.perform_caching = false
43
+
44
+ # Print deprecation notices to the Rails logger.
45
+ config.active_support.deprecation = :log
46
+
47
+ # Raise exceptions for disallowed deprecations.
48
+ config.active_support.disallowed_deprecation = :raise
49
+
50
+ # Tell Active Support which deprecation messages to disallow.
51
+ config.active_support.disallowed_deprecation_warnings = []
52
+
53
+ # Raise an error on page load if there are pending migrations.
54
+ config.active_record.migration_error = :page_load
55
+
56
+ # Highlight code that triggered database queries in logs.
57
+ config.active_record.verbose_query_logs = true
58
+
59
+ # Highlight code that enqueued background job in logs.
60
+ config.active_job.verbose_enqueue_logs = true
61
+
62
+ # Suppress logger output for asset requests.
63
+ config.assets.quiet = true
64
+
65
+ # Raises error for missing translations.
66
+ # config.i18n.raise_on_missing_translations = true
67
+
68
+ # Annotate rendered view with file names.
69
+ # config.action_view.annotate_rendered_view_with_filenames = true
70
+
71
+ # Uncomment if you wish to allow Action Cable access from any origin.
72
+ # config.action_cable.disable_request_forgery_protection = true
73
+
74
+ # Raise error when a before_action's only/except options reference missing actions
75
+ config.action_controller.raise_on_missing_callback_actions = true
76
+end
backend/app/config/environments/production.rb
new
+97
@@ -0,0 +1,97 @@
1
+require "active_support/core_ext/integer/time"
2
+
3
+Rails.application.configure do
4
+ # Settings specified here will take precedence over those in config/application.rb.
5
+
6
+ # Code is not reloaded between requests.
7
+ config.enable_reloading = false
8
+
9
+ # Eager load code on boot. This eager loads most of Rails and
10
+ # your application in memory, allowing both threaded web servers
11
+ # and those relying on copy on write to perform better.
12
+ # Rake tasks automatically ignore this option for performance.
13
+ config.eager_load = true
14
+
15
+ # Full error reports are disabled and caching is turned on.
16
+ config.consider_all_requests_local = false
17
+ config.action_controller.perform_caching = true
18
+
19
+ # Ensures that a master key has been made available in ENV["RAILS_MASTER_KEY"], config/master.key, or an environment
20
+ # key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
21
+ # config.require_master_key = true
22
+
23
+ # Disable serving static files from `public/`, relying on NGINX/Apache to do so instead.
24
+ # config.public_file_server.enabled = false
25
+
26
+ # Compress CSS using a preprocessor.
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fall back to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
33
+ # config.asset_host = "http://assets.example.com"
34
+
35
+ # Specifies the header that your server uses for sending files.
36
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache
37
+ # config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX
38
+
39
+ # Store uploaded files on the local file system (see config/storage.yml for options).
40
+ config.active_storage.service = :local
41
+
42
+ # Mount Action Cable outside main process or domain.
43
+ # config.action_cable.mount_path = nil
44
+ # config.action_cable.url = "wss://example.com/cable"
45
+ # config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ]
46
+
47
+ # Assume all access to the app is happening through a SSL-terminating reverse proxy.
48
+ # Can be used together with config.force_ssl for Strict-Transport-Security and secure cookies.
49
+ # config.assume_ssl = true
50
+
51
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
52
+ config.force_ssl = true
53
+
54
+ # Log to STDOUT by default
55
+ config.logger = ActiveSupport::Logger.new(STDOUT)
56
+ .tap { |logger| logger.formatter = ::Logger::Formatter.new }
57
+ .then { |logger| ActiveSupport::TaggedLogging.new(logger) }
58
+
59
+ # Prepend all log lines with the following tags.
60
+ config.log_tags = [ :request_id ]
61
+
62
+ # "info" includes generic and useful information about system operation, but avoids logging too much
63
+ # information to avoid inadvertent exposure of personally identifiable information (PII). If you
64
+ # want to log everything, set the level to "debug".
65
+ config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
66
+
67
+ # Use a different cache store in production.
68
+ # config.cache_store = :mem_cache_store
69
+
70
+ # Use a real queuing backend for Active Job (and separate queues per environment).
71
+ # config.active_job.queue_adapter = :resque
72
+ # config.active_job.queue_name_prefix = "app_production"
73
+
74
+ config.action_mailer.perform_caching = false
75
+
76
+ # Ignore bad email addresses and do not raise email delivery errors.
77
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
78
+ # config.action_mailer.raise_delivery_errors = false
79
+
80
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
81
+ # the I18n.default_locale when a translation cannot be found).
82
+ config.i18n.fallbacks = true
83
+
84
+ # Don't log any deprecations.
85
+ config.active_support.report_deprecations = false
86
+
87
+ # Do not dump schema after migrations.
88
+ config.active_record.dump_schema_after_migration = false
89
+
90
+ # Enable DNS rebinding protection and other `Host` header attacks.
91
+ # config.hosts = [
92
+ # "example.com", # Allow requests from example.com
93
+ # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
94
+ # ]
95
+ # Skip DNS rebinding protection for the default health check endpoint.
96
+ # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
97
+end
backend/app/config/environments/test.rb
new
+64
@@ -0,0 +1,64 @@
1
+require "active_support/core_ext/integer/time"
2
+
3
+# The test environment is used exclusively to run your application's
4
+# test suite. You never need to work with it otherwise. Remember that
5
+# your test database is "scratch space" for the test suite and is wiped
6
+# and recreated between test runs. Don't rely on the data there!
7
+
8
+Rails.application.configure do
9
+ # Settings specified here will take precedence over those in config/application.rb.
10
+
11
+ # While tests run files are not watched, reloading is not necessary.
12
+ config.enable_reloading = false
13
+
14
+ # Eager loading loads your entire application. When running a single test locally,
15
+ # this is usually not necessary, and can slow down your test suite. However, it's
16
+ # recommended that you enable it in continuous integration systems to ensure eager
17
+ # loading is working properly before deploying your code.
18
+ config.eager_load = ENV["CI"].present?
19
+
20
+ # Configure public file server for tests with Cache-Control for performance.
21
+ config.public_file_server.enabled = true
22
+ config.public_file_server.headers = {
23
+ "Cache-Control" => "public, max-age=#{1.hour.to_i}"
24
+ }
25
+
26
+ # Show full error reports and disable caching.
27
+ config.consider_all_requests_local = true
28
+ config.action_controller.perform_caching = false
29
+ config.cache_store = :null_store
30
+
31
+ # Render exception templates for rescuable exceptions and raise for other exceptions.
32
+ config.action_dispatch.show_exceptions = :rescuable
33
+
34
+ # Disable request forgery protection in test environment.
35
+ config.action_controller.allow_forgery_protection = false
36
+
37
+ # Store uploaded files on the local file system in a temporary directory.
38
+ config.active_storage.service = :test
39
+
40
+ config.action_mailer.perform_caching = false
41
+
42
+ # Tell Action Mailer not to deliver emails to the real world.
43
+ # The :test delivery method accumulates sent emails in the
44
+ # ActionMailer::Base.deliveries array.
45
+ config.action_mailer.delivery_method = :test
46
+
47
+ # Print deprecation notices to the stderr.
48
+ config.active_support.deprecation = :stderr
49
+
50
+ # Raise exceptions for disallowed deprecations.
51
+ config.active_support.disallowed_deprecation = :raise
52
+
53
+ # Tell Active Support which deprecation messages to disallow.
54
+ config.active_support.disallowed_deprecation_warnings = []
55
+
56
+ # Raises error for missing translations.
57
+ # config.i18n.raise_on_missing_translations = true
58
+
59
+ # Annotate rendered view with file names.
60
+ # config.action_view.annotate_rendered_view_with_filenames = true
61
+
62
+ # Raise error when a before_action's only/except options reference missing actions
63
+ config.action_controller.raise_on_missing_callback_actions = true
64
+end
backend/app/config/importmap.rb
new
+7
@@ -0,0 +1,7 @@
1
+# Pin npm packages by running ./bin/importmap
2
+
3
+pin "application"
4
+pin "@hotwired/turbo-rails", to: "turbo.min.js"
5
+pin "@hotwired/stimulus", to: "stimulus.min.js"
6
+pin "@hotwired/stimulus-loading", to: "stimulus-loading.js"
7
+pin_all_from "app/javascript/controllers", under: "controllers"
backend/app/config/initializers/assets.rb
new
+12
@@ -0,0 +1,12 @@
1
+# Be sure to restart your server when you modify this file.
2
+
3
+# Version of your assets, change this if you want to expire all your assets.
4
+Rails.application.config.assets.version = "1.0"
5
+
6
+# Add additional assets to the asset load path.
7
+# Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+# Precompile additional assets.
10
+# application.js, application.css, and all non-JS/CSS in the app/assets
11
+# folder are already added.
12
+# Rails.application.config.assets.precompile += %w( admin.js admin.css )
backend/app/config/initializers/content_security_policy.rb
new
+25
@@ -0,0 +1,25 @@
1
+# Be sure to restart your server when you modify this file.
2
+
3
+# Define an application-wide content security policy.
4
+# See the Securing Rails Applications Guide for more information:
5
+# https://guides.rubyonrails.org/security.html#content-security-policy-header
6
+
7
+# Rails.application.configure do
8
+# config.content_security_policy do |policy|
9
+# policy.default_src :self, :https
10
+# policy.font_src :self, :https, :data
11
+# policy.img_src :self, :https, :data
12
+# policy.object_src :none
13
+# policy.script_src :self, :https
14
+# policy.style_src :self, :https
15
+# # Specify URI for violation reports
16
+# # policy.report_uri "/csp-violation-report-endpoint"
17
+# end
18
+#
19
+# # Generate session nonces for permitted importmap, inline scripts, and inline styles.
20
+# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s }
21
+# config.content_security_policy_nonce_directives = %w(script-src style-src)
22
+#
23
+# # Report violations without enforcing the policy.
24
+# # config.content_security_policy_report_only = true
25
+# end
backend/app/config/initializers/filter_parameter_logging.rb
new
+8
@@ -0,0 +1,8 @@
1
+# Be sure to restart your server when you modify this file.
2
+
3
+# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
4
+# Use this to limit dissemination of sensitive information.
5
+# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
6
+Rails.application.config.filter_parameters += [
7
+ :passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
8
+]
backend/app/config/initializers/inflections.rb
new
+16
@@ -0,0 +1,16 @@
1
+# Be sure to restart your server when you modify this file.
2
+
3
+# Add new inflection rules using the following format. Inflections
4
+# are locale specific, and you may define rules for as many different
5
+# locales as you wish. All of these examples are active by default:
6
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+# inflect.plural /^(ox)$/i, "\\1en"
8
+# inflect.singular /^(ox)en/i, "\\1"
9
+# inflect.irregular "person", "people"
10
+# inflect.uncountable %w( fish sheep )
11
+# end
12
+
13
+# These inflection rules are supported but not enabled by default:
14
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+# inflect.acronym "RESTful"
16
+# end
backend/app/config/initializers/permissions_policy.rb
new
+13
@@ -0,0 +1,13 @@
1
+# Be sure to restart your server when you modify this file.
2
+
3
+# Define an application-wide HTTP permissions policy. For further
4
+# information see: https://developers.google.com/web/updates/2018/06/feature-policy
5
+
6
+# Rails.application.config.permissions_policy do |policy|
7
+# policy.camera :none
8
+# policy.gyroscope :none
9
+# policy.microphone :none
10
+# policy.usb :none
11
+# policy.fullscreen :self
12
+# policy.payment :self, "https://secure.example.com"
13
+# end
backend/app/config/locales/en.yml
new
+31
@@ -0,0 +1,31 @@
1
+# Files in the config/locales directory are used for internationalization and
2
+# are automatically loaded by Rails. If you want to use locales other than
3
+# English, add the necessary files in this directory.
4
+#
5
+# To use the locales, use `I18n.t`:
6
+#
7
+# I18n.t "hello"
8
+#
9
+# In views, this is aliased to just `t`:
10
+#
11
+# <%= t("hello") %>
12
+#
13
+# To use a different locale, set it with `I18n.locale`:
14
+#
15
+# I18n.locale = :es
16
+#
17
+# This would use the information in config/locales/es.yml.
18
+#
19
+# To learn more about the API, please read the Rails Internationalization guide
20
+# at https://guides.rubyonrails.org/i18n.html.
21
+#
22
+# Be aware that YAML interprets the following case-insensitive strings as
23
+# booleans: `true`, `false`, `on`, `off`, `yes`, `no`. Therefore, these strings
24
+# must be quoted to be interpreted as strings. For example:
25
+#
26
+# en:
27
+# "yes": yup
28
+# enabled: "ON"
29
+
30
+en:
31
+ hello: "Hello world"
backend/app/config/puma.rb
new
+35
@@ -0,0 +1,35 @@
1
+# This configuration file will be evaluated by Puma. The top-level methods that
2
+# are invoked here are part of Puma's configuration DSL. For more information
3
+# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
4
+
5
+# Puma can serve each request in a thread from an internal thread pool.
6
+# The `threads` method setting takes two numbers: a minimum and maximum.
7
+# Any libraries that use thread pools should be configured to match
8
+# the maximum value specified for Puma. Default is set to 5 threads for minimum
9
+# and maximum; this matches the default thread size of Active Record.
10
+max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
11
+min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
12
+threads min_threads_count, max_threads_count
13
+
14
+# Specifies that the worker count should equal the number of processors in production.
15
+if ENV["RAILS_ENV"] == "production"
16
+ require "concurrent-ruby"
17
+ worker_count = Integer(ENV.fetch("WEB_CONCURRENCY") { Concurrent.physical_processor_count })
18
+ workers worker_count if worker_count > 1
19
+end
20
+
21
+# Specifies the `worker_timeout` threshold that Puma will use to wait before
22
+# terminating a worker in development environments.
23
+worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
24
+
25
+# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
26
+port ENV.fetch("PORT") { 3000 }
27
+
28
+# Specifies the `environment` that Puma will run in.
29
+environment ENV.fetch("RAILS_ENV") { "development" }
30
+
31
+# Specifies the `pidfile` that Puma will use.
32
+pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
33
+
34
+# Allow puma to be restarted by `bin/rails restart` command.
35
+plugin :tmp_restart
backend/app/config/routes.rb
new
+10
@@ -0,0 +1,10 @@
1
+Rails.application.routes.draw do
2
+ # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
3
+
4
+ # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
5
+ # Can be used by load balancers and uptime monitors to verify that the app is live.
6
+ get "up" => "rails/health#show", as: :rails_health_check
7
+
8
+ # Defines the root path route ("/")
9
+ # root "posts#index"
10
+end
backend/app/config/storage.yml
new
+34
@@ -0,0 +1,34 @@
1
+test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+# amazon:
11
+# service: S3
12
+# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+# region: us-east-1
15
+# bucket: your_own_bucket-<%= Rails.env %>
16
+
17
+# Remember not to checkin your GCS keyfile to a repository
18
+# google:
19
+# service: GCS
20
+# project: your_project
21
+# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+# bucket: your_own_bucket-<%= Rails.env %>
23
+
24
+# Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+# microsoft:
26
+# service: AzureStorage
27
+# storage_account_name: your_account_name
28
+# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+# container: your_container_name-<%= Rails.env %>
30
+
31
+# mirror:
32
+# service: Mirror
33
+# primary: local
34
+# mirrors: [ amazon, google, microsoft ]
backend/app/config/tailwind.config.js
new
+22
@@ -0,0 +1,22 @@
1
+const defaultTheme = require('tailwindcss/defaultTheme')
2
+
3
+module.exports = {
4
+ content: [
5
+ './public/*.html',
6
+ './app/helpers/**/*.rb',
7
+ './app/javascript/**/*.js',
8
+ './app/views/**/*.{erb,haml,html,slim}'
9
+ ],
10
+ theme: {
11
+ extend: {
12
+ fontFamily: {
13
+ sans: ['Inter var', ...defaultTheme.fontFamily.sans],
14
+ },
15
+ },
16
+ },
17
+ plugins: [
18
+ require('@tailwindcss/forms'),
19
+ require('@tailwindcss/typography'),
20
+ require('@tailwindcss/container-queries'),
21
+ ]
22
+}
backend/app/db/seeds.rb
new
+9
@@ -0,0 +1,9 @@
1
+# This file should ensure the existence of records required to run the application in every environment (production,
2
+# development, test). The code here should be idempotent so that it can be executed at any point in every environment.
3
+# The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup).
4
+#
5
+# Example:
6
+#
7
+# ["Action", "Comedy", "Drama", "Horror"].each do |genre_name|
8
+# MovieGenre.find_or_create_by!(name: genre_name)
9
+# end
backend/app/lib/assets/.keep
backend/app/lib/tasks/.keep
backend/app/log/.keep
backend/app/public/404.html
new
+67
@@ -0,0 +1,67 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+</head>
56
+
57
+<body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+</body>
67
+</html>
backend/app/public/422.html
new
+67
@@ -0,0 +1,67 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+</head>
56
+
57
+<body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+</body>
67
+</html>
backend/app/public/500.html
new
+66
@@ -0,0 +1,66 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+</head>
56
+
57
+<body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+</body>
66
+</html>
backend/app/public/apple-touch-icon-precomposed.png
backend/app/public/apple-touch-icon.png
backend/app/public/favicon.ico
backend/app/public/robots.txt
new
+1
@@ -0,0 +1 @@
1
+# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
backend/app/storage/.keep
backend/app/test/application_system_test_case.rb
new
+5
@@ -0,0 +1,5 @@
1
+require "test_helper"
2
+
3
+class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
4
+ driven_by :selenium, using: :chrome, screen_size: [1400, 1400]
5
+end
backend/app/test/channels/application_cable/connection_test.rb
new
+13
@@ -0,0 +1,13 @@
1
+require "test_helper"
2
+
3
+module ApplicationCable
4
+ class ConnectionTest < ActionCable::Connection::TestCase
5
+ # test "connects with cookies" do
6
+ # cookies.signed[:user_id] = 42
7
+ #
8
+ # connect
9
+ #
10
+ # assert_equal connection.user_id, "42"
11
+ # end
12
+ end
13
+end
backend/app/test/controllers/.keep
backend/app/test/fixtures/files/.keep
backend/app/test/helpers/.keep
backend/app/test/integration/.keep
backend/app/test/mailers/.keep
backend/app/test/models/.keep
backend/app/test/system/.keep
backend/app/test/test_helper.rb
new
+15
@@ -0,0 +1,15 @@
1
+ENV["RAILS_ENV"] ||= "test"
2
+require_relative "../config/environment"
3
+require "rails/test_help"
4
+
5
+module ActiveSupport
6
+ class TestCase
7
+ # Run tests in parallel with specified workers
8
+ parallelize(workers: :number_of_processors)
9
+
10
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
11
+ fixtures :all
12
+
13
+ # Add more helper methods to be used by all tests here...
14
+ end
15
+end
backend/app/tmp/.keep
backend/app/tmp/pids/.keep
backend/app/tmp/storage/.keep
backend/app/vendor/.keep
backend/app/vendor/javascript/.keep
frontend/.keep
frontend/apple/BUILD.bazel
new
+44
@@ -0,0 +1,44 @@
1
+load(
2
+ "@rules_xcodeproj//xcodeproj:defs.bzl",
3
+ "top_level_target",
4
+ "xcodeproj",
5
+)
6
+
7
+# Xcode
8
+
9
+xcodeproj(
10
+ name = "xcodeproj",
11
+ project_name = "App",
12
+ top_level_targets = [
13
+ top_level_target(
14
+ "//frontend/apple/app:app",
15
+ target_environments = ["simulator"],
16
+ ),
17
+ top_level_target(
18
+ "//frontend/apple/modules/API:APITests",
19
+ target_environments = ["simulator"],
20
+ ),
21
+ top_level_target(
22
+ "//frontend/apple/modules/Models:ModelsTests",
23
+ target_environments = ["simulator"],
24
+ ),
25
+ ],
26
+)
27
+
28
+# tools
29
+
30
+genrule(
31
+ name = "lint",
32
+ srcs = [],
33
+ outs = ["lint.sh"],
34
+ cmd = """
35
+echo "set -e" > "$@"
36
+echo "./$(location @buildifier_prebuilt//:buildifier) -lint fix -mode fix -r \\$$BUILD_WORKSPACE_DIRECTORY" >> "$@"
37
+echo "./$(location @SwiftLint//:swiftlint) --fix \\$$BUILD_WORKSPACE_DIRECTORY" >> "$@"
38
+""",
39
+ executable = True,
40
+ tools = [
41
+ "@SwiftLint//:swiftlint",
42
+ "@buildifier_prebuilt//:buildifier",
43
+ ],
44
+)
frontend/apple/app/Assets/Assets.xcassets/AccentColor.colorset/Contents.json
new
+11
@@ -0,0 +1,11 @@
1
+{
2
+ "colors" : [
3
+ {
4
+ "idiom" : "universal"
5
+ }
6
+ ],
7
+ "info" : {
8
+ "author" : "xcode",
9
+ "version" : 1
10
+ }
11
+}
frontend/apple/app/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json
new
+13
@@ -0,0 +1,13 @@
1
+{
2
+ "images" : [
3
+ {
4
+ "idiom" : "universal",
5
+ "platform" : "ios",
6
+ "size" : "1024x1024"
7
+ }
8
+ ],
9
+ "info" : {
10
+ "author" : "xcode",
11
+ "version" : 1
12
+ }
13
+}
frontend/apple/app/Assets/Assets.xcassets/Contents.json
new
+6
@@ -0,0 +1,6 @@
1
+{
2
+ "info" : {
3
+ "author" : "xcode",
4
+ "version" : 1
5
+ }
6
+}
frontend/apple/app/BUILD.bazel
new
+63
@@ -0,0 +1,63 @@
1
+load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application")
2
+load("@build_bazel_rules_apple//apple:versioning.bzl", "apple_bundle_version")
3
+load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
4
+load("//frontend/apple/tools:shared.bzl", "app_info", "versions")
5
+
6
+# Version
7
+
8
+apple_bundle_version(
9
+ name = "Version",
10
+ build_version = "0.0.1",
11
+ short_version_string = "1.0",
12
+)
13
+
14
+# Code
15
+
16
+swift_library(
17
+ name = "app.library",
18
+ srcs = glob(["source/**/*.swift"]),
19
+ data = [":PreviewContent"],
20
+ module_name = "app",
21
+ deps = [
22
+ "//frontend/apple/modules/API:APILib",
23
+ ],
24
+)
25
+
26
+# Packaging
27
+
28
+filegroup(
29
+ name = "PreviewContent",
30
+ srcs = glob(["PreviewContent/**"]),
31
+)
32
+
33
+ios_application(
34
+ name = "app",
35
+ app_icons = glob(["Assets/Assets.xcassets/AppIcon.appiconset/**"]),
36
+ bundle_id = app_info.bundle_id,
37
+ bundle_name = app_info.bundle_name,
38
+ entitlements = "ios app.entitlements",
39
+ executable_name = app_info.executable_name,
40
+ families = [
41
+ "iphone",
42
+ "ipad",
43
+ ],
44
+ infoplists = [":Info.plist"],
45
+ minimum_os_version = versions.minimum_ios_version,
46
+ resources = glob(
47
+ [
48
+ "Assets/Assets.xcassets/**",
49
+ ],
50
+ exclude = ["Assets/Assets.xcassets/AppIcon.appiconset/**"],
51
+ ),
52
+ # Add localizable assets here.
53
+ # strings = glob(["*.lproj/Localizable.strings"]),
54
+ version = ":Version",
55
+ visibility = [
56
+ "//frontend/apple/app:__subpackages__",
57
+ "//frontend/apple/modules:__subpackages__",
58
+ "@rules_xcodeproj//xcodeproj:generated",
59
+ ],
60
+ deps = [
61
+ ":app.library",
62
+ ],
63
+)
frontend/apple/app/Info.plist
new
+18
@@ -0,0 +1,18 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+ <key>UILaunchScreen</key>
6
+ <dict/>
7
+ <key>CFBundleName</key>
8
+ <string>$(PRODUCT_NAME)</string>
9
+ <key>CFBundleVersion</key>
10
+ <string>1.0</string>
11
+ <key>CFBundleShortVersionString</key>
12
+ <string>1.0</string>
13
+ <key>CFBundleIdentifier</key>
14
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
17
+</dict>
18
+</plist>
frontend/apple/app/PreviewContent/PreviewAssets.xcassets/Contents.json
new
+6
@@ -0,0 +1,6 @@
1
+{
2
+ "info" : {
3
+ "author" : "xcode",
4
+ "version" : 1
5
+ }
6
+}
frontend/apple/app/ios app.entitlements
new
+8
@@ -0,0 +1,8 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+ <key>aps-environment</key>
6
+ <string>development</string>
7
+</dict>
8
+</plist>
frontend/apple/app/source/ContentView.swift
new
+19
@@ -0,0 +1,19 @@
1
+import SwiftUI
2
+
3
+struct ContentView: View {
4
+ var body: some View {
5
+ VStack {
6
+ Image(systemName: "globe")
7
+ .imageScale(.large)
8
+ .foregroundColor(.accentColor)
9
+ Text("iOS application in SwiftUI!")
10
+ }
11
+ .padding()
12
+ }
13
+}
14
+
15
+struct ContentView_Previews: PreviewProvider {
16
+ static var previews: some View {
17
+ ContentView()
18
+ }
19
+}
frontend/apple/app/source/MainApp.swift
new
+10
@@ -0,0 +1,10 @@
1
+import SwiftUI
2
+
3
+@main
4
+struct MainApp: App {
5
+ var body: some Scene {
6
+ WindowGroup {
7
+ ContentView()
8
+ }
9
+ }
10
+}
frontend/apple/modules/API/API/API.swift
new
+10
@@ -0,0 +1,10 @@
1
+import Foundation
2
+import Models
3
+
4
+public struct API {
5
+ public static func returnTrue() -> Bool {
6
+ _ = ModelA()
7
+ _ = ModelB()
8
+ return true
9
+ }
10
+}
frontend/apple/modules/API/BUILD.bazel
new
+38
@@ -0,0 +1,38 @@
1
+load("@build_bazel_rules_apple//apple:ios.bzl", "ios_unit_test")
2
+load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
3
+load("//frontend/apple/tools:shared.bzl", "versions")
4
+
5
+# Code
6
+
7
+swift_library(
8
+ name = "APILib",
9
+ srcs = [
10
+ "API/API.swift",
11
+ ],
12
+ module_name = "API",
13
+ visibility = ["//frontend/apple/modules:default_library_visibility"],
14
+ deps = [
15
+ "//frontend/apple/modules/Models:ModelsLib",
16
+ ],
17
+)
18
+
19
+# Tests
20
+
21
+swift_library(
22
+ name = "APITestsLib",
23
+ testonly = True,
24
+ srcs = [
25
+ "Tests/APITests.swift",
26
+ ],
27
+ module_name = "APITests",
28
+ deps = [
29
+ ":APILib",
30
+ ],
31
+)
32
+
33
+ios_unit_test(
34
+ name = "APITests",
35
+ minimum_os_version = versions.minimum_ios_version,
36
+ visibility = ["//frontend/apple/modules:default_test_visibility"],
37
+ deps = [":APITestsLib"],
38
+)
frontend/apple/modules/API/Tests/APITests.swift
new
+8
@@ -0,0 +1,8 @@
1
+import API
2
+import XCTest
3
+
4
+final class APITests: XCTestCase {
5
+ func test_success() {
6
+ XCTAssertTrue(API.returnTrue())
7
+ }
8
+}
frontend/apple/modules/BUILD.bazel
new
+21
@@ -0,0 +1,21 @@
1
+package_group(
2
+ name = "default_library_visibility",
3
+ includes = [
4
+ # Project generation.
5
+ "@rules_xcodeproj//xcodeproj:generated",
6
+ ],
7
+ packages = [
8
+ # The application package.
9
+ "//frontend/apple/app",
10
+ # All other modules.
11
+ "//frontend/apple/modules/...",
12
+ ],
13
+)
14
+
15
+package_group(
16
+ name = "default_test_visibility",
17
+ includes = [
18
+ # Project generation.
19
+ "@rules_xcodeproj//xcodeproj:generated",
20
+ ],
21
+)
frontend/apple/modules/Models/BUILD.bazel
new
+35
@@ -0,0 +1,35 @@
1
+load("@build_bazel_rules_apple//apple:ios.bzl", "ios_unit_test")
2
+load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
3
+load("//frontend/apple/tools:shared.bzl", "versions")
4
+
5
+# Code
6
+
7
+swift_library(
8
+ name = "ModelsLib",
9
+ srcs = [
10
+ "Models/Models.swift",
11
+ ],
12
+ module_name = "Models",
13
+ visibility = ["//frontend/apple/modules:default_library_visibility"],
14
+)
15
+
16
+# Tests
17
+
18
+swift_library(
19
+ name = "ModelsTestsLib",
20
+ testonly = True,
21
+ srcs = [
22
+ "Tests/ModelsTests.swift",
23
+ ],
24
+ module_name = "ModelsTests",
25
+ deps = [
26
+ ":ModelsLib",
27
+ ],
28
+)
29
+
30
+ios_unit_test(
31
+ name = "ModelsTests",
32
+ minimum_os_version = versions.minimum_ios_version,
33
+ visibility = ["//frontend/apple/modules:default_test_visibility"],
34
+ deps = [":ModelsTestsLib"],
35
+)
frontend/apple/modules/Models/Models/Models.swift
new
+13
@@ -0,0 +1,13 @@
1
+import Foundation
2
+
3
+public struct ModelA {
4
+ public init() {}
5
+
6
+ func internalBoolFunction() -> Bool {
7
+ return true
8
+ }
9
+}
10
+
11
+public struct ModelB {
12
+ public init() {}
13
+}
frontend/apple/modules/Models/Tests/ModelsTests.swift
new
+8
@@ -0,0 +1,8 @@
1
+@testable import Models
2
+import XCTest
3
+
4
+final class ModelsTests: XCTestCase {
5
+ func test_success() {
6
+ XCTAssertTrue(ModelA().internalBoolFunction())
7
+ }
8
+}
frontend/apple/tools/BUILD.bazel
frontend/apple/tools/extensions.bzl
new
+8
@@ -0,0 +1,8 @@
1
+load("//frontend/apple/tools:repositories.bzl", "swiftlint_dependency")
2
+
3
+def _non_module_dependencies_impl(_ctx):
4
+ swiftlint_dependency()
5
+
6
+non_module_dependencies = module_extension(
7
+ implementation = _non_module_dependencies_impl,
8
+)
frontend/apple/tools/repositories.bzl
new
+18
@@ -0,0 +1,18 @@
1
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2
+
3
+def swiftlint_dependency():
4
+ http_archive(
5
+ name = "SwiftLint",
6
+ build_file_content = """
7
+load("@bazel_skylib//rules:native_binary.bzl", "native_binary")
8
+native_binary(
9
+ name = "swiftlint",
10
+ src = "bin/swiftlint",
11
+ out = "swiftlint",
12
+ visibility = ["//visibility:public"],
13
+)
14
+""",
15
+ sha256 = "03416a4f75f023e10f9a76945806ddfe70ca06129b895455cc773c5c7d86b73e",
16
+ strip_prefix = "SwiftLintBinary.artifactbundle/swiftlint-0.53.0-macos",
17
+ url = "https://github.com/realm/SwiftLint/releases/download/0.53.0/SwiftLintBinary-macos.artifactbundle.zip",
18
+ )
frontend/apple/tools/shared.bzl
new
+9
@@ -0,0 +1,9 @@
1
+app_info = struct(
2
+ bundle_name = "SwiftUIApp",
3
+ bundle_id = "com.example.SwiftUIApp",
4
+ executable_name = "SwiftUIAppBinary",
5
+)
6
+
7
+versions = struct(
8
+ minimum_ios_version = "16.0",
9
+)
frontend/desktop/.npmrc
new
+1
@@ -0,0 +1 @@
1
+registry=https://registry.npmjs.org
frontend/desktop/.nvmrc
new
+1
@@ -0,0 +1 @@
1
+20.14.0
frontend/desktop/BUILD
new
+22
@@ -0,0 +1,22 @@
1
+load("@npm//@tauri-apps/cli:index.bzl", "tauri")
2
+
3
+tauri(
4
+ name = "dev",
5
+ data = glob(["**"]) + [
6
+ "@npm//next",
7
+ ],
8
+ templated_args = [
9
+ "dev",
10
+ ],
11
+)
12
+
13
+# Bundle doesn't work under bazel
14
+tauri(
15
+ name = "bundle",
16
+ data = glob(["**"]) + [
17
+ "@npm//next",
18
+ ],
19
+ templated_args = [
20
+ "build",
21
+ ],
22
+)
frontend/desktop/app/_lib/hooks/use-enter-submit.tsx
new
+23
@@ -0,0 +1,23 @@
1
+import { useRef, type RefObject } from 'react'
2
+
3
+export function useEnterSubmit(): {
4
+ formRef: RefObject<HTMLFormElement>
5
+ onKeyDown: (event: React.KeyboardEvent<HTMLTextAreaElement>) => void
6
+} {
7
+ const formRef = useRef<HTMLFormElement>(null)
8
+
9
+ const handleKeyDown = (
10
+ event: React.KeyboardEvent<HTMLTextAreaElement>
11
+ ): void => {
12
+ if (
13
+ event.key === 'Enter' &&
14
+ !event.shiftKey &&
15
+ !event.nativeEvent.isComposing
16
+ ) {
17
+ formRef.current?.requestSubmit()
18
+ event.preventDefault()
19
+ }
20
+ }
21
+
22
+ return { formRef, onKeyDown: handleKeyDown }
23
+}
frontend/desktop/app/_lib/hooks/use-local-storage.ts
new
+24
@@ -0,0 +1,24 @@
1
+import { useEffect, useState } from 'react'
2
+
3
+export const useLocalStorage = <T>(
4
+ key: string,
5
+ initialValue: T
6
+): [T, (value: T) => void] => {
7
+ const [storedValue, setStoredValue] = useState(initialValue)
8
+
9
+ useEffect(() => {
10
+ // Retrieve from localStorage
11
+ const item = window.localStorage.getItem(key)
12
+ if (item) {
13
+ setStoredValue(JSON.parse(item))
14
+ }
15
+ }, [key])
16
+
17
+ const setValue = (value: T) => {
18
+ // Save state
19
+ setStoredValue(value)
20
+ // Save to localStorage
21
+ window.localStorage.setItem(key, JSON.stringify(value))
22
+ }
23
+ return [storedValue, setValue]
24
+}
frontend/desktop/app/_lib/menus.ts
new
+20
@@ -0,0 +1,20 @@
1
+export type Item = {
2
+ name: string;
3
+ slug: string;
4
+ description?: string;
5
+};
6
+
7
+export const menus: { items: Item[] }[] = [
8
+ {
9
+ items: [
10
+ {
11
+ name: 'Play',
12
+ slug: 'play',
13
+ },
14
+ {
15
+ name: 'Chat 🤖',
16
+ slug: 'chat',
17
+ },
18
+ ],
19
+ },
20
+];
frontend/desktop/app/_lib/utils.ts
new
+43
@@ -0,0 +1,43 @@
1
+import { clsx, type ClassValue } from 'clsx'
2
+import { customAlphabet } from 'nanoid'
3
+import { twMerge } from 'tailwind-merge'
4
+
5
+export function cn(...inputs: ClassValue[]) {
6
+ return twMerge(clsx(inputs))
7
+}
8
+
9
+export const nanoid = customAlphabet(
10
+ '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz',
11
+ 7
12
+) // 7-character random string
13
+
14
+export async function fetcher<JSON = any>(
15
+ input: RequestInfo,
16
+ init?: RequestInit
17
+): Promise<JSON> {
18
+ const res = await fetch(input, init)
19
+
20
+ if (!res.ok) {
21
+ const json = await res.json()
22
+ if (json.error) {
23
+ const error = new Error(json.error) as Error & {
24
+ status: number
25
+ }
26
+ error.status = res.status
27
+ throw error
28
+ } else {
29
+ throw new Error('An unexpected error occurred')
30
+ }
31
+ }
32
+
33
+ return res.json()
34
+}
35
+
36
+export function formatDate(input: string | number | Date): string {
37
+ const date = new Date(input)
38
+ return date.toLocaleDateString('en-US', {
39
+ month: 'long',
40
+ day: 'numeric',
41
+ year: 'numeric'
42
+ })
43
+}
frontend/desktop/app/_ui/address-bar.tsx
new
+79
@@ -0,0 +1,79 @@
1
+'use client';
2
+
3
+import React, { Suspense } from 'react';
4
+import { usePathname, useSearchParams } from 'next/navigation';
5
+import { HomeIcon } from '@heroicons/react/solid';
6
+
7
+function Params() {
8
+ const searchParams = useSearchParams()!;
9
+
10
+ return searchParams.toString().length !== 0 ? (
11
+ <div className="px-2 text-gray-500">
12
+ <span>?</span>
13
+ {Array.from(searchParams.entries()).map(([key, value], index) => {
14
+ return (
15
+ <React.Fragment key={key}>
16
+ {index !== 0 ? <span>&</span> : null}
17
+ <span className="px-1">
18
+ <span
19
+ key={key}
20
+ className="animate-[highlight_1s_ease-in-out_1] text-gray-100"
21
+ >
22
+ {key}
23
+ </span>
24
+ <span>=</span>
25
+ <span
26
+ key={value}
27
+ className="animate-[highlight_1s_ease-in-out_1] text-gray-100"
28
+ >
29
+ {value}
30
+ </span>
31
+ </span>
32
+ </React.Fragment>
33
+ );
34
+ })}
35
+ </div>
36
+ ) : null;
37
+}
38
+
39
+export function AddressBar() {
40
+ const pathname = usePathname();
41
+ console.log('pathname', pathname);
42
+ return (
43
+ <div className="flex items-center gap-x-2 p-3.5 lg:px-5 lg:py-3">
44
+ <div className="text-gray-600">
45
+ <HomeIcon width={16} />
46
+ </div>
47
+ <div className="flex gap-x-1 text-sm font-medium">
48
+ {pathname ? (
49
+ <>
50
+ <span className="text-gray-600">/</span>
51
+ {pathname
52
+ .split('/')
53
+ .slice(1)
54
+ .map((segment) => {
55
+ return (
56
+ <React.Fragment key={segment}>
57
+ <span>
58
+ <span
59
+ key={segment}
60
+ className="animate-[highlight_1s_ease-in-out_1] rounded-full px-1.5 py-0.5 text-gray-100"
61
+ >
62
+ {segment}
63
+ </span>
64
+ </span>
65
+
66
+ <span className="text-gray-600">/</span>
67
+ </React.Fragment>
68
+ );
69
+ })}
70
+ </>
71
+ ) : null}
72
+
73
+ <Suspense>
74
+ <Params />
75
+ </Suspense>
76
+ </div>
77
+ </div>
78
+ );
79
+}
frontend/desktop/app/_ui/boundary.tsx
new
+82
@@ -0,0 +1,82 @@
1
+import clsx from 'clsx';
2
+import React from 'react';
3
+
4
+const Label = ({
5
+ children,
6
+ animateRerendering,
7
+ color,
8
+}: {
9
+ children: React.ReactNode;
10
+ animateRerendering?: boolean;
11
+ color?: 'default' | 'pink' | 'blue' | 'violet' | 'cyan' | 'orange';
12
+}) => {
13
+ return (
14
+ <div
15
+ className={clsx('rounded-full px-1.5 shadow-[0_0_1px_3px_black]', {
16
+ 'bg-gray-800 text-gray-300': color === 'default',
17
+ 'bg-vercel-pink text-white': color === 'pink',
18
+ 'bg-vercel-blue text-white': color === 'blue',
19
+ 'bg-vercel-cyan text-white': color === 'cyan',
20
+ 'bg-vercel-violet text-violet-100': color === 'violet',
21
+ 'bg-vercel-orange text-white': color === 'orange',
22
+ 'animate-[highlight_1s_ease-in-out_1]': animateRerendering,
23
+ })}
24
+ >
25
+ {children}
26
+ </div>
27
+ );
28
+};
29
+export const Boundary = ({
30
+ children,
31
+ labels = ['children'],
32
+ size = 'default',
33
+ color = 'default',
34
+ animateRerendering = true,
35
+}: {
36
+ children: React.ReactNode;
37
+ labels?: string[];
38
+ size?: 'small' | 'default';
39
+ color?: 'default' | 'pink' | 'blue' | 'violet' | 'cyan' | 'orange';
40
+ animateRerendering?: boolean;
41
+}) => {
42
+ return (
43
+ <div
44
+ className={clsx('relative rounded-lg border border-dashed', {
45
+ 'p-3 lg:p-5': size === 'small',
46
+ 'p-4 lg:p-9': size === 'default',
47
+ 'border-gray-700': color === 'default',
48
+ 'border-vercel-pink': color === 'pink',
49
+ 'border-vercel-blue': color === 'blue',
50
+ 'border-vercel-cyan': color === 'cyan',
51
+ 'border-vercel-violet': color === 'violet',
52
+ 'border-vercel-orange': color === 'orange',
53
+ 'text-vercel-pink animate-[rerender_1s_ease-in-out_1]':
54
+ animateRerendering,
55
+ })}
56
+ >
57
+ <div
58
+ className={clsx(
59
+ 'absolute -top-2.5 flex gap-x-1 text-[9px] uppercase leading-4 tracking-widest',
60
+ {
61
+ 'left-3 lg:left-5': size === 'small',
62
+ 'left-4 lg:left-9': size === 'default',
63
+ },
64
+ )}
65
+ >
66
+ {labels.map((label) => {
67
+ return (
68
+ <Label
69
+ key={label}
70
+ color={color}
71
+ animateRerendering={animateRerendering}
72
+ >
73
+ {label}
74
+ </Label>
75
+ );
76
+ })}
77
+ </div>
78
+
79
+ {children}
80
+ </div>
81
+ );
82
+};
frontend/desktop/app/_ui/click-counter.tsx
new
+16
@@ -0,0 +1,16 @@
1
+'use client';
2
+
3
+import React from 'react';
4
+
5
+export function ClickCounter() {
6
+ const [count, setCount] = React.useState(0);
7
+
8
+ return (
9
+ <button
10
+ onClick={() => setCount(count + 1)}
11
+ className="whitespace-nowrap rounded-lg bg-gray-700 px-3 py-1 text-sm font-medium tabular-nums text-gray-100 hover:bg-gray-500 hover:text-white"
12
+ >
13
+ {count} Clicks
14
+ </button>
15
+ );
16
+}
frontend/desktop/app/_ui/components/button.tsx
new
+57
@@ -0,0 +1,57 @@
1
+import * as React from 'react'
2
+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
+
7
+const buttonVariants = cva(
8
+ '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',
9
+ {
10
+ variants: {
11
+ variant: {
12
+ default:
13
+ 'bg-primary text-primary-foreground shadow-md hover:bg-primary/90',
14
+ destructive:
15
+ 'bg-destructive text-destructive-foreground hover:bg-destructive/90',
16
+ outline:
17
+ 'border border-input hover:bg-accent hover:text-accent-foreground',
18
+ secondary:
19
+ 'bg-secondary text-secondary-foreground hover:bg-secondary/80',
20
+ ghost: 'shadow-none hover:bg-accent hover:text-accent-foreground',
21
+ link: 'text-primary underline-offset-4 shadow-none hover:underline'
22
+ },
23
+ size: {
24
+ default: 'h-8 px-4 py-2',
25
+ sm: 'h-8 rounded-md px-3',
26
+ lg: 'h-11 rounded-md px-8',
27
+ icon: 'size-8 p-0'
28
+ }
29
+ },
30
+ defaultVariants: {
31
+ variant: 'default',
32
+ size: 'default'
33
+ }
34
+ }
35
+)
36
+
37
+export interface ButtonProps
38
+ extends React.ButtonHTMLAttributes<HTMLButtonElement>,
39
+ VariantProps<typeof buttonVariants> {
40
+ asChild?: boolean
41
+}
42
+
43
+const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
44
+ ({ className, variant, size, asChild = false, ...props }, ref) => {
45
+ const Comp = asChild ? Slot : 'button'
46
+ return (
47
+ <Comp
48
+ className={cn(buttonVariants({ variant, size, className }))}
49
+ ref={ref}
50
+ {...props}
51
+ />
52
+ )
53
+ }
54
+)
55
+Button.displayName = 'Button'
56
+
57
+export { Button, buttonVariants }
frontend/desktop/app/_ui/components/chat-panel.tsx
new
+57
@@ -0,0 +1,57 @@
1
+'use client'
2
+
3
+import * as React from 'react'
4
+import { type UseChatHelpers } from 'ai/react'
5
+
6
+import { PromptForm } from './prompt-form'
7
+
8
+export interface ChatPanelProps
9
+ extends Pick<
10
+ UseChatHelpers,
11
+ | 'append'
12
+ | 'isLoading'
13
+ | 'reload'
14
+ | 'messages'
15
+ | 'stop'
16
+ | 'input'
17
+ | 'setInput'
18
+ > {
19
+ id?: string
20
+ title?: string
21
+}
22
+
23
+export function ChatPanel({
24
+ id,
25
+ title,
26
+ isLoading,
27
+ stop,
28
+ append,
29
+ reload,
30
+ input,
31
+ setInput,
32
+ messages
33
+}: ChatPanelProps) {
34
+ const [shareDialogOpen, setShareDialogOpen] = React.useState(false)
35
+
36
+ return (
37
+ <div className="fixed inset-x-0 bottom-0 w-full bg-gradient-to-b from-muted/30 from-0% to-muted/30 to-50% animate-in duration-300 ease-in-out dark:from-background/10 dark:from-10% dark:to-background/80 peer-[[data-state=open]]:group-[]:lg:pl-[250px] peer-[[data-state=open]]:group-[]:xl:pl-[300px]">
38
+ <div className="mx-auto sm:max-w-2xl sm:px-4">
39
+ <div className="flex items-center justify-center h-12"></div>
40
+ <div className="px-4 py-2 space-y-4 border-t shadow-lg bg-background sm:rounded-t-xl sm:border md:py-4">
41
+ <PromptForm
42
+ onSubmit={async value => {
43
+ await append({
44
+ id,
45
+ content: value,
46
+ role: 'user'
47
+ })
48
+ }}
49
+ input={input}
50
+ setInput={setInput}
51
+ isLoading={isLoading}
52
+ />
53
+ </div>
54
+ </div>
55
+ </div>
56
+ )
57
+}
frontend/desktop/app/_ui/components/empty-screen.tsx
new
+56
@@ -0,0 +1,56 @@
1
+import { UseChatHelpers } from 'ai/react'
2
+
3
+import { Button } from './button'
4
+import { ExternalLink } from './external-link'
5
+import { IconArrowRight } from './icons'
6
+
7
+const exampleMessages = [
8
+ {
9
+ heading: 'Explain technical concepts',
10
+ message: `What is a "serverless function"?`
11
+ },
12
+ {
13
+ heading: 'Summarize an article',
14
+ message: 'Summarize the following article for a 2nd grader: \n'
15
+ },
16
+ {
17
+ heading: 'Draft an email',
18
+ message: `Draft an email to my boss about the following: \n`
19
+ }
20
+]
21
+
22
+export function EmptyScreen({ setInput }: Pick<UseChatHelpers, 'setInput'>) {
23
+ return (
24
+ <div className="mx-auto max-w-2xl px-4">
25
+ <div className="rounded-lg border bg-background p-8">
26
+ <h1 className="mb-2 text-lg font-semibold">
27
+ Welcome to Next.js AI Chatbot!
28
+ </h1>
29
+ <p className="mb-2 leading-normal text-muted-foreground">
30
+ This is an open source AI chatbot app template built with{' '}
31
+ <ExternalLink href="https://nextjs.org">Next.js</ExternalLink> and{' '}
32
+ <ExternalLink href="https://vercel.com/storage/kv">
33
+ Vercel KV
34
+ </ExternalLink>
35
+ .
36
+ </p>
37
+ <p className="leading-normal text-muted-foreground">
38
+ You can start a conversation here or try the following examples:
39
+ </p>
40
+ <div className="mt-4 flex flex-col items-start space-y-2">
41
+ {exampleMessages.map((message, index) => (
42
+ <Button
43
+ key={index}
44
+ variant="link"
45
+ className="h-auto p-0 text-base"
46
+ onClick={() => setInput(message.message)}
47
+ >
48
+ <IconArrowRight className="mr-2 text-muted-foreground" />
49
+ {message.heading}
50
+ </Button>
51
+ ))}
52
+ </div>
53
+ </div>
54
+ </div>
55
+ )
56
+}
frontend/desktop/app/_ui/components/external-link.tsx
new
+29
@@ -0,0 +1,29 @@
1
+export function ExternalLink({
2
+ href,
3
+ children
4
+}: {
5
+ href: string
6
+ children: React.ReactNode
7
+}) {
8
+ return (
9
+ <a
10
+ href={href}
11
+ target="_blank"
12
+ className="inline-flex flex-1 justify-center gap-1 leading-4 hover:underline"
13
+ >
14
+ <span>{children}</span>
15
+ <svg
16
+ aria-hidden="true"
17
+ height="7"
18
+ viewBox="0 0 6 6"
19
+ width="7"
20
+ className="opacity-70"
21
+ >
22
+ <path
23
+ d="M1.25215 5.54731L0.622742 4.9179L3.78169 1.75597H1.3834L1.38936 0.890915H5.27615V4.78069H4.40513L4.41109 2.38538L1.25215 5.54731Z"
24
+ fill="currentColor"
25
+ ></path>
26
+ </svg>
27
+ </a>
28
+ )
29
+}
frontend/desktop/app/_ui/components/icons.tsx
new
+506
@@ -0,0 +1,506 @@
1
+'use client'
2
+
3
+import { cn } from '@/app/_lib/utils'
4
+import * as React from 'react'
5
+
6
+function IconNextChat({
7
+ className,
8
+ inverted,
9
+ ...props
10
+}: React.ComponentProps<'svg'> & { inverted?: boolean }) {
11
+ const id = React.useId()
12
+
13
+ return (
14
+ <svg
15
+ viewBox="0 0 17 17"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ className={cn('size-4', className)}
19
+ {...props}
20
+ >
21
+ <defs>
22
+ <linearGradient
23
+ id={`gradient-${id}-1`}
24
+ x1="10.6889"
25
+ y1="10.3556"
26
+ x2="13.8445"
27
+ y2="14.2667"
28
+ gradientUnits="userSpaceOnUse"
29
+ >
30
+ <stop stopColor={inverted ? 'white' : 'black'} />
31
+ <stop
32
+ offset={1}
33
+ stopColor={inverted ? 'white' : 'black'}
34
+ stopOpacity={0}
35
+ />
36
+ </linearGradient>
37
+ <linearGradient
38
+ id={`gradient-${id}-2`}
39
+ x1="11.7555"
40
+ y1="4.8"
41
+ x2="11.7376"
42
+ y2="9.50002"
43
+ gradientUnits="userSpaceOnUse"
44
+ >
45
+ <stop stopColor={inverted ? 'white' : 'black'} />
46
+ <stop
47
+ offset={1}
48
+ stopColor={inverted ? 'white' : 'black'}
49
+ stopOpacity={0}
50
+ />
51
+ </linearGradient>
52
+ </defs>
53
+ <path
54
+ d="M1 16L2.58314 11.2506C1.83084 9.74642 1.63835 8.02363 2.04013 6.39052C2.4419 4.75741 3.41171 3.32057 4.776 2.33712C6.1403 1.35367 7.81003 0.887808 9.4864 1.02289C11.1628 1.15798 12.7364 1.8852 13.9256 3.07442C15.1148 4.26363 15.842 5.83723 15.9771 7.5136C16.1122 9.18997 15.6463 10.8597 14.6629 12.224C13.6794 13.5883 12.2426 14.5581 10.6095 14.9599C8.97637 15.3616 7.25358 15.1692 5.74942 14.4169L1 16Z"
55
+ fill={inverted ? 'black' : 'white'}
56
+ stroke={inverted ? 'black' : 'white'}
57
+ strokeWidth={2}
58
+ strokeLinecap="round"
59
+ strokeLinejoin="round"
60
+ />
61
+ <mask
62
+ id="mask0_91_2047"
63
+ style={{ maskType: 'alpha' }}
64
+ maskUnits="userSpaceOnUse"
65
+ x={1}
66
+ y={0}
67
+ width={16}
68
+ height={16}
69
+ >
70
+ <circle cx={9} cy={8} r={8} fill={inverted ? 'black' : 'white'} />
71
+ </mask>
72
+ <g mask="url(#mask0_91_2047)">
73
+ <circle cx={9} cy={8} r={8} fill={inverted ? 'black' : 'white'} />
74
+ <path
75
+ d="M14.2896 14.0018L7.146 4.8H5.80005V11.1973H6.87681V6.16743L13.4444 14.6529C13.7407 14.4545 14.0231 14.2369 14.2896 14.0018Z"
76
+ fill={`url(#gradient-${id}-1)`}
77
+ />
78
+ <rect
79
+ x="11.2222"
80
+ y="4.8"
81
+ width="1.06667"
82
+ height="6.4"
83
+ fill={`url(#gradient-${id}-2)`}
84
+ />
85
+ </g>
86
+ </svg>
87
+ )
88
+}
89
+
90
+function IconOpenAI({ className, ...props }: React.ComponentProps<'svg'>) {
91
+ return (
92
+ <svg
93
+ fill="currentColor"
94
+ viewBox="0 0 24 24"
95
+ role="img"
96
+ xmlns="http://www.w3.org/2000/svg"
97
+ className={cn('size-4', className)}
98
+ {...props}
99
+ >
100
+ <title>OpenAI icon</title>
101
+ <path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z" />
102
+ </svg>
103
+ )
104
+}
105
+
106
+function IconVercel({ className, ...props }: React.ComponentProps<'svg'>) {
107
+ return (
108
+ <svg
109
+ aria-label="Vercel logomark"
110
+ role="img"
111
+ viewBox="0 0 74 64"
112
+ className={cn('size-4', className)}
113
+ {...props}
114
+ >
115
+ <path
116
+ d="M37.5896 0.25L74.5396 64.25H0.639648L37.5896 0.25Z"
117
+ fill="currentColor"
118
+ ></path>
119
+ </svg>
120
+ )
121
+}
122
+
123
+function IconGitHub({ className, ...props }: React.ComponentProps<'svg'>) {
124
+ return (
125
+ <svg
126
+ role="img"
127
+ viewBox="0 0 24 24"
128
+ xmlns="http://www.w3.org/2000/svg"
129
+ fill="currentColor"
130
+ className={cn('size-4', className)}
131
+ {...props}
132
+ >
133
+ <title>GitHub</title>
134
+ <path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
135
+ </svg>
136
+ )
137
+}
138
+
139
+function IconSeparator({ className, ...props }: React.ComponentProps<'svg'>) {
140
+ return (
141
+ <svg
142
+ fill="none"
143
+ shapeRendering="geometricPrecision"
144
+ stroke="currentColor"
145
+ strokeLinecap="round"
146
+ strokeLinejoin="round"
147
+ strokeWidth="1"
148
+ viewBox="0 0 24 24"
149
+ aria-hidden="true"
150
+ className={cn('size-4', className)}
151
+ {...props}
152
+ >
153
+ <path d="M16.88 3.549L7.12 20.451"></path>
154
+ </svg>
155
+ )
156
+}
157
+
158
+function IconArrowDown({ className, ...props }: React.ComponentProps<'svg'>) {
159
+ return (
160
+ <svg
161
+ xmlns="http://www.w3.org/2000/svg"
162
+ viewBox="0 0 256 256"
163
+ fill="currentColor"
164
+ className={cn('size-4', className)}
165
+ {...props}
166
+ >
167
+ <path d="m205.66 149.66-72 72a8 8 0 0 1-11.32 0l-72-72a8 8 0 0 1 11.32-11.32L120 196.69V40a8 8 0 0 1 16 0v156.69l58.34-58.35a8 8 0 0 1 11.32 11.32Z" />
168
+ </svg>
169
+ )
170
+}
171
+
172
+function IconArrowRight({ className, ...props }: React.ComponentProps<'svg'>) {
173
+ return (
174
+ <svg
175
+ xmlns="http://www.w3.org/2000/svg"
176
+ viewBox="0 0 256 256"
177
+ fill="currentColor"
178
+ className={cn('size-4', className)}
179
+ {...props}
180
+ >
181
+ <path d="m221.66 133.66-72 72a8 8 0 0 1-11.32-11.32L196.69 136H40a8 8 0 0 1 0-16h156.69l-58.35-58.34a8 8 0 0 1 11.32-11.32l72 72a8 8 0 0 1 0 11.32Z" />
182
+ </svg>
183
+ )
184
+}
185
+
186
+function IconUser({ className, ...props }: React.ComponentProps<'svg'>) {
187
+ return (
188
+ <svg
189
+ xmlns="http://www.w3.org/2000/svg"
190
+ viewBox="0 0 256 256"
191
+ fill="currentColor"
192
+ className={cn('size-4', className)}
193
+ {...props}
194
+ >
195
+ <path d="M230.92 212c-15.23-26.33-38.7-45.21-66.09-54.16a72 72 0 1 0-73.66 0c-27.39 8.94-50.86 27.82-66.09 54.16a8 8 0 1 0 13.85 8c18.84-32.56 52.14-52 89.07-52s70.23 19.44 89.07 52a8 8 0 1 0 13.85-8ZM72 96a56 56 0 1 1 56 56 56.06 56.06 0 0 1-56-56Z" />
196
+ </svg>
197
+ )
198
+}
199
+
200
+function IconPlus({ className, ...props }: React.ComponentProps<'svg'>) {
201
+ return (
202
+ <svg
203
+ xmlns="http://www.w3.org/2000/svg"
204
+ viewBox="0 0 256 256"
205
+ fill="currentColor"
206
+ className={cn('size-4', className)}
207
+ {...props}
208
+ >
209
+ <path d="M224 128a8 8 0 0 1-8 8h-80v80a8 8 0 0 1-16 0v-80H40a8 8 0 0 1 0-16h80V40a8 8 0 0 1 16 0v80h80a8 8 0 0 1 8 8Z" />
210
+ </svg>
211
+ )
212
+}
213
+
214
+function IconArrowElbow({ className, ...props }: React.ComponentProps<'svg'>) {
215
+ return (
216
+ <svg
217
+ xmlns="http://www.w3.org/2000/svg"
218
+ viewBox="0 0 256 256"
219
+ fill="currentColor"
220
+ className={cn('size-4', className)}
221
+ {...props}
222
+ >
223
+ <path d="M200 32v144a8 8 0 0 1-8 8H67.31l34.35 34.34a8 8 0 0 1-11.32 11.32l-48-48a8 8 0 0 1 0-11.32l48-48a8 8 0 0 1 11.32 11.32L67.31 168H184V32a8 8 0 0 1 16 0Z" />
224
+ </svg>
225
+ )
226
+}
227
+
228
+function IconSpinner({ className, ...props }: React.ComponentProps<'svg'>) {
229
+ return (
230
+ <svg
231
+ xmlns="http://www.w3.org/2000/svg"
232
+ viewBox="0 0 256 256"
233
+ fill="currentColor"
234
+ className={cn('size-4 animate-spin', className)}
235
+ {...props}
236
+ >
237
+ <path d="M232 128a104 104 0 0 1-208 0c0-41 23.81-78.36 60.66-95.27a8 8 0 0 1 6.68 14.54C60.15 61.59 40 93.27 40 128a88 88 0 0 0 176 0c0-34.73-20.15-66.41-51.34-80.73a8 8 0 0 1 6.68-14.54C208.19 49.64 232 87 232 128Z" />
238
+ </svg>
239
+ )
240
+}
241
+
242
+function IconMessage({ className, ...props }: React.ComponentProps<'svg'>) {
243
+ return (
244
+ <svg
245
+ xmlns="http://www.w3.org/2000/svg"
246
+ viewBox="0 0 256 256"
247
+ fill="currentColor"
248
+ className={cn('size-4', className)}
249
+ {...props}
250
+ >
251
+ <path d="M216 48H40a16 16 0 0 0-16 16v160a15.84 15.84 0 0 0 9.25 14.5A16.05 16.05 0 0 0 40 240a15.89 15.89 0 0 0 10.25-3.78.69.69 0 0 0 .13-.11L82.5 208H216a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16ZM40 224Zm176-32H82.5a16 16 0 0 0-10.3 3.75l-.12.11L40 224V64h176Z" />
252
+ </svg>
253
+ )
254
+}
255
+
256
+function IconTrash({ className, ...props }: React.ComponentProps<'svg'>) {
257
+ return (
258
+ <svg
259
+ xmlns="http://www.w3.org/2000/svg"
260
+ viewBox="0 0 256 256"
261
+ fill="currentColor"
262
+ className={cn('size-4', className)}
263
+ {...props}
264
+ >
265
+ <path d="M216 48h-40v-8a24 24 0 0 0-24-24h-48a24 24 0 0 0-24 24v8H40a8 8 0 0 0 0 16h8v144a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16V64h8a8 8 0 0 0 0-16ZM96 40a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v8H96Zm96 168H64V64h128Zm-80-104v64a8 8 0 0 1-16 0v-64a8 8 0 0 1 16 0Zm48 0v64a8 8 0 0 1-16 0v-64a8 8 0 0 1 16 0Z" />
266
+ </svg>
267
+ )
268
+}
269
+
270
+function IconRefresh({ className, ...props }: React.ComponentProps<'svg'>) {
271
+ return (
272
+ <svg
273
+ xmlns="http://www.w3.org/2000/svg"
274
+ viewBox="0 0 256 256"
275
+ fill="currentColor"
276
+ className={cn('size-4', className)}
277
+ {...props}
278
+ >
279
+ <path d="M197.67 186.37a8 8 0 0 1 0 11.29C196.58 198.73 170.82 224 128 224c-37.39 0-64.53-22.4-80-39.85V208a8 8 0 0 1-16 0v-48a8 8 0 0 1 8-8h48a8 8 0 0 1 0 16H55.44C67.76 183.35 93 208 128 208c36 0 58.14-21.46 58.36-21.68a8 8 0 0 1 11.31.05ZM216 40a8 8 0 0 0-8 8v23.85C192.53 54.4 165.39 32 128 32c-42.82 0-68.58 25.27-69.66 26.34a8 8 0 0 0 11.3 11.34C69.86 69.46 92 48 128 48c35 0 60.24 24.65 72.56 40H168a8 8 0 0 0 0 16h48a8 8 0 0 0 8-8V48a8 8 0 0 0-8-8Z" />
280
+ </svg>
281
+ )
282
+}
283
+
284
+function IconStop({ className, ...props }: React.ComponentProps<'svg'>) {
285
+ return (
286
+ <svg
287
+ xmlns="http://www.w3.org/2000/svg"
288
+ viewBox="0 0 256 256"
289
+ fill="currentColor"
290
+ className={cn('size-4', className)}
291
+ {...props}
292
+ >
293
+ <path d="M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.1 88.1 0 0 1-88 88Zm24-120h-48a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-48a8 8 0 0 0-8-8Zm-8 48h-32v-32h32Z" />
294
+ </svg>
295
+ )
296
+}
297
+
298
+function IconSidebar({ className, ...props }: React.ComponentProps<'svg'>) {
299
+ return (
300
+ <svg
301
+ xmlns="http://www.w3.org/2000/svg"
302
+ viewBox="0 0 256 256"
303
+ fill="currentColor"
304
+ className={cn('size-4', className)}
305
+ {...props}
306
+ >
307
+ <path d="M216 40H40a16 16 0 0 0-16 16v144a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16ZM40 56h40v144H40Zm176 144H96V56h120v144Z" />
308
+ </svg>
309
+ )
310
+}
311
+
312
+function IconMoon({ className, ...props }: React.ComponentProps<'svg'>) {
313
+ return (
314
+ <svg
315
+ xmlns="http://www.w3.org/2000/svg"
316
+ viewBox="0 0 256 256"
317
+ fill="currentColor"
318
+ className={cn('size-4', className)}
319
+ {...props}
320
+ >
321
+ <path d="M233.54 142.23a8 8 0 0 0-8-2 88.08 88.08 0 0 1-109.8-109.8 8 8 0 0 0-10-10 104.84 104.84 0 0 0-52.91 37A104 104 0 0 0 136 224a103.09 103.09 0 0 0 62.52-20.88 104.84 104.84 0 0 0 37-52.91 8 8 0 0 0-1.98-7.98Zm-44.64 48.11A88 88 0 0 1 65.66 67.11a89 89 0 0 1 31.4-26A106 106 0 0 0 96 56a104.11 104.11 0 0 0 104 104 106 106 0 0 0 14.92-1.06 89 89 0 0 1-26.02 31.4Z" />
322
+ </svg>
323
+ )
324
+}
325
+
326
+function IconSun({ className, ...props }: React.ComponentProps<'svg'>) {
327
+ return (
328
+ <svg
329
+ xmlns="http://www.w3.org/2000/svg"
330
+ viewBox="0 0 256 256"
331
+ fill="currentColor"
332
+ className={cn('size-4', className)}
333
+ {...props}
334
+ >
335
+ <path d="M120 40V16a8 8 0 0 1 16 0v24a8 8 0 0 1-16 0Zm72 88a64 64 0 1 1-64-64 64.07 64.07 0 0 1 64 64Zm-16 0a48 48 0 1 0-48 48 48.05 48.05 0 0 0 48-48ZM58.34 69.66a8 8 0 0 0 11.32-11.32l-16-16a8 8 0 0 0-11.32 11.32Zm0 116.68-16 16a8 8 0 0 0 11.32 11.32l16-16a8 8 0 0 0-11.32-11.32ZM192 72a8 8 0 0 0 5.66-2.34l16-16a8 8 0 0 0-11.32-11.32l-16 16A8 8 0 0 0 192 72Zm5.66 114.34a8 8 0 0 0-11.32 11.32l16 16a8 8 0 0 0 11.32-11.32ZM48 128a8 8 0 0 0-8-8H16a8 8 0 0 0 0 16h24a8 8 0 0 0 8-8Zm80 80a8 8 0 0 0-8 8v24a8 8 0 0 0 16 0v-24a8 8 0 0 0-8-8Zm112-88h-24a8 8 0 0 0 0 16h24a8 8 0 0 0 0-16Z" />
336
+ </svg>
337
+ )
338
+}
339
+
340
+function IconCopy({ className, ...props }: React.ComponentProps<'svg'>) {
341
+ return (
342
+ <svg
343
+ xmlns="http://www.w3.org/2000/svg"
344
+ viewBox="0 0 256 256"
345
+ fill="currentColor"
346
+ className={cn('size-4', className)}
347
+ {...props}
348
+ >
349
+ <path d="M216 32H88a8 8 0 0 0-8 8v40H40a8 8 0 0 0-8 8v128a8 8 0 0 0 8 8h128a8 8 0 0 0 8-8v-40h40a8 8 0 0 0 8-8V40a8 8 0 0 0-8-8Zm-56 176H48V96h112Zm48-48h-32V88a8 8 0 0 0-8-8H96V48h112Z" />
350
+ </svg>
351
+ )
352
+}
353
+
354
+function IconCheck({ className, ...props }: React.ComponentProps<'svg'>) {
355
+ return (
356
+ <svg
357
+ xmlns="http://www.w3.org/2000/svg"
358
+ viewBox="0 0 256 256"
359
+ fill="currentColor"
360
+ className={cn('size-4', className)}
361
+ {...props}
362
+ >
363
+ <path d="m229.66 77.66-128 128a8 8 0 0 1-11.32 0l-56-56a8 8 0 0 1 11.32-11.32L96 188.69 218.34 66.34a8 8 0 0 1 11.32 11.32Z" />
364
+ </svg>
365
+ )
366
+}
367
+
368
+function IconDownload({ className, ...props }: React.ComponentProps<'svg'>) {
369
+ return (
370
+ <svg
371
+ xmlns="http://www.w3.org/2000/svg"
372
+ viewBox="0 0 256 256"
373
+ fill="currentColor"
374
+ className={cn('size-4', className)}
375
+ {...props}
376
+ >
377
+ <path d="M224 152v56a16 16 0 0 1-16 16H48a16 16 0 0 1-16-16v-56a8 8 0 0 1 16 0v56h160v-56a8 8 0 0 1 16 0Zm-101.66 5.66a8 8 0 0 0 11.32 0l40-40a8 8 0 0 0-11.32-11.32L136 132.69V40a8 8 0 0 0-16 0v92.69l-26.34-26.35a8 8 0 0 0-11.32 11.32Z" />
378
+ </svg>
379
+ )
380
+}
381
+
382
+function IconClose({ className, ...props }: React.ComponentProps<'svg'>) {
383
+ return (
384
+ <svg
385
+ xmlns="http://www.w3.org/2000/svg"
386
+ viewBox="0 0 256 256"
387
+ fill="currentColor"
388
+ className={cn('size-4', className)}
389
+ {...props}
390
+ >
391
+ <path d="M205.66 194.34a8 8 0 0 1-11.32 11.32L128 139.31l-66.34 66.35a8 8 0 0 1-11.32-11.32L116.69 128 50.34 61.66a8 8 0 0 1 11.32-11.32L128 116.69l66.34-66.35a8 8 0 0 1 11.32 11.32L139.31 128Z" />
392
+ </svg>
393
+ )
394
+}
395
+
396
+function IconEdit({ className, ...props }: React.ComponentProps<'svg'>) {
397
+ return (
398
+ <svg
399
+ xmlns="http://www.w3.org/2000/svg"
400
+ fill="none"
401
+ viewBox="0 0 24 24"
402
+ strokeWidth={1.5}
403
+ stroke="currentColor"
404
+ className={cn('size-4', className)}
405
+ {...props}
406
+ >
407
+ <path
408
+ strokeLinecap="round"
409
+ strokeLinejoin="round"
410
+ d="M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L10.582 16.07a4.5 4.5 0 01-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 011.13-1.897l8.932-8.931zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0115.75 21H5.25A2.25 2.25 0 013 18.75V8.25A2.25 2.25 0 015.25 6H10"
411
+ />
412
+ </svg>
413
+ )
414
+}
415
+
416
+function IconShare({ className, ...props }: React.ComponentProps<'svg'>) {
417
+ return (
418
+ <svg
419
+ xmlns="http://www.w3.org/2000/svg"
420
+ fill="currentColor"
421
+ className={cn('size-4', className)}
422
+ viewBox="0 0 256 256"
423
+ {...props}
424
+ >
425
+ <path d="m237.66 106.35-80-80A8 8 0 0 0 144 32v40.35c-25.94 2.22-54.59 14.92-78.16 34.91-28.38 24.08-46.05 55.11-49.76 87.37a12 12 0 0 0 20.68 9.58c11-11.71 50.14-48.74 107.24-52V192a8 8 0 0 0 13.66 5.65l80-80a8 8 0 0 0 0-11.3ZM160 172.69V144a8 8 0 0 0-8-8c-28.08 0-55.43 7.33-81.29 21.8a196.17 196.17 0 0 0-36.57 26.52c5.8-23.84 20.42-46.51 42.05-64.86C99.41 99.77 127.75 88 152 88a8 8 0 0 0 8-8V51.32L220.69 112Z" />
426
+ </svg>
427
+ )
428
+}
429
+
430
+function IconUsers({ className, ...props }: React.ComponentProps<'svg'>) {
431
+ return (
432
+ <svg
433
+ xmlns="http://www.w3.org/2000/svg"
434
+ fill="currentColor"
435
+ className={cn('size-4', className)}
436
+ viewBox="0 0 256 256"
437
+ {...props}
438
+ >
439
+ <path d="M117.25 157.92a60 60 0 1 0-66.5 0 95.83 95.83 0 0 0-47.22 37.71 8 8 0 1 0 13.4 8.74 80 80 0 0 1 134.14 0 8 8 0 0 0 13.4-8.74 95.83 95.83 0 0 0-47.22-37.71ZM40 108a44 44 0 1 1 44 44 44.05 44.05 0 0 1-44-44Zm210.14 98.7a8 8 0 0 1-11.07-2.33A79.83 79.83 0 0 0 172 168a8 8 0 0 1 0-16 44 44 0 1 0-16.34-84.87 8 8 0 1 1-5.94-14.85 60 60 0 0 1 55.53 105.64 95.83 95.83 0 0 1 47.22 37.71 8 8 0 0 1-2.33 11.07Z" />
440
+ </svg>
441
+ )
442
+}
443
+
444
+function IconExternalLink({
445
+ className,
446
+ ...props
447
+}: React.ComponentProps<'svg'>) {
448
+ return (
449
+ <svg
450
+ xmlns="http://www.w3.org/2000/svg"
451
+ fill="currentColor"
452
+ className={cn('size-4', className)}
453
+ viewBox="0 0 256 256"
454
+ {...props}
455
+ >
456
+ <path d="M224 104a8 8 0 0 1-16 0V59.32l-66.33 66.34a8 8 0 0 1-11.32-11.32L196.68 48H152a8 8 0 0 1 0-16h64a8 8 0 0 1 8 8Zm-40 24a8 8 0 0 0-8 8v72H48V80h72a8 8 0 0 0 0-16H48a16 16 0 0 0-16 16v128a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-72a8 8 0 0 0-8-8Z" />
457
+ </svg>
458
+ )
459
+}
460
+
461
+function IconChevronUpDown({
462
+ className,
463
+ ...props
464
+}: React.ComponentProps<'svg'>) {
465
+ return (
466
+ <svg
467
+ xmlns="http://www.w3.org/2000/svg"
468
+ fill="currentColor"
469
+ className={cn('size-4', className)}
470
+ viewBox="0 0 256 256"
471
+ {...props}
472
+ >
473
+ <path d="M181.66 170.34a8 8 0 0 1 0 11.32l-48 48a8 8 0 0 1-11.32 0l-48-48a8 8 0 0 1 11.32-11.32L128 212.69l42.34-42.35a8 8 0 0 1 11.32 0Zm-96-84.68L128 43.31l42.34 42.35a8 8 0 0 0 11.32-11.32l-48-48a8 8 0 0 0-11.32 0l-48 48a8 8 0 0 0 11.32 11.32Z" />
474
+ </svg>
475
+ )
476
+}
477
+
478
+export {
479
+ IconEdit,
480
+ IconNextChat,
481
+ IconOpenAI,
482
+ IconVercel,
483
+ IconGitHub,
484
+ IconSeparator,
485
+ IconArrowDown,
486
+ IconArrowRight,
487
+ IconUser,
488
+ IconPlus,
489
+ IconArrowElbow,
490
+ IconSpinner,
491
+ IconMessage,
492
+ IconTrash,
493
+ IconRefresh,
494
+ IconStop,
495
+ IconSidebar,
496
+ IconMoon,
497
+ IconSun,
498
+ IconCopy,
499
+ IconCheck,
500
+ IconDownload,
501
+ IconClose,
502
+ IconShare,
503
+ IconUsers,
504
+ IconExternalLink,
505
+ IconChevronUpDown
506
+}
frontend/desktop/app/_ui/components/prompt-form.tsx
new
+99
@@ -0,0 +1,99 @@
1
+'use client';
2
+
3
+import * as React from 'react'
4
+import Textarea from 'react-textarea-autosize'
5
+import { UseChatHelpers } from 'ai/react'
6
+import {
7
+ Tooltip,
8
+ TooltipContent,
9
+ TooltipTrigger
10
+} from './tooltip'
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'> {
19
+ onSubmit: (value: string) => void
20
+ isLoading: boolean
21
+}
22
+
23
+export function PromptForm({
24
+ onSubmit,
25
+ input,
26
+ setInput,
27
+ isLoading
28
+}: PromptProps) {
29
+ const { formRef, onKeyDown } = useEnterSubmit()
30
+ const inputRef = React.useRef<HTMLTextAreaElement>(null)
31
+ const router = useRouter()
32
+ React.useEffect(() => {
33
+ if (inputRef.current) {
34
+ inputRef.current.focus()
35
+ }
36
+ }, [])
37
+
38
+ return (
39
+ <form
40
+ onSubmit={async e => {
41
+ e.preventDefault()
42
+ if (!input?.trim()) {
43
+ return
44
+ }
45
+ setInput('')
46
+ await onSubmit(input)
47
+ }}
48
+ ref={formRef}
49
+ >
50
+ <div className="relative flex flex-col w-full px-8 overflow-hidden max-h-60 grow bg-background sm:rounded-md sm:border sm:px-12">
51
+ <Tooltip>
52
+ <TooltipTrigger asChild>
53
+ <button
54
+ onClick={e => {
55
+ e.preventDefault()
56
+ router.refresh()
57
+ router.push('/')
58
+ }}
59
+ className={cn(
60
+ buttonVariants({ size: 'sm', variant: 'outline' }),
61
+ 'absolute left-0 top-4 size-8 rounded-full bg-background p-0 sm:left-4'
62
+ )}
63
+ >
64
+ <IconPlus />
65
+ <span className="sr-only">New Chat</span>
66
+ </button>
67
+ </TooltipTrigger>
68
+ <TooltipContent>New Chat</TooltipContent>
69
+ </Tooltip>
70
+ <Textarea
71
+ ref={inputRef}
72
+ tabIndex={0}
73
+ onKeyDown={onKeyDown}
74
+ rows={1}
75
+ value={input}
76
+ onChange={e => setInput(e.target.value)}
77
+ placeholder="Send a message."
78
+ spellCheck={false}
79
+ className="min-h-[60px] w-full resize-none bg-transparent px-4 py-[1.3rem] focus-within:outline-none sm:text-sm"
80
+ />
81
+ <div className="absolute right-0 top-4 sm:right-4">
82
+ <Tooltip>
83
+ <TooltipTrigger asChild>
84
+ <Button
85
+ type="submit"
86
+ size="icon"
87
+ disabled={isLoading || input === ''}
88
+ >
89
+ <IconArrowElbow />
90
+ <span className="sr-only">Send message</span>
91
+ </Button>
92
+ </TooltipTrigger>
93
+ <TooltipContent>Send message</TooltipContent>
94
+ </Tooltip>
95
+ </div>
96
+ </div>
97
+ </form>
98
+ )
99
+}
frontend/desktop/app/_ui/components/tooltip.tsx
new
+29
@@ -0,0 +1,29 @@
1
+'use client'
2
+
3
+import * as React from 'react'
4
+import * as TooltipPrimitive from '@radix-ui/react-tooltip'
5
+import { cn } from '@/app/_lib/utils'
6
+
7
+const TooltipProvider = TooltipPrimitive.Provider
8
+
9
+const Tooltip = TooltipPrimitive.Root
10
+
11
+const TooltipTrigger = TooltipPrimitive.Trigger
12
+
13
+const TooltipContent = React.forwardRef<
14
+ React.ElementRef<typeof TooltipPrimitive.Content>,
15
+ React.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content>
16
+>(({ className, sideOffset = 4, ...props }, ref) => (
17
+ <TooltipPrimitive.Content
18
+ ref={ref}
19
+ sideOffset={sideOffset}
20
+ className={cn(
21
+ 'z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-xs font-medium text-popover-foreground shadow-md animate-in fade-in-50 data-[side=bottom]:slide-in-from-top-1 data-[side=left]:slide-in-from-right-1 data-[side=right]:slide-in-from-left-1 data-[side=top]:slide-in-from-bottom-1',
22
+ className
23
+ )}
24
+ {...props}
25
+ />
26
+))
27
+TooltipContent.displayName = TooltipPrimitive.Content.displayName
28
+
29
+export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }
frontend/desktop/app/_ui/external-link.tsx
new
+20
@@ -0,0 +1,20 @@
1
+import { ArrowRightIcon } from '@heroicons/react/outline';
2
+
3
+export const ExternalLink = ({
4
+ children,
5
+ href,
6
+}: {
7
+ children: React.ReactNode;
8
+ href: string;
9
+}) => {
10
+ return (
11
+ <a
12
+ href={href}
13
+ className="inline-flex gap-x-2 rounded-lg bg-gray-700 px-3 py-1 text-sm font-medium text-gray-100 no-underline hover:bg-gray-500 hover:text-white"
14
+ >
15
+ <div>{children}</div>
16
+
17
+ <ArrowRightIcon className="block w-4" />
18
+ </a>
19
+ );
20
+};
frontend/desktop/app/_ui/global-nav.tsx
new
+97
@@ -0,0 +1,97 @@
1
+'use client';
2
+
3
+import { menus, type Item } from '../_lib/menus';
4
+import Link from 'next/link';
5
+import { useSelectedLayoutSegment } from 'next/navigation';
6
+import { MenuAlt2Icon, XIcon } from '@heroicons/react/solid';
7
+import clsx from 'clsx';
8
+import { useState } from 'react';
9
+import Image from 'next/image';
10
+
11
+export function GlobalNav() {
12
+ const [isOpen, setIsOpen] = useState(false);
13
+ const close = () => setIsOpen(false);
14
+
15
+ return (
16
+ <div className="fixed top-0 z-10 flex w-full flex-col border-b border-gray-800 bg-black lg:bottom-0 lg:z-auto lg:w-72 lg:border-b-0 lg:border-r lg:border-gray-800">
17
+ <div className="flex h-14 items-center px-4 py-4 lg:h-auto">
18
+ <Link
19
+ href="/"
20
+ className="group flex w-full items-center gap-x-2.5"
21
+ onClick={close}
22
+ >
23
+ <div className="h-7 w-7 rounded-sm border border-white/30 group-hover:border-white/50">
24
+ <Image src="/logo192.png" alt="Tauri on Bazel" width={40} height={40} />
25
+ </div>
26
+
27
+ <h3 className="font-semibold tracking-wide text-gray-400 group-hover:text-gray-50">
28
+ Tauri on Bazel
29
+ </h3>
30
+ </Link>
31
+ </div>
32
+ <button
33
+ type="button"
34
+ className="group absolute right-0 top-0 flex h-14 items-center gap-x-2 px-4 lg:hidden"
35
+ onClick={() => setIsOpen(!isOpen)}
36
+ >
37
+ <div className="font-medium text-gray-100 group-hover:text-gray-400">
38
+ Menu
39
+ </div>
40
+ {isOpen ? (
41
+ <XIcon className="block w-6 text-gray-400" />
42
+ ) : (
43
+ <MenuAlt2Icon className="block w-6 text-gray-400" />
44
+ )}
45
+ </button>
46
+
47
+ <div
48
+ className={clsx('overflow-y-auto lg:static lg:block', {
49
+ 'fixed inset-x-0 bottom-0 top-14 mt-px bg-black': isOpen,
50
+ hidden: !isOpen,
51
+ })}
52
+ >
53
+ <nav className="space-y-6 px-2 pb-24 pt-5">
54
+ {menus.map((section, index) => {
55
+ return (
56
+ <div key={index}>
57
+
58
+ <div className="space-y-1">
59
+ {section.items.map((item) => (
60
+ <GlobalNavItem key={item.slug} item={item} close={close} />
61
+ ))}
62
+ </div>
63
+ </div>
64
+ );
65
+ })}
66
+ </nav>
67
+ </div>
68
+ </div>
69
+ );
70
+}
71
+
72
+function GlobalNavItem({
73
+ item,
74
+ close,
75
+}: {
76
+ item: Item;
77
+ close: () => false | void;
78
+}) {
79
+ const segment = useSelectedLayoutSegment();
80
+ const isActive = item.slug === segment;
81
+
82
+ return (
83
+ <Link
84
+ onClick={close}
85
+ href={`/${item.slug}`}
86
+ className={clsx(
87
+ 'block rounded-md px-3 py-2 text-sm font-medium hover:text-gray-300',
88
+ {
89
+ 'text-gray-400 hover:bg-gray-800': !isActive,
90
+ 'text-white': isActive,
91
+ },
92
+ )}
93
+ >
94
+ {item.name}
95
+ </Link>
96
+ );
97
+}
frontend/desktop/app/_ui/skeleton-card.tsx
new
+16
@@ -0,0 +1,16 @@
1
+import clsx from 'clsx';
2
+
3
+export const SkeletonCard = ({ isLoading }: { isLoading?: boolean }) => (
4
+ <div
5
+ className={clsx('rounded-2xl bg-gray-900/80 p-4', {
6
+ 'relative overflow-hidden before:absolute before:inset-0 before:-translate-x-full before:animate-[shimmer_1.5s_infinite] before:bg-gradient-to-r before:from-transparent before:via-white/10 before:to-transparent':
7
+ isLoading,
8
+ })}
9
+ >
10
+ <div className="space-y-3">
11
+ <div className="h-14 rounded-lg bg-gray-700" />
12
+ <div className="h-3 w-11/12 rounded-lg bg-gray-700" />
13
+ <div className="h-3 w-8/12 rounded-lg bg-gray-700" />
14
+ </div>
15
+ </div>
16
+);
frontend/desktop/app/_ui/tab-group.tsx
new
+31
@@ -0,0 +1,31 @@
1
+import { Tab } from "./tab";
2
+
3
+export type Item = {
4
+ text: string;
5
+ slug?: string;
6
+ segment?: string;
7
+ parallelRoutesKey?: string;
8
+};
9
+
10
+export const TabGroup = ({
11
+ path,
12
+ parallelRoutesKey,
13
+ items,
14
+}: {
15
+ path: string;
16
+ parallelRoutesKey?: string;
17
+ items: Item[];
18
+}) => {
19
+ return (
20
+ <div className="flex flex-wrap items-center gap-2">
21
+ {items.map((item) => (
22
+ <Tab
23
+ key={path + item.slug}
24
+ item={item}
25
+ path={path}
26
+ parallelRoutesKey={parallelRoutesKey}
27
+ />
28
+ ))}
29
+ </div>
30
+ );
31
+};
frontend/desktop/app/_ui/tab-nav-item.tsx
new
+25
@@ -0,0 +1,25 @@
1
+import clsx from 'clsx';
2
+import Link from 'next/link';
3
+
4
+export const TabNavItem = ({
5
+ children,
6
+ href,
7
+ isActive,
8
+}: {
9
+ children: React.ReactNode;
10
+ href: string;
11
+ isActive?: boolean;
12
+}) => {
13
+ return (
14
+ <Link
15
+ href={href}
16
+ className={clsx('rounded-lg px-3 py-1 text-sm font-medium', {
17
+ 'bg-gray-700 text-gray-100 hover:bg-gray-500 hover:text-white':
18
+ !isActive,
19
+ 'bg-vercel-blue text-white': isActive,
20
+ })}
21
+ >
22
+ {children}
23
+ </Link>
24
+ );
25
+};
frontend/desktop/app/_ui/tab.tsx
new
+39
@@ -0,0 +1,39 @@
1
+'use client';
2
+
3
+import type { Item } from '@/app/_ui/tab-group';
4
+import clsx from 'clsx';
5
+import Link from 'next/link';
6
+import { useSelectedLayoutSegment } from 'next/navigation';
7
+
8
+export const Tab = ({
9
+ path,
10
+ parallelRoutesKey,
11
+ item,
12
+}: {
13
+ path: string;
14
+ parallelRoutesKey?: string;
15
+ item: Item;
16
+}) => {
17
+ const segment = useSelectedLayoutSegment(parallelRoutesKey);
18
+
19
+ const href = item.slug ? path + '/' + item.slug : path;
20
+ const isActive =
21
+ // Example home pages e.g. `/layouts`
22
+ (!item.slug && segment === null) ||
23
+ segment === item.segment ||
24
+ // Nested pages e.g. `/layouts/electronics`
25
+ segment === item.slug;
26
+
27
+ return (
28
+ <Link
29
+ href={href}
30
+ className={clsx('rounded-lg px-3 py-1 text-sm font-medium', {
31
+ 'bg-gray-700 text-gray-100 hover:bg-gray-500 hover:text-white':
32
+ !isActive,
33
+ 'bg-vercel-blue text-white': isActive,
34
+ })}
35
+ >
36
+ {item.text}
37
+ </Link>
38
+ );
39
+};
frontend/desktop/app/api/categories/category.d.ts
new
+6
@@ -0,0 +1,6 @@
1
+export type Category = {
2
+ name: string;
3
+ slug: string;
4
+ count: number;
5
+ parent: string | null;
6
+};
frontend/desktop/app/api/categories/getCategories.ts
new
+52
@@ -0,0 +1,52 @@
1
+import { notFound } from 'next/navigation';
2
+import type { Category } from './category';
3
+
4
+// `server-only` guarantees any modules that import code in file
5
+// will never run on the client. Even though this particular api
6
+// doesn't currently use sensitive environment variables, it's
7
+// good practise to add `server-only` preemptively.
8
+import 'server-only';
9
+
10
+export async function getCategories({ parent }: { parent?: string } = {}) {
11
+ const res = await fetch(
12
+ `https://app-router-api.vercel.app/api/categories${
13
+ parent ? `?parent=${parent}` : ''
14
+ }`,
15
+ );
16
+
17
+ if (!res.ok) {
18
+ // Render the closest `error.js` Error Boundary
19
+ throw new Error('Something went wrong!');
20
+ }
21
+
22
+ const categories = (await res.json()) as Category[];
23
+
24
+ if (categories.length === 0) {
25
+ // Render the closest `not-found.js` Error Boundary
26
+ notFound();
27
+ }
28
+
29
+ return categories;
30
+}
31
+
32
+export async function getCategory({ slug }: { slug: string }) {
33
+ const res = await fetch(
34
+ `https://app-router-api.vercel.app/api/categories${
35
+ slug ? `?slug=${slug}` : ''
36
+ }`,
37
+ );
38
+
39
+ if (!res.ok) {
40
+ // Render the closest `error.js` Error Boundary
41
+ throw new Error('Something went wrong!');
42
+ }
43
+
44
+ const category = (await res.json()) as Category;
45
+
46
+ if (!category) {
47
+ // Render the closest `not-found.js` Error Boundary
48
+ notFound();
49
+ }
50
+
51
+ return category;
52
+}
frontend/desktop/app/chat/layout.tsx
new
+25
@@ -0,0 +1,25 @@
1
+import { TooltipProvider } from '../_ui/components/tooltip';
2
+import React from 'react';
3
+
4
+const title = 'Nested Layouts';
5
+
6
+export const metadata = {
7
+ metadataBase: new URL('https://splitfire.ai'),
8
+ title,
9
+ openGraph: {
10
+ title,
11
+ images: [`/api/og?title=${title}`],
12
+ },
13
+};
14
+
15
+export default async function Layout({
16
+ children,
17
+}: {
18
+ children: React.ReactNode;
19
+}) {
20
+ return (
21
+ <div className="space-y-9">
22
+ <TooltipProvider>{children}</TooltipProvider>
23
+ </div>
24
+ );
25
+}
frontend/desktop/app/chat/page.tsx
new
+21
@@ -0,0 +1,21 @@
1
+'use client'
2
+
3
+import { useLocalStorage } from '../_lib/hooks/use-local-storage';
4
+import { cn } from '../_lib/utils';
5
+import { ChatPanel } from '../_ui/components/chat-panel';
6
+import { EmptyScreen } from '../_ui/components/empty-screen';
7
+import { useChat, type Message } from 'ai/react'
8
+import { usePathname } from 'next/navigation';
9
+import { toast } from 'react-hot-toast'
10
+
11
+export interface ChatProps extends React.ComponentProps<'div'> {
12
+ initialMessages?: Message[]
13
+ id?: string
14
+}
15
+
16
+export default function Page() {
17
+ return (
18
+ <div className="prose prose-sm prose-invert max-w-none">
19
+ </div>
20
+ );
21
+}
frontend/desktop/app/globals.css
new
+3
@@ -0,0 +1,3 @@
1
+@tailwind base;
2
+@tailwind components;
3
+@tailwind utilities;
frontend/desktop/app/layout.tsx
new
+31
@@ -0,0 +1,31 @@
1
+'use client'
2
+
3
+import { AddressBar } from './_ui/address-bar';
4
+import { GlobalNav } from './_ui/global-nav';
5
+import './globals.css';
6
+
7
+export default function RootLayout({
8
+ children,
9
+}: {
10
+ children: React.ReactNode;
11
+}) {
12
+ return (
13
+ <html lang="en" className="[color-scheme:dark]">
14
+ <body className="bg-gray-1100 overflow-y-scroll bg-[url('/grid.svg')] pb-36">
15
+ <GlobalNav />
16
+ <div className="lg:pl-72">
17
+ <div className="bg-vc-border-gradient rounded-lg p-px shadow-lg shadow-black/20">
18
+ <div className="rounded-lg bg-black">
19
+ <AddressBar />
20
+ </div>
21
+ </div>
22
+ <div className="mx-auto max-w-4xl space-y-8 px-2 pt-20 lg:px-8 lg:py-8">
23
+ <div className="bg-vc-border-gradient rounded-lg p-px shadow-lg shadow-black/20">
24
+ <div className="rounded-lg bg-black p-3.5 lg:p-6">{children}</div>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </body>
29
+ </html>
30
+ );
31
+}
frontend/desktop/app/page.tsx
new
+12
@@ -0,0 +1,12 @@
1
+export default function Page() {
2
+ return (
3
+ <div className="space-y-8">
4
+ <h1 className="text-xl font-medium text-gray-300">Hello, Tauri on Bazel!</h1>
5
+ <div className="space-y-10 text-white">
6
+ <div className="space-y-5">
7
+ <div className="grid grid-cols-1 gap-5 lg:grid-cols-2"></div>
8
+ </div>
9
+ </div>
10
+ </div>
11
+ );
12
+}
frontend/desktop/app/play/(checkout)/checkout/page.tsx
new
+15
@@ -0,0 +1,15 @@
1
+export async function generateStaticParams() {
2
+ const posts = [
3
+ { slug: "post-1" },
4
+ { slug: "post-2" },
5
+ { slug: "post-3" },
6
+ ];
7
+
8
+ return posts.map((post) => ({
9
+ slug: post.slug,
10
+ }))
11
+}
12
+
13
+export default function Page() {
14
+ return <h1 className="text-xl font-medium text-gray-400/80">Checkout</h1>;
15
+}
frontend/desktop/app/play/(checkout)/layout.tsx
new
+23
@@ -0,0 +1,23 @@
1
+import { Boundary } from '@/app/_ui/boundary';
2
+import { TabNavItem } from '@/app/_ui/tab-nav-item';
3
+import React from 'react';
4
+
5
+export default function Layout({ children }: { children: React.ReactNode }) {
6
+ return (
7
+ <Boundary
8
+ labels={['checkout layout']}
9
+ color="blue"
10
+ animateRerendering={false}
11
+ >
12
+ <div className="space-y-9">
13
+ <div className="flex items-center justify-between">
14
+ <div className="flex items-center gap-x-4">
15
+ <TabNavItem href="/play">Back</TabNavItem>
16
+ </div>
17
+ </div>
18
+
19
+ <div>{children}</div>
20
+ </div>
21
+ </Boundary>
22
+ );
23
+}
frontend/desktop/app/play/(checkout)/template.tsx
new
+6
@@ -0,0 +1,6 @@
1
+import { Boundary } from '@/app/_ui/boundary';
2
+import React from 'react';
3
+
4
+export default function Template({ children }: { children: React.ReactNode }) {
5
+ return <Boundary>{children}</Boundary>;
6
+}
frontend/desktop/app/play/layout.tsx
new
+29
@@ -0,0 +1,29 @@
1
+import React from 'react';
2
+
3
+const title = 'Nested Layouts';
4
+
5
+export const metadata = {
6
+ metadataBase: new URL('https://splitfire.ai'),
7
+ title,
8
+ openGraph: {
9
+ title,
10
+ images: [`/api/og?title=${title}`],
11
+ },
12
+};
13
+
14
+export default async function Layout({
15
+ children,
16
+}: {
17
+ children: React.ReactNode;
18
+}) {
19
+ return (
20
+ <div className="space-y-9">
21
+ <div className="flex justify-between">
22
+ <div className="self-start">
23
+ <h1 className="text-3xl font-bold">Ready to play!</h1>
24
+ </div>
25
+ </div>
26
+ <div>{children}</div>
27
+ </div>
28
+ );
29
+}
frontend/desktop/app/play/page.tsx
new
+25
@@ -0,0 +1,25 @@
1
+import { SkeletonCard } from '../_ui/skeleton-card';
2
+
3
+export async function generateStaticParams() {
4
+ const posts = [
5
+ { slug: "post-1" },
6
+ { slug: "post-2" },
7
+ { slug: "post-3" },
8
+ ];
9
+
10
+ return posts.map((post) => ({
11
+ slug: post.slug,
12
+ }))
13
+}
14
+
15
+export default function Page() {
16
+ return (
17
+ <div className="prose prose-sm prose-invert max-w-none">
18
+ <div className="grid grid-cols-1 gap-6 lg:grid-cols-3">
19
+ {Array.from({ length: 6 }).map((_, i) => (
20
+ <SkeletonCard key={i} />
21
+ ))}
22
+ </div>
23
+ </div>
24
+ );
25
+}
frontend/desktop/next.config.js
new
+7
@@ -0,0 +1,7 @@
1
+/** @type {import('next').NextConfig} */
2
+const nextConfig = {
3
+ output: 'export',
4
+ images: { unoptimized: true }
5
+};
6
+
7
+module.exports = nextConfig;
frontend/desktop/package-lock.json
new
+5806
@@ -0,0 +1,5806 @@
1
+{
2
+ "name": "tower-of-bazel",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "tower-of-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.2.5",
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.14",
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.2.5",
259
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.5.tgz",
260
+ "integrity": "sha512-/zZGkrTOsraVfYjGP8uM0p6r0BDT6xWpkjdVbcz66PJVSpwXX3yNiRycxAuDfBKGWBrZBXRuK/YVlkNgxHGwmA=="
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.2.5",
309
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.5.tgz",
310
+ "integrity": "sha512-/9zVxJ+K9lrzSGli1///ujyRfon/ZneeZ+v4ptpiPoOU+GKZnm8Wj8ELWU1Pm7GHltYRBklmXMTUqM/DqQ99FQ==",
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.2.5",
324
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.5.tgz",
325
+ "integrity": "sha512-vXHOPCwfDe9qLDuq7U1OYM2wUY+KQ4Ex6ozwsKxp26BlJ6XXbHleOUldenM67JRyBfVjv371oneEvYd3H2gNSA==",
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.2.5",
339
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.5.tgz",
340
+ "integrity": "sha512-vlhB8wI+lj8q1ExFW8lbWutA4M2ZazQNvMWuEDqZcuJJc78iUnLdPPunBPX8rC4IgT6lIx/adB+Cwrl99MzNaA==",
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.2.5",
354
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.5.tgz",
355
+ "integrity": "sha512-NpDB9NUR2t0hXzJJwQSGu1IAOYybsfeB+LxpGsXrRIb7QOrYmidJz3shzY8cM6+rO4Aojuef0N/PEaX18pi9OA==",
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.2.5",
369
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.5.tgz",
370
+ "integrity": "sha512-8XFikMSxWleYNryWIjiCX+gU201YS+erTUidKdyOVYi5qUQo/gRxv/3N1oZFCgqpesN6FPeqGM72Zve+nReVXQ==",
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.2.5",
384
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.5.tgz",
385
+ "integrity": "sha512-6QLwi7RaYiQDcRDSU/os40r5o06b5ue7Jsk5JgdRBGGp8l37RZEh9JsLSM8QF0YDsgcosSeHjglgqi25+m04IQ==",
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.2.5",
399
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.5.tgz",
400
+ "integrity": "sha512-1GpG2VhbspO+aYoMOQPQiqc/tG3LzmsdBH0LhnDS3JrtDx2QmzXe0B6mSZZiN3Bq7IOMXxv1nlsjzoS1+9mzZw==",
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.2.5",
414
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.5.tgz",
415
+ "integrity": "sha512-Igh9ZlxwvCDsu6438FXlQTHlRno4gFpJzqPjSIBZooD22tKeI4fE/YMRoHVJHmrQ2P5YL1DoZ0qaOKkbeFWeMg==",
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.2.5",
429
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.5.tgz",
430
+ "integrity": "sha512-tEQ7oinq1/CjSG9uSTerca3v4AZ+dFa+4Yu6ihaG8Ud8ddqLQgFGcnwYls13H5X5CPDPZJdYxyeMui6muOLd4g==",
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/counter": {
909
+ "version": "0.1.3",
910
+ "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
911
+ "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="
912
+ },
913
+ "node_modules/@swc/helpers": {
914
+ "version": "0.5.5",
915
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz",
916
+ "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==",
917
+ "dependencies": {
918
+ "@swc/counter": "^0.1.3",
919
+ "tslib": "^2.4.0"
920
+ }
921
+ },
922
+ "node_modules/@tailwindcss/forms": {
923
+ "version": "0.5.3",
924
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tailwindcss/forms/-/forms-0.5.3.tgz",
925
+ "integrity": "sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==",
926
+ "dev": true,
927
+ "dependencies": {
928
+ "mini-svg-data-uri": "^1.2.3"
929
+ },
930
+ "peerDependencies": {
931
+ "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1"
932
+ }
933
+ },
934
+ "node_modules/@tailwindcss/typography": {
935
+ "version": "0.5.9",
936
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tailwindcss/typography/-/typography-0.5.9.tgz",
937
+ "integrity": "sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==",
938
+ "dev": true,
939
+ "dependencies": {
940
+ "lodash.castarray": "^4.4.0",
941
+ "lodash.isplainobject": "^4.0.6",
942
+ "lodash.merge": "^4.6.2",
943
+ "postcss-selector-parser": "6.0.10"
944
+ },
945
+ "peerDependencies": {
946
+ "tailwindcss": ">=3.0.0 || insiders"
947
+ }
948
+ },
949
+ "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser": {
950
+ "version": "6.0.10",
951
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
952
+ "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
953
+ "dev": true,
954
+ "dependencies": {
955
+ "cssesc": "^3.0.0",
956
+ "util-deprecate": "^1.0.2"
957
+ },
958
+ "engines": {
959
+ "node": ">=4"
960
+ }
961
+ },
962
+ "node_modules/@tauri-apps/api": {
963
+ "version": "1.5.3",
964
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@tauri-apps/api/-/api-1.5.3.tgz",
965
+ "integrity": "sha512-zxnDjHHKjOsrIzZm6nO5Xapb/BxqUq1tc7cGkFXsFkGTsSWgCPH1D8mm0XS9weJY2OaR73I3k3S+b7eSzJDfqA==",
966
+ "engines": {
967
+ "node": ">= 14.6.0",
968
+ "npm": ">= 6.6.0",
969
+ "yarn": ">= 1.19.1"
970
+ }
971
+ },
972
+ "node_modules/@tauri-apps/cli": {
973
+ "version": "1.6.0",
974
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-1.6.0.tgz",
975
+ "integrity": "sha512-DBBpBl6GhTzm8ImMbKkfaZ4fDTykWrC7Q5OXP4XqD91recmDEn2LExuvuiiS3HYe7uP8Eb5B9NPHhqJb+Zo7qQ==",
976
+ "dev": true,
977
+ "bin": {
978
+ "tauri": "tauri.js"
979
+ },
980
+ "engines": {
981
+ "node": ">= 10"
982
+ },
983
+ "funding": {
984
+ "type": "opencollective",
985
+ "url": "https://opencollective.com/tauri"
986
+ },
987
+ "optionalDependencies": {
988
+ "@tauri-apps/cli-darwin-arm64": "1.6.0",
989
+ "@tauri-apps/cli-darwin-x64": "1.6.0",
990
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.6.0",
991
+ "@tauri-apps/cli-linux-arm64-gnu": "1.6.0",
992
+ "@tauri-apps/cli-linux-arm64-musl": "1.6.0",
993
+ "@tauri-apps/cli-linux-x64-gnu": "1.6.0",
994
+ "@tauri-apps/cli-linux-x64-musl": "1.6.0",
995
+ "@tauri-apps/cli-win32-arm64-msvc": "1.6.0",
996
+ "@tauri-apps/cli-win32-ia32-msvc": "1.6.0",
997
+ "@tauri-apps/cli-win32-x64-msvc": "1.6.0"
998
+ }
999
+ },
1000
+ "node_modules/@tauri-apps/cli-darwin-arm64": {
1001
+ "version": "1.6.0",
1002
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.6.0.tgz",
1003
+ "integrity": "sha512-SNRwUD9nqGxY47mbY1CGTt/jqyQOU7Ps7Mx/mpgahL0FVUDiCEY/5L9QfEPPhEgccgcelEVn7i6aQHIkHyUtCA==",
1004
+ "cpu": [
1005
+ "arm64"
1006
+ ],
1007
+ "dev": true,
1008
+ "optional": true,
1009
+ "os": [
1010
+ "darwin"
1011
+ ],
1012
+ "engines": {
1013
+ "node": ">= 10"
1014
+ }
1015
+ },
1016
+ "node_modules/@tauri-apps/cli-darwin-x64": {
1017
+ "version": "1.6.0",
1018
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.6.0.tgz",
1019
+ "integrity": "sha512-g2/uDR/eeH2arvuawA4WwaEOqv/7jDO/ZLNI3JlBjP5Pk8GGb3Kdy0ro1xQzF94mtk2mOnOXa4dMgAet4sUJ1A==",
1020
+ "cpu": [
1021
+ "x64"
1022
+ ],
1023
+ "dev": true,
1024
+ "optional": true,
1025
+ "os": [
1026
+ "darwin"
1027
+ ],
1028
+ "engines": {
1029
+ "node": ">= 10"
1030
+ }
1031
+ },
1032
+ "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
1033
+ "version": "1.6.0",
1034
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.6.0.tgz",
1035
+ "integrity": "sha512-EVwf4oRkQyG8BpSrk0gqO7oA0sDM2MdNDtJpMfleYFEgCxLIOGZKNqaOW3M7U+0Y4qikmG3TtRK+ngc8Ymtrjg==",
1036
+ "cpu": [
1037
+ "arm"
1038
+ ],
1039
+ "dev": true,
1040
+ "optional": true,
1041
+ "os": [
1042
+ "linux"
1043
+ ],
1044
+ "engines": {
1045
+ "node": ">= 10"
1046
+ }
1047
+ },
1048
+ "node_modules/@tauri-apps/cli-linux-arm64-gnu": {
1049
+ "version": "1.6.0",
1050
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.6.0.tgz",
1051
+ "integrity": "sha512-YdpY17cAySrhK9dX4BUVEmhAxE2o+6skIEFg8iN/xrDwRxhaNPI9I80YXPatUTX54Kx55T5++25VJG9+3iw83A==",
1052
+ "cpu": [
1053
+ "arm64"
1054
+ ],
1055
+ "dev": true,
1056
+ "optional": true,
1057
+ "os": [
1058
+ "linux"
1059
+ ],
1060
+ "engines": {
1061
+ "node": ">= 10"
1062
+ }
1063
+ },
1064
+ "node_modules/@tauri-apps/cli-linux-arm64-musl": {
1065
+ "version": "1.6.0",
1066
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.6.0.tgz",
1067
+ "integrity": "sha512-4U628tuf2U8pMr4tIBJhEkrFwt+46dwhXrDlpdyWSZtnop5RJAVKHODm0KbWns4xGKfTW1F3r6sSv+2ZxLcISA==",
1068
+ "cpu": [
1069
+ "arm64"
1070
+ ],
1071
+ "dev": true,
1072
+ "optional": true,
1073
+ "os": [
1074
+ "linux"
1075
+ ],
1076
+ "engines": {
1077
+ "node": ">= 10"
1078
+ }
1079
+ },
1080
+ "node_modules/@tauri-apps/cli-linux-x64-gnu": {
1081
+ "version": "1.6.0",
1082
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.6.0.tgz",
1083
+ "integrity": "sha512-AKRzp76fVUaJyXj5KRJT9bJyhwZyUnRQU0RqIRqOtZCT5yr6qGP8rjtQ7YhCIzWrseBlOllc3Qvbgw3Yl0VQcA==",
1084
+ "cpu": [
1085
+ "x64"
1086
+ ],
1087
+ "dev": true,
1088
+ "optional": true,
1089
+ "os": [
1090
+ "linux"
1091
+ ],
1092
+ "engines": {
1093
+ "node": ">= 10"
1094
+ }
1095
+ },
1096
+ "node_modules/@tauri-apps/cli-linux-x64-musl": {
1097
+ "version": "1.6.0",
1098
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.6.0.tgz",
1099
+ "integrity": "sha512-0edIdq6aMBTaRMIXddHfyAFL361JqulLLd2Wi2aoOie7DkQ2MYh6gv3hA7NB9gqFwNIGE+xtJ4BkXIP2tSGPlg==",
1100
+ "cpu": [
1101
+ "x64"
1102
+ ],
1103
+ "dev": true,
1104
+ "optional": true,
1105
+ "os": [
1106
+ "linux"
1107
+ ],
1108
+ "engines": {
1109
+ "node": ">= 10"
1110
+ }
1111
+ },
1112
+ "node_modules/@tauri-apps/cli-win32-arm64-msvc": {
1113
+ "version": "1.6.0",
1114
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-1.6.0.tgz",
1115
+ "integrity": "sha512-QwWpWk4ubcwJ1rljsRAmINgB2AwkyzZhpYbalA+MmzyYMREcdXWGkyixWbRZgqc6fEWEBmq5UG73qz5eBJiIKg==",
1116
+ "cpu": [
1117
+ "arm64"
1118
+ ],
1119
+ "dev": true,
1120
+ "optional": true,
1121
+ "os": [
1122
+ "win32"
1123
+ ],
1124
+ "engines": {
1125
+ "node": ">= 10"
1126
+ }
1127
+ },
1128
+ "node_modules/@tauri-apps/cli-win32-ia32-msvc": {
1129
+ "version": "1.6.0",
1130
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.6.0.tgz",
1131
+ "integrity": "sha512-Vtw0yxO9+aEFuhuxQ57ALG43tjECopRimRuKGbtZYDCriB/ty5TrT3QWMdy0dxBkpDTu3Rqsz30sbDzw6tlP3Q==",
1132
+ "cpu": [
1133
+ "ia32"
1134
+ ],
1135
+ "dev": true,
1136
+ "optional": true,
1137
+ "os": [
1138
+ "win32"
1139
+ ],
1140
+ "engines": {
1141
+ "node": ">= 10"
1142
+ }
1143
+ },
1144
+ "node_modules/@tauri-apps/cli-win32-x64-msvc": {
1145
+ "version": "1.6.0",
1146
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.6.0.tgz",
1147
+ "integrity": "sha512-h54FHOvGi7+LIfRchzgZYSCHB1HDlP599vWXQQJ/XnwJY+6Rwr2E5bOe/EhqoG8rbGkfK0xX3KPAvXPbUlmggg==",
1148
+ "cpu": [
1149
+ "x64"
1150
+ ],
1151
+ "dev": true,
1152
+ "optional": true,
1153
+ "os": [
1154
+ "win32"
1155
+ ],
1156
+ "engines": {
1157
+ "node": ">= 10"
1158
+ }
1159
+ },
1160
+ "node_modules/@types/estree": {
1161
+ "version": "1.0.5",
1162
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/estree/-/estree-1.0.5.tgz",
1163
+ "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
1164
+ "peer": true
1165
+ },
1166
+ "node_modules/@types/json5": {
1167
+ "version": "0.0.29",
1168
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/json5/-/json5-0.0.29.tgz",
1169
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
1170
+ },
1171
+ "node_modules/@types/node": {
1172
+ "version": "18.17.0",
1173
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/node/-/node-18.17.0.tgz",
1174
+ "integrity": "sha512-GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg=="
1175
+ },
1176
+ "node_modules/@types/prop-types": {
1177
+ "version": "15.7.5",
1178
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
1179
+ "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
1180
+ },
1181
+ "node_modules/@types/react": {
1182
+ "version": "18.2.78",
1183
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/react/-/react-18.2.78.tgz",
1184
+ "integrity": "sha512-qOwdPnnitQY4xKlKayt42q5W5UQrSHjgoXNVEtxeqdITJ99k4VXJOP3vt8Rkm9HmgJpH50UNU+rlqfkfWOqp0A==",
1185
+ "dependencies": {
1186
+ "@types/prop-types": "*",
1187
+ "csstype": "^3.0.2"
1188
+ }
1189
+ },
1190
+ "node_modules/@types/react-dom": {
1191
+ "version": "18.2.25",
1192
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@types/react-dom/-/react-dom-18.2.25.tgz",
1193
+ "integrity": "sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==",
1194
+ "dependencies": {
1195
+ "@types/react": "*"
1196
+ }
1197
+ },
1198
+ "node_modules/@typescript-eslint/parser": {
1199
+ "version": "5.48.2",
1200
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.48.2.tgz",
1201
+ "integrity": "sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw==",
1202
+ "dependencies": {
1203
+ "@typescript-eslint/scope-manager": "5.48.2",
1204
+ "@typescript-eslint/types": "5.48.2",
1205
+ "@typescript-eslint/typescript-estree": "5.48.2",
1206
+ "debug": "^4.3.4"
1207
+ },
1208
+ "engines": {
1209
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1210
+ },
1211
+ "funding": {
1212
+ "type": "opencollective",
1213
+ "url": "https://opencollective.com/typescript-eslint"
1214
+ },
1215
+ "peerDependencies": {
1216
+ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
1217
+ },
1218
+ "peerDependenciesMeta": {
1219
+ "typescript": {
1220
+ "optional": true
1221
+ }
1222
+ }
1223
+ },
1224
+ "node_modules/@typescript-eslint/scope-manager": {
1225
+ "version": "5.48.2",
1226
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz",
1227
+ "integrity": "sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==",
1228
+ "dependencies": {
1229
+ "@typescript-eslint/types": "5.48.2",
1230
+ "@typescript-eslint/visitor-keys": "5.48.2"
1231
+ },
1232
+ "engines": {
1233
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1234
+ },
1235
+ "funding": {
1236
+ "type": "opencollective",
1237
+ "url": "https://opencollective.com/typescript-eslint"
1238
+ }
1239
+ },
1240
+ "node_modules/@typescript-eslint/types": {
1241
+ "version": "5.48.2",
1242
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.2.tgz",
1243
+ "integrity": "sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==",
1244
+ "engines": {
1245
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1246
+ },
1247
+ "funding": {
1248
+ "type": "opencollective",
1249
+ "url": "https://opencollective.com/typescript-eslint"
1250
+ }
1251
+ },
1252
+ "node_modules/@typescript-eslint/typescript-estree": {
1253
+ "version": "5.48.2",
1254
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz",
1255
+ "integrity": "sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==",
1256
+ "dependencies": {
1257
+ "@typescript-eslint/types": "5.48.2",
1258
+ "@typescript-eslint/visitor-keys": "5.48.2",
1259
+ "debug": "^4.3.4",
1260
+ "globby": "^11.1.0",
1261
+ "is-glob": "^4.0.3",
1262
+ "semver": "^7.3.7",
1263
+ "tsutils": "^3.21.0"
1264
+ },
1265
+ "engines": {
1266
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1267
+ },
1268
+ "funding": {
1269
+ "type": "opencollective",
1270
+ "url": "https://opencollective.com/typescript-eslint"
1271
+ },
1272
+ "peerDependenciesMeta": {
1273
+ "typescript": {
1274
+ "optional": true
1275
+ }
1276
+ }
1277
+ },
1278
+ "node_modules/@typescript-eslint/visitor-keys": {
1279
+ "version": "5.48.2",
1280
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz",
1281
+ "integrity": "sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==",
1282
+ "dependencies": {
1283
+ "@typescript-eslint/types": "5.48.2",
1284
+ "eslint-visitor-keys": "^3.3.0"
1285
+ },
1286
+ "engines": {
1287
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1288
+ },
1289
+ "funding": {
1290
+ "type": "opencollective",
1291
+ "url": "https://opencollective.com/typescript-eslint"
1292
+ }
1293
+ },
1294
+ "node_modules/@vue/compiler-core": {
1295
+ "version": "3.4.23",
1296
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-core/-/compiler-core-3.4.23.tgz",
1297
+ "integrity": "sha512-HAFmuVEwNqNdmk+w4VCQ2pkLk1Vw4XYiiyxEp3z/xvl14aLTUBw2OfVH3vBcx+FtGsynQLkkhK410Nah1N2yyQ==",
1298
+ "peer": true,
1299
+ "dependencies": {
1300
+ "@babel/parser": "^7.24.1",
1301
+ "@vue/shared": "3.4.23",
1302
+ "entities": "^4.5.0",
1303
+ "estree-walker": "^2.0.2",
1304
+ "source-map-js": "^1.2.0"
1305
+ }
1306
+ },
1307
+ "node_modules/@vue/compiler-core/node_modules/estree-walker": {
1308
+ "version": "2.0.2",
1309
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/estree-walker/-/estree-walker-2.0.2.tgz",
1310
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1311
+ "peer": true
1312
+ },
1313
+ "node_modules/@vue/compiler-dom": {
1314
+ "version": "3.4.23",
1315
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-dom/-/compiler-dom-3.4.23.tgz",
1316
+ "integrity": "sha512-t0b9WSTnCRrzsBGrDd1LNR5HGzYTr7LX3z6nNBG+KGvZLqrT0mY6NsMzOqlVMBKKXKVuusbbB5aOOFgTY+senw==",
1317
+ "peer": true,
1318
+ "dependencies": {
1319
+ "@vue/compiler-core": "3.4.23",
1320
+ "@vue/shared": "3.4.23"
1321
+ }
1322
+ },
1323
+ "node_modules/@vue/compiler-sfc": {
1324
+ "version": "3.4.23",
1325
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-sfc/-/compiler-sfc-3.4.23.tgz",
1326
+ "integrity": "sha512-fSDTKTfzaRX1kNAUiaj8JB4AokikzStWgHooMhaxyjZerw624L+IAP/fvI4ZwMpwIh8f08PVzEnu4rg8/Npssw==",
1327
+ "peer": true,
1328
+ "dependencies": {
1329
+ "@babel/parser": "^7.24.1",
1330
+ "@vue/compiler-core": "3.4.23",
1331
+ "@vue/compiler-dom": "3.4.23",
1332
+ "@vue/compiler-ssr": "3.4.23",
1333
+ "@vue/shared": "3.4.23",
1334
+ "estree-walker": "^2.0.2",
1335
+ "magic-string": "^0.30.8",
1336
+ "postcss": "^8.4.38",
1337
+ "source-map-js": "^1.2.0"
1338
+ }
1339
+ },
1340
+ "node_modules/@vue/compiler-sfc/node_modules/estree-walker": {
1341
+ "version": "2.0.2",
1342
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/estree-walker/-/estree-walker-2.0.2.tgz",
1343
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1344
+ "peer": true
1345
+ },
1346
+ "node_modules/@vue/compiler-ssr": {
1347
+ "version": "3.4.23",
1348
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/compiler-ssr/-/compiler-ssr-3.4.23.tgz",
1349
+ "integrity": "sha512-hb6Uj2cYs+tfqz71Wj6h3E5t6OKvb4MVcM2Nl5i/z1nv1gjEhw+zYaNOV+Xwn+SSN/VZM0DgANw5TuJfxfezPg==",
1350
+ "peer": true,
1351
+ "dependencies": {
1352
+ "@vue/compiler-dom": "3.4.23",
1353
+ "@vue/shared": "3.4.23"
1354
+ }
1355
+ },
1356
+ "node_modules/@vue/reactivity": {
1357
+ "version": "3.4.23",
1358
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/reactivity/-/reactivity-3.4.23.tgz",
1359
+ "integrity": "sha512-GlXR9PL+23fQ3IqnbSQ8OQKLodjqCyoCrmdLKZk3BP7jN6prWheAfU7a3mrltewTkoBm+N7qMEb372VHIkQRMQ==",
1360
+ "peer": true,
1361
+ "dependencies": {
1362
+ "@vue/shared": "3.4.23"
1363
+ }
1364
+ },
1365
+ "node_modules/@vue/runtime-core": {
1366
+ "version": "3.4.23",
1367
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/runtime-core/-/runtime-core-3.4.23.tgz",
1368
+ "integrity": "sha512-FeQ9MZEXoFzFkFiw9MQQ/FWs3srvrP+SjDKSeRIiQHIhtkzoj0X4rWQlRNHbGuSwLra6pMyjAttwixNMjc/xLw==",
1369
+ "peer": true,
1370
+ "dependencies": {
1371
+ "@vue/reactivity": "3.4.23",
1372
+ "@vue/shared": "3.4.23"
1373
+ }
1374
+ },
1375
+ "node_modules/@vue/runtime-dom": {
1376
+ "version": "3.4.23",
1377
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/runtime-dom/-/runtime-dom-3.4.23.tgz",
1378
+ "integrity": "sha512-RXJFwwykZWBkMiTPSLEWU3kgVLNAfActBfWFlZd0y79FTUxexogd0PLG4HH2LfOktjRxV47Nulygh0JFXe5f9A==",
1379
+ "peer": true,
1380
+ "dependencies": {
1381
+ "@vue/runtime-core": "3.4.23",
1382
+ "@vue/shared": "3.4.23",
1383
+ "csstype": "^3.1.3"
1384
+ }
1385
+ },
1386
+ "node_modules/@vue/server-renderer": {
1387
+ "version": "3.4.23",
1388
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/server-renderer/-/server-renderer-3.4.23.tgz",
1389
+ "integrity": "sha512-LDwGHtnIzvKFNS8dPJ1SSU5Gvm36p2ck8wCZc52fc3k/IfjKcwCyrWEf0Yag/2wTFUBXrqizfhK9c/mC367dXQ==",
1390
+ "peer": true,
1391
+ "dependencies": {
1392
+ "@vue/compiler-ssr": "3.4.23",
1393
+ "@vue/shared": "3.4.23"
1394
+ },
1395
+ "peerDependencies": {
1396
+ "vue": "3.4.23"
1397
+ }
1398
+ },
1399
+ "node_modules/@vue/shared": {
1400
+ "version": "3.4.23",
1401
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/@vue/shared/-/shared-3.4.23.tgz",
1402
+ "integrity": "sha512-wBQ0gvf+SMwsCQOyusNw/GoXPV47WGd1xB5A1Pgzy0sQ3Bi5r5xm3n+92y3gCnB3MWqnRDdvfkRGxhKtbBRNgg==",
1403
+ "peer": true
1404
+ },
1405
+ "node_modules/acorn": {
1406
+ "version": "8.11.3",
1407
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/acorn/-/acorn-8.11.3.tgz",
1408
+ "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
1409
+ "bin": {
1410
+ "acorn": "bin/acorn"
1411
+ },
1412
+ "engines": {
1413
+ "node": ">=0.4.0"
1414
+ }
1415
+ },
1416
+ "node_modules/acorn-jsx": {
1417
+ "version": "5.3.2",
1418
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1419
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1420
+ "peerDependencies": {
1421
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1422
+ }
1423
+ },
1424
+ "node_modules/ai": {
1425
+ "version": "2.2.37",
1426
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/ai/-/ai-2.2.37.tgz",
1427
+ "integrity": "sha512-JIYm5N1muGVqBqWnvkt29FmXhESoO5TcDxw74OE41SsM+uIou6NPDDs0XWb/ABcd1gmp6k5zym64KWMPM2xm0A==",
1428
+ "dependencies": {
1429
+ "eventsource-parser": "1.0.0",
1430
+ "nanoid": "3.3.6",
1431
+ "solid-swr-store": "0.10.7",
1432
+ "sswr": "2.0.0",
1433
+ "swr": "2.2.0",
1434
+ "swr-store": "0.10.6",
1435
+ "swrv": "1.0.4"
1436
+ },
1437
+ "engines": {
1438
+ "node": ">=14.6"
1439
+ },
1440
+ "peerDependencies": {
1441
+ "react": "^18.2.0",
1442
+ "solid-js": "^1.7.7",
1443
+ "svelte": "^3.0.0 || ^4.0.0",
1444
+ "vue": "^3.3.4"
1445
+ },
1446
+ "peerDependenciesMeta": {
1447
+ "react": {
1448
+ "optional": true
1449
+ },
1450
+ "solid-js": {
1451
+ "optional": true
1452
+ },
1453
+ "svelte": {
1454
+ "optional": true
1455
+ },
1456
+ "vue": {
1457
+ "optional": true
1458
+ }
1459
+ }
1460
+ },
1461
+ "node_modules/ai/node_modules/nanoid": {
1462
+ "version": "3.3.6",
1463
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/nanoid/-/nanoid-3.3.6.tgz",
1464
+ "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
1465
+ "bin": {
1466
+ "nanoid": "bin/nanoid.cjs"
1467
+ },
1468
+ "engines": {
1469
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1470
+ }
1471
+ },
1472
+ "node_modules/ajv": {
1473
+ "version": "6.12.6",
1474
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1475
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1476
+ "dependencies": {
1477
+ "fast-deep-equal": "^3.1.1",
1478
+ "fast-json-stable-stringify": "^2.0.0",
1479
+ "json-schema-traverse": "^0.4.1",
1480
+ "uri-js": "^4.2.2"
1481
+ },
1482
+ "funding": {
1483
+ "type": "github",
1484
+ "url": "https://github.com/sponsors/epoberezkin"
1485
+ }
1486
+ },
1487
+ "node_modules/ansi-regex": {
1488
+ "version": "5.0.1",
1489
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1490
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1491
+ "engines": {
1492
+ "node": ">=8"
1493
+ }
1494
+ },
1495
+ "node_modules/ansi-styles": {
1496
+ "version": "4.3.0",
1497
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1498
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1499
+ "dependencies": {
1500
+ "color-convert": "^2.0.1"
1501
+ },
1502
+ "engines": {
1503
+ "node": ">=8"
1504
+ },
1505
+ "funding": {
1506
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1507
+ }
1508
+ },
1509
+ "node_modules/any-promise": {
1510
+ "version": "1.3.0",
1511
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/any-promise/-/any-promise-1.3.0.tgz",
1512
+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
1513
+ "dev": true
1514
+ },
1515
+ "node_modules/anymatch": {
1516
+ "version": "3.1.3",
1517
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/anymatch/-/anymatch-3.1.3.tgz",
1518
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1519
+ "dev": true,
1520
+ "dependencies": {
1521
+ "normalize-path": "^3.0.0",
1522
+ "picomatch": "^2.0.4"
1523
+ },
1524
+ "engines": {
1525
+ "node": ">= 8"
1526
+ }
1527
+ },
1528
+ "node_modules/arg": {
1529
+ "version": "5.0.2",
1530
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/arg/-/arg-5.0.2.tgz",
1531
+ "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
1532
+ "dev": true
1533
+ },
1534
+ "node_modules/argparse": {
1535
+ "version": "2.0.1",
1536
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1537
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
1538
+ },
1539
+ "node_modules/aria-query": {
1540
+ "version": "5.3.0",
1541
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/aria-query/-/aria-query-5.3.0.tgz",
1542
+ "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==",
1543
+ "dependencies": {
1544
+ "dequal": "^2.0.3"
1545
+ }
1546
+ },
1547
+ "node_modules/array-buffer-byte-length": {
1548
+ "version": "1.0.1",
1549
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz",
1550
+ "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==",
1551
+ "dependencies": {
1552
+ "call-bind": "^1.0.5",
1553
+ "is-array-buffer": "^3.0.4"
1554
+ },
1555
+ "engines": {
1556
+ "node": ">= 0.4"
1557
+ }
1558
+ },
1559
+ "node_modules/array-includes": {
1560
+ "version": "3.1.8",
1561
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array-includes/-/array-includes-3.1.8.tgz",
1562
+ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
1563
+ "dependencies": {
1564
+ "call-bind": "^1.0.7",
1565
+ "define-properties": "^1.2.1",
1566
+ "es-abstract": "^1.23.2",
1567
+ "es-object-atoms": "^1.0.0",
1568
+ "get-intrinsic": "^1.2.4",
1569
+ "is-string": "^1.0.7"
1570
+ },
1571
+ "engines": {
1572
+ "node": ">= 0.4"
1573
+ }
1574
+ },
1575
+ "node_modules/array-union": {
1576
+ "version": "2.1.0",
1577
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
1578
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
1579
+ "engines": {
1580
+ "node": ">=8"
1581
+ }
1582
+ },
1583
+ "node_modules/array.prototype.findlast": {
1584
+ "version": "1.2.5",
1585
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
1586
+ "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
1587
+ "dependencies": {
1588
+ "call-bind": "^1.0.7",
1589
+ "define-properties": "^1.2.1",
1590
+ "es-abstract": "^1.23.2",
1591
+ "es-errors": "^1.3.0",
1592
+ "es-object-atoms": "^1.0.0",
1593
+ "es-shim-unscopables": "^1.0.2"
1594
+ },
1595
+ "engines": {
1596
+ "node": ">= 0.4"
1597
+ }
1598
+ },
1599
+ "node_modules/array.prototype.findlastindex": {
1600
+ "version": "1.2.5",
1601
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz",
1602
+ "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
1603
+ "dependencies": {
1604
+ "call-bind": "^1.0.7",
1605
+ "define-properties": "^1.2.1",
1606
+ "es-abstract": "^1.23.2",
1607
+ "es-errors": "^1.3.0",
1608
+ "es-object-atoms": "^1.0.0",
1609
+ "es-shim-unscopables": "^1.0.2"
1610
+ },
1611
+ "engines": {
1612
+ "node": ">= 0.4"
1613
+ }
1614
+ },
1615
+ "node_modules/array.prototype.flat": {
1616
+ "version": "1.3.2",
1617
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz",
1618
+ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==",
1619
+ "dependencies": {
1620
+ "call-bind": "^1.0.2",
1621
+ "define-properties": "^1.2.0",
1622
+ "es-abstract": "^1.22.1",
1623
+ "es-shim-unscopables": "^1.0.0"
1624
+ },
1625
+ "engines": {
1626
+ "node": ">= 0.4"
1627
+ }
1628
+ },
1629
+ "node_modules/array.prototype.flatmap": {
1630
+ "version": "1.3.2",
1631
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz",
1632
+ "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==",
1633
+ "dependencies": {
1634
+ "call-bind": "^1.0.2",
1635
+ "define-properties": "^1.2.0",
1636
+ "es-abstract": "^1.22.1",
1637
+ "es-shim-unscopables": "^1.0.0"
1638
+ },
1639
+ "engines": {
1640
+ "node": ">= 0.4"
1641
+ }
1642
+ },
1643
+ "node_modules/array.prototype.toreversed": {
1644
+ "version": "1.1.2",
1645
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz",
1646
+ "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==",
1647
+ "dependencies": {
1648
+ "call-bind": "^1.0.2",
1649
+ "define-properties": "^1.2.0",
1650
+ "es-abstract": "^1.22.1",
1651
+ "es-shim-unscopables": "^1.0.0"
1652
+ }
1653
+ },
1654
+ "node_modules/array.prototype.tosorted": {
1655
+ "version": "1.1.3",
1656
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz",
1657
+ "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==",
1658
+ "dependencies": {
1659
+ "call-bind": "^1.0.5",
1660
+ "define-properties": "^1.2.1",
1661
+ "es-abstract": "^1.22.3",
1662
+ "es-errors": "^1.1.0",
1663
+ "es-shim-unscopables": "^1.0.2"
1664
+ }
1665
+ },
1666
+ "node_modules/arraybuffer.prototype.slice": {
1667
+ "version": "1.0.3",
1668
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz",
1669
+ "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==",
1670
+ "dependencies": {
1671
+ "array-buffer-byte-length": "^1.0.1",
1672
+ "call-bind": "^1.0.5",
1673
+ "define-properties": "^1.2.1",
1674
+ "es-abstract": "^1.22.3",
1675
+ "es-errors": "^1.2.1",
1676
+ "get-intrinsic": "^1.2.3",
1677
+ "is-array-buffer": "^3.0.4",
1678
+ "is-shared-array-buffer": "^1.0.2"
1679
+ },
1680
+ "engines": {
1681
+ "node": ">= 0.4"
1682
+ }
1683
+ },
1684
+ "node_modules/ast-types-flow": {
1685
+ "version": "0.0.7",
1686
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
1687
+ "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
1688
+ },
1689
+ "node_modules/autoprefixer": {
1690
+ "version": "10.4.19",
1691
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/autoprefixer/-/autoprefixer-10.4.19.tgz",
1692
+ "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==",
1693
+ "dev": true,
1694
+ "dependencies": {
1695
+ "browserslist": "^4.23.0",
1696
+ "caniuse-lite": "^1.0.30001599",
1697
+ "fraction.js": "^4.3.7",
1698
+ "normalize-range": "^0.1.2",
1699
+ "picocolors": "^1.0.0",
1700
+ "postcss-value-parser": "^4.2.0"
1701
+ },
1702
+ "bin": {
1703
+ "autoprefixer": "bin/autoprefixer"
1704
+ },
1705
+ "engines": {
1706
+ "node": "^10 || ^12 || >=14"
1707
+ },
1708
+ "peerDependencies": {
1709
+ "postcss": "^8.1.0"
1710
+ }
1711
+ },
1712
+ "node_modules/available-typed-arrays": {
1713
+ "version": "1.0.7",
1714
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
1715
+ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
1716
+ "dependencies": {
1717
+ "possible-typed-array-names": "^1.0.0"
1718
+ },
1719
+ "engines": {
1720
+ "node": ">= 0.4"
1721
+ }
1722
+ },
1723
+ "node_modules/axe-core": {
1724
+ "version": "4.6.2",
1725
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.2.tgz",
1726
+ "integrity": "sha512-b1WlTV8+XKLj9gZy2DZXgQiyDp9xkkoe2a6U6UbYccScq2wgH/YwCeI2/Jq2mgo0HzQxqJOjWZBLeA/mqsk5Mg==",
1727
+ "engines": {
1728
+ "node": ">=4"
1729
+ }
1730
+ },
1731
+ "node_modules/axobject-query": {
1732
+ "version": "3.1.1",
1733
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
1734
+ "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
1735
+ "dependencies": {
1736
+ "deep-equal": "^2.0.5"
1737
+ }
1738
+ },
1739
+ "node_modules/balanced-match": {
1740
+ "version": "1.0.2",
1741
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1742
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
1743
+ },
1744
+ "node_modules/binary-extensions": {
1745
+ "version": "2.3.0",
1746
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/binary-extensions/-/binary-extensions-2.3.0.tgz",
1747
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
1748
+ "dev": true,
1749
+ "engines": {
1750
+ "node": ">=8"
1751
+ }
1752
+ },
1753
+ "node_modules/brace-expansion": {
1754
+ "version": "1.1.11",
1755
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1756
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1757
+ "dependencies": {
1758
+ "balanced-match": "^1.0.0",
1759
+ "concat-map": "0.0.1"
1760
+ }
1761
+ },
1762
+ "node_modules/braces": {
1763
+ "version": "3.0.3",
1764
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1765
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1766
+ "dependencies": {
1767
+ "fill-range": "^7.1.1"
1768
+ },
1769
+ "engines": {
1770
+ "node": ">=8"
1771
+ }
1772
+ },
1773
+ "node_modules/browserslist": {
1774
+ "version": "4.23.0",
1775
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/browserslist/-/browserslist-4.23.0.tgz",
1776
+ "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==",
1777
+ "dev": true,
1778
+ "dependencies": {
1779
+ "caniuse-lite": "^1.0.30001587",
1780
+ "electron-to-chromium": "^1.4.668",
1781
+ "node-releases": "^2.0.14",
1782
+ "update-browserslist-db": "^1.0.13"
1783
+ },
1784
+ "bin": {
1785
+ "browserslist": "cli.js"
1786
+ },
1787
+ "engines": {
1788
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1789
+ }
1790
+ },
1791
+ "node_modules/busboy": {
1792
+ "version": "1.6.0",
1793
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/busboy/-/busboy-1.6.0.tgz",
1794
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
1795
+ "dependencies": {
1796
+ "streamsearch": "^1.1.0"
1797
+ },
1798
+ "engines": {
1799
+ "node": ">=10.16.0"
1800
+ }
1801
+ },
1802
+ "node_modules/call-bind": {
1803
+ "version": "1.0.7",
1804
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/call-bind/-/call-bind-1.0.7.tgz",
1805
+ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
1806
+ "dependencies": {
1807
+ "es-define-property": "^1.0.0",
1808
+ "es-errors": "^1.3.0",
1809
+ "function-bind": "^1.1.2",
1810
+ "get-intrinsic": "^1.2.4",
1811
+ "set-function-length": "^1.2.1"
1812
+ },
1813
+ "engines": {
1814
+ "node": ">= 0.4"
1815
+ }
1816
+ },
1817
+ "node_modules/callsites": {
1818
+ "version": "3.1.0",
1819
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1820
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1821
+ "engines": {
1822
+ "node": ">=6"
1823
+ }
1824
+ },
1825
+ "node_modules/camelcase-css": {
1826
+ "version": "2.0.1",
1827
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/camelcase-css/-/camelcase-css-2.0.1.tgz",
1828
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
1829
+ "dev": true,
1830
+ "engines": {
1831
+ "node": ">= 6"
1832
+ }
1833
+ },
1834
+ "node_modules/caniuse-lite": {
1835
+ "version": "1.0.30001609",
1836
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/caniuse-lite/-/caniuse-lite-1.0.30001609.tgz",
1837
+ "integrity": "sha512-JFPQs34lHKx1B5t1EpQpWH4c+29zIyn/haGsbpfq3suuV9v56enjFt23zqijxGTMwy1p/4H2tjnQMY+p1WoAyA=="
1838
+ },
1839
+ "node_modules/chalk": {
1840
+ "version": "4.1.2",
1841
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1842
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1843
+ "dependencies": {
1844
+ "ansi-styles": "^4.1.0",
1845
+ "supports-color": "^7.1.0"
1846
+ },
1847
+ "engines": {
1848
+ "node": ">=10"
1849
+ },
1850
+ "funding": {
1851
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1852
+ }
1853
+ },
1854
+ "node_modules/chokidar": {
1855
+ "version": "3.6.0",
1856
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/chokidar/-/chokidar-3.6.0.tgz",
1857
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
1858
+ "dev": true,
1859
+ "dependencies": {
1860
+ "anymatch": "~3.1.2",
1861
+ "braces": "~3.0.2",
1862
+ "glob-parent": "~5.1.2",
1863
+ "is-binary-path": "~2.1.0",
1864
+ "is-glob": "~4.0.1",
1865
+ "normalize-path": "~3.0.0",
1866
+ "readdirp": "~3.6.0"
1867
+ },
1868
+ "engines": {
1869
+ "node": ">= 8.10.0"
1870
+ },
1871
+ "optionalDependencies": {
1872
+ "fsevents": "~2.3.2"
1873
+ }
1874
+ },
1875
+ "node_modules/chokidar/node_modules/glob-parent": {
1876
+ "version": "5.1.2",
1877
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/glob-parent/-/glob-parent-5.1.2.tgz",
1878
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1879
+ "dev": true,
1880
+ "dependencies": {
1881
+ "is-glob": "^4.0.1"
1882
+ },
1883
+ "engines": {
1884
+ "node": ">= 6"
1885
+ }
1886
+ },
1887
+ "node_modules/class-variance-authority": {
1888
+ "version": "0.7.0",
1889
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/class-variance-authority/-/class-variance-authority-0.7.0.tgz",
1890
+ "integrity": "sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==",
1891
+ "dependencies": {
1892
+ "clsx": "2.0.0"
1893
+ }
1894
+ },
1895
+ "node_modules/class-variance-authority/node_modules/clsx": {
1896
+ "version": "2.0.0",
1897
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/clsx/-/clsx-2.0.0.tgz",
1898
+ "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==",
1899
+ "engines": {
1900
+ "node": ">=6"
1901
+ }
1902
+ },
1903
+ "node_modules/client-only": {
1904
+ "version": "0.0.1",
1905
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1906
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
1907
+ },
1908
+ "node_modules/clsx": {
1909
+ "version": "1.2.1",
1910
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/clsx/-/clsx-1.2.1.tgz",
1911
+ "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
1912
+ "engines": {
1913
+ "node": ">=6"
1914
+ }
1915
+ },
1916
+ "node_modules/code-red": {
1917
+ "version": "1.0.4",
1918
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/code-red/-/code-red-1.0.4.tgz",
1919
+ "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==",
1920
+ "peer": true,
1921
+ "dependencies": {
1922
+ "@jridgewell/sourcemap-codec": "^1.4.15",
1923
+ "@types/estree": "^1.0.1",
1924
+ "acorn": "^8.10.0",
1925
+ "estree-walker": "^3.0.3",
1926
+ "periscopic": "^3.1.0"
1927
+ }
1928
+ },
1929
+ "node_modules/color-convert": {
1930
+ "version": "2.0.1",
1931
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1932
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1933
+ "dependencies": {
1934
+ "color-name": "~1.1.4"
1935
+ },
1936
+ "engines": {
1937
+ "node": ">=7.0.0"
1938
+ }
1939
+ },
1940
+ "node_modules/color-name": {
1941
+ "version": "1.1.4",
1942
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1943
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
1944
+ },
1945
+ "node_modules/commander": {
1946
+ "version": "4.1.1",
1947
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/commander/-/commander-4.1.1.tgz",
1948
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
1949
+ "dev": true,
1950
+ "engines": {
1951
+ "node": ">= 6"
1952
+ }
1953
+ },
1954
+ "node_modules/concat-map": {
1955
+ "version": "0.0.1",
1956
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1957
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
1958
+ },
1959
+ "node_modules/cross-spawn": {
1960
+ "version": "7.0.3",
1961
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1962
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1963
+ "dependencies": {
1964
+ "path-key": "^3.1.0",
1965
+ "shebang-command": "^2.0.0",
1966
+ "which": "^2.0.1"
1967
+ },
1968
+ "engines": {
1969
+ "node": ">= 8"
1970
+ }
1971
+ },
1972
+ "node_modules/css-tree": {
1973
+ "version": "2.3.1",
1974
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/css-tree/-/css-tree-2.3.1.tgz",
1975
+ "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
1976
+ "peer": true,
1977
+ "dependencies": {
1978
+ "mdn-data": "2.0.30",
1979
+ "source-map-js": "^1.0.1"
1980
+ },
1981
+ "engines": {
1982
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
1983
+ }
1984
+ },
1985
+ "node_modules/cssesc": {
1986
+ "version": "3.0.0",
1987
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/cssesc/-/cssesc-3.0.0.tgz",
1988
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1989
+ "dev": true,
1990
+ "bin": {
1991
+ "cssesc": "bin/cssesc"
1992
+ },
1993
+ "engines": {
1994
+ "node": ">=4"
1995
+ }
1996
+ },
1997
+ "node_modules/csstype": {
1998
+ "version": "3.1.3",
1999
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/csstype/-/csstype-3.1.3.tgz",
2000
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
2001
+ },
2002
+ "node_modules/damerau-levenshtein": {
2003
+ "version": "1.0.8",
2004
+ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
2005
+ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
2006
+ },
2007
+ "node_modules/data-view-buffer": {
2008
+ "version": "1.0.1",
2009
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/data-view-buffer/-/data-view-buffer-1.0.1.tgz",
2010
+ "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==",
2011
+ "dependencies": {
2012
+ "call-bind": "^1.0.6",
2013
+ "es-errors": "^1.3.0",
2014
+ "is-data-view": "^1.0.1"
2015
+ },
2016
+ "engines": {
2017
+ "node": ">= 0.4"
2018
+ }
2019
+ },
2020
+ "node_modules/data-view-byte-length": {
2021
+ "version": "1.0.1",
2022
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz",
2023
+ "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==",
2024
+ "dependencies": {
2025
+ "call-bind": "^1.0.7",
2026
+ "es-errors": "^1.3.0",
2027
+ "is-data-view": "^1.0.1"
2028
+ },
2029
+ "engines": {
2030
+ "node": ">= 0.4"
2031
+ }
2032
+ },
2033
+ "node_modules/data-view-byte-offset": {
2034
+ "version": "1.0.0",
2035
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz",
2036
+ "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==",
2037
+ "dependencies": {
2038
+ "call-bind": "^1.0.6",
2039
+ "es-errors": "^1.3.0",
2040
+ "is-data-view": "^1.0.1"
2041
+ },
2042
+ "engines": {
2043
+ "node": ">= 0.4"
2044
+ }
2045
+ },
2046
+ "node_modules/debug": {
2047
+ "version": "4.3.4",
2048
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
2049
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
2050
+ "dependencies": {
2051
+ "ms": "2.1.2"
2052
+ },
2053
+ "engines": {
2054
+ "node": ">=6.0"
2055
+ },
2056
+ "peerDependenciesMeta": {
2057
+ "supports-color": {
2058
+ "optional": true
2059
+ }
2060
+ }
2061
+ },
2062
+ "node_modules/deep-equal": {
2063
+ "version": "2.2.0",
2064
+ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz",
2065
+ "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==",
2066
+ "dependencies": {
2067
+ "call-bind": "^1.0.2",
2068
+ "es-get-iterator": "^1.1.2",
2069
+ "get-intrinsic": "^1.1.3",
2070
+ "is-arguments": "^1.1.1",
2071
+ "is-array-buffer": "^3.0.1",
2072
+ "is-date-object": "^1.0.5",
2073
+ "is-regex": "^1.1.4",
2074
+ "is-shared-array-buffer": "^1.0.2",
2075
+ "isarray": "^2.0.5",
2076
+ "object-is": "^1.1.5",
2077
+ "object-keys": "^1.1.1",
2078
+ "object.assign": "^4.1.4",
2079
+ "regexp.prototype.flags": "^1.4.3",
2080
+ "side-channel": "^1.0.4",
2081
+ "which-boxed-primitive": "^1.0.2",
2082
+ "which-collection": "^1.0.1",
2083
+ "which-typed-array": "^1.1.9"
2084
+ },
2085
+ "funding": {
2086
+ "url": "https://github.com/sponsors/ljharb"
2087
+ }
2088
+ },
2089
+ "node_modules/deep-is": {
2090
+ "version": "0.1.4",
2091
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
2092
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
2093
+ },
2094
+ "node_modules/define-data-property": {
2095
+ "version": "1.1.4",
2096
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/define-data-property/-/define-data-property-1.1.4.tgz",
2097
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
2098
+ "dependencies": {
2099
+ "es-define-property": "^1.0.0",
2100
+ "es-errors": "^1.3.0",
2101
+ "gopd": "^1.0.1"
2102
+ },
2103
+ "engines": {
2104
+ "node": ">= 0.4"
2105
+ }
2106
+ },
2107
+ "node_modules/define-lazy-prop": {
2108
+ "version": "2.0.0",
2109
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
2110
+ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
2111
+ "engines": {
2112
+ "node": ">=8"
2113
+ }
2114
+ },
2115
+ "node_modules/define-properties": {
2116
+ "version": "1.2.1",
2117
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/define-properties/-/define-properties-1.2.1.tgz",
2118
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
2119
+ "dependencies": {
2120
+ "define-data-property": "^1.0.1",
2121
+ "has-property-descriptors": "^1.0.0",
2122
+ "object-keys": "^1.1.1"
2123
+ },
2124
+ "engines": {
2125
+ "node": ">= 0.4"
2126
+ }
2127
+ },
2128
+ "node_modules/dequal": {
2129
+ "version": "2.0.3",
2130
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/dequal/-/dequal-2.0.3.tgz",
2131
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
2132
+ "engines": {
2133
+ "node": ">=6"
2134
+ }
2135
+ },
2136
+ "node_modules/didyoumean": {
2137
+ "version": "1.2.2",
2138
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/didyoumean/-/didyoumean-1.2.2.tgz",
2139
+ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
2140
+ "dev": true
2141
+ },
2142
+ "node_modules/dir-glob": {
2143
+ "version": "3.0.1",
2144
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
2145
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
2146
+ "dependencies": {
2147
+ "path-type": "^4.0.0"
2148
+ },
2149
+ "engines": {
2150
+ "node": ">=8"
2151
+ }
2152
+ },
2153
+ "node_modules/dlv": {
2154
+ "version": "1.1.3",
2155
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/dlv/-/dlv-1.1.3.tgz",
2156
+ "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
2157
+ "dev": true
2158
+ },
2159
+ "node_modules/doctrine": {
2160
+ "version": "3.0.0",
2161
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
2162
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
2163
+ "dependencies": {
2164
+ "esutils": "^2.0.2"
2165
+ },
2166
+ "engines": {
2167
+ "node": ">=6.0.0"
2168
+ }
2169
+ },
2170
+ "node_modules/eastasianwidth": {
2171
+ "version": "0.2.0",
2172
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
2173
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
2174
+ },
2175
+ "node_modules/electron-to-chromium": {
2176
+ "version": "1.4.736",
2177
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/electron-to-chromium/-/electron-to-chromium-1.4.736.tgz",
2178
+ "integrity": "sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q==",
2179
+ "dev": true
2180
+ },
2181
+ "node_modules/emoji-regex": {
2182
+ "version": "9.2.2",
2183
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
2184
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
2185
+ },
2186
+ "node_modules/enhanced-resolve": {
2187
+ "version": "5.12.0",
2188
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
2189
+ "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
2190
+ "dependencies": {
2191
+ "graceful-fs": "^4.2.4",
2192
+ "tapable": "^2.2.0"
2193
+ },
2194
+ "engines": {
2195
+ "node": ">=10.13.0"
2196
+ }
2197
+ },
2198
+ "node_modules/entities": {
2199
+ "version": "4.5.0",
2200
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/entities/-/entities-4.5.0.tgz",
2201
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
2202
+ "peer": true,
2203
+ "engines": {
2204
+ "node": ">=0.12"
2205
+ }
2206
+ },
2207
+ "node_modules/es-abstract": {
2208
+ "version": "1.23.3",
2209
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-abstract/-/es-abstract-1.23.3.tgz",
2210
+ "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==",
2211
+ "dependencies": {
2212
+ "array-buffer-byte-length": "^1.0.1",
2213
+ "arraybuffer.prototype.slice": "^1.0.3",
2214
+ "available-typed-arrays": "^1.0.7",
2215
+ "call-bind": "^1.0.7",
2216
+ "data-view-buffer": "^1.0.1",
2217
+ "data-view-byte-length": "^1.0.1",
2218
+ "data-view-byte-offset": "^1.0.0",
2219
+ "es-define-property": "^1.0.0",
2220
+ "es-errors": "^1.3.0",
2221
+ "es-object-atoms": "^1.0.0",
2222
+ "es-set-tostringtag": "^2.0.3",
2223
+ "es-to-primitive": "^1.2.1",
2224
+ "function.prototype.name": "^1.1.6",
2225
+ "get-intrinsic": "^1.2.4",
2226
+ "get-symbol-description": "^1.0.2",
2227
+ "globalthis": "^1.0.3",
2228
+ "gopd": "^1.0.1",
2229
+ "has-property-descriptors": "^1.0.2",
2230
+ "has-proto": "^1.0.3",
2231
+ "has-symbols": "^1.0.3",
2232
+ "hasown": "^2.0.2",
2233
+ "internal-slot": "^1.0.7",
2234
+ "is-array-buffer": "^3.0.4",
2235
+ "is-callable": "^1.2.7",
2236
+ "is-data-view": "^1.0.1",
2237
+ "is-negative-zero": "^2.0.3",
2238
+ "is-regex": "^1.1.4",
2239
+ "is-shared-array-buffer": "^1.0.3",
2240
+ "is-string": "^1.0.7",
2241
+ "is-typed-array": "^1.1.13",
2242
+ "is-weakref": "^1.0.2",
2243
+ "object-inspect": "^1.13.1",
2244
+ "object-keys": "^1.1.1",
2245
+ "object.assign": "^4.1.5",
2246
+ "regexp.prototype.flags": "^1.5.2",
2247
+ "safe-array-concat": "^1.1.2",
2248
+ "safe-regex-test": "^1.0.3",
2249
+ "string.prototype.trim": "^1.2.9",
2250
+ "string.prototype.trimend": "^1.0.8",
2251
+ "string.prototype.trimstart": "^1.0.8",
2252
+ "typed-array-buffer": "^1.0.2",
2253
+ "typed-array-byte-length": "^1.0.1",
2254
+ "typed-array-byte-offset": "^1.0.2",
2255
+ "typed-array-length": "^1.0.6",
2256
+ "unbox-primitive": "^1.0.2",
2257
+ "which-typed-array": "^1.1.15"
2258
+ },
2259
+ "engines": {
2260
+ "node": ">= 0.4"
2261
+ }
2262
+ },
2263
+ "node_modules/es-define-property": {
2264
+ "version": "1.0.0",
2265
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-define-property/-/es-define-property-1.0.0.tgz",
2266
+ "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
2267
+ "dependencies": {
2268
+ "get-intrinsic": "^1.2.4"
2269
+ },
2270
+ "engines": {
2271
+ "node": ">= 0.4"
2272
+ }
2273
+ },
2274
+ "node_modules/es-errors": {
2275
+ "version": "1.3.0",
2276
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-errors/-/es-errors-1.3.0.tgz",
2277
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
2278
+ "engines": {
2279
+ "node": ">= 0.4"
2280
+ }
2281
+ },
2282
+ "node_modules/es-get-iterator": {
2283
+ "version": "1.1.3",
2284
+ "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz",
2285
+ "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==",
2286
+ "dependencies": {
2287
+ "call-bind": "^1.0.2",
2288
+ "get-intrinsic": "^1.1.3",
2289
+ "has-symbols": "^1.0.3",
2290
+ "is-arguments": "^1.1.1",
2291
+ "is-map": "^2.0.2",
2292
+ "is-set": "^2.0.2",
2293
+ "is-string": "^1.0.7",
2294
+ "isarray": "^2.0.5",
2295
+ "stop-iteration-iterator": "^1.0.0"
2296
+ },
2297
+ "funding": {
2298
+ "url": "https://github.com/sponsors/ljharb"
2299
+ }
2300
+ },
2301
+ "node_modules/es-iterator-helpers": {
2302
+ "version": "1.0.18",
2303
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz",
2304
+ "integrity": "sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==",
2305
+ "dependencies": {
2306
+ "call-bind": "^1.0.7",
2307
+ "define-properties": "^1.2.1",
2308
+ "es-abstract": "^1.23.0",
2309
+ "es-errors": "^1.3.0",
2310
+ "es-set-tostringtag": "^2.0.3",
2311
+ "function-bind": "^1.1.2",
2312
+ "get-intrinsic": "^1.2.4",
2313
+ "globalthis": "^1.0.3",
2314
+ "has-property-descriptors": "^1.0.2",
2315
+ "has-proto": "^1.0.3",
2316
+ "has-symbols": "^1.0.3",
2317
+ "internal-slot": "^1.0.7",
2318
+ "iterator.prototype": "^1.1.2",
2319
+ "safe-array-concat": "^1.1.2"
2320
+ },
2321
+ "engines": {
2322
+ "node": ">= 0.4"
2323
+ }
2324
+ },
2325
+ "node_modules/es-object-atoms": {
2326
+ "version": "1.0.0",
2327
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
2328
+ "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
2329
+ "dependencies": {
2330
+ "es-errors": "^1.3.0"
2331
+ },
2332
+ "engines": {
2333
+ "node": ">= 0.4"
2334
+ }
2335
+ },
2336
+ "node_modules/es-set-tostringtag": {
2337
+ "version": "2.0.3",
2338
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz",
2339
+ "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==",
2340
+ "dependencies": {
2341
+ "get-intrinsic": "^1.2.4",
2342
+ "has-tostringtag": "^1.0.2",
2343
+ "hasown": "^2.0.1"
2344
+ },
2345
+ "engines": {
2346
+ "node": ">= 0.4"
2347
+ }
2348
+ },
2349
+ "node_modules/es-shim-unscopables": {
2350
+ "version": "1.0.2",
2351
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
2352
+ "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
2353
+ "dependencies": {
2354
+ "hasown": "^2.0.0"
2355
+ }
2356
+ },
2357
+ "node_modules/es-to-primitive": {
2358
+ "version": "1.2.1",
2359
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
2360
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
2361
+ "dependencies": {
2362
+ "is-callable": "^1.1.4",
2363
+ "is-date-object": "^1.0.1",
2364
+ "is-symbol": "^1.0.2"
2365
+ },
2366
+ "engines": {
2367
+ "node": ">= 0.4"
2368
+ },
2369
+ "funding": {
2370
+ "url": "https://github.com/sponsors/ljharb"
2371
+ }
2372
+ },
2373
+ "node_modules/escalade": {
2374
+ "version": "3.1.2",
2375
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/escalade/-/escalade-3.1.2.tgz",
2376
+ "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==",
2377
+ "dev": true,
2378
+ "engines": {
2379
+ "node": ">=6"
2380
+ }
2381
+ },
2382
+ "node_modules/escape-string-regexp": {
2383
+ "version": "4.0.0",
2384
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
2385
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
2386
+ "engines": {
2387
+ "node": ">=10"
2388
+ },
2389
+ "funding": {
2390
+ "url": "https://github.com/sponsors/sindresorhus"
2391
+ }
2392
+ },
2393
+ "node_modules/eslint": {
2394
+ "version": "8.32.0",
2395
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.32.0.tgz",
2396
+ "integrity": "sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==",
2397
+ "dependencies": {
2398
+ "@eslint/eslintrc": "^1.4.1",
2399
+ "@humanwhocodes/config-array": "^0.11.8",
2400
+ "@humanwhocodes/module-importer": "^1.0.1",
2401
+ "@nodelib/fs.walk": "^1.2.8",
2402
+ "ajv": "^6.10.0",
2403
+ "chalk": "^4.0.0",
2404
+ "cross-spawn": "^7.0.2",
2405
+ "debug": "^4.3.2",
2406
+ "doctrine": "^3.0.0",
2407
+ "escape-string-regexp": "^4.0.0",
2408
+ "eslint-scope": "^7.1.1",
2409
+ "eslint-utils": "^3.0.0",
2410
+ "eslint-visitor-keys": "^3.3.0",
2411
+ "espree": "^9.4.0",
2412
+ "esquery": "^1.4.0",
2413
+ "esutils": "^2.0.2",
2414
+ "fast-deep-equal": "^3.1.3",
2415
+ "file-entry-cache": "^6.0.1",
2416
+ "find-up": "^5.0.0",
2417
+ "glob-parent": "^6.0.2",
2418
+ "globals": "^13.19.0",
2419
+ "grapheme-splitter": "^1.0.4",
2420
+ "ignore": "^5.2.0",
2421
+ "import-fresh": "^3.0.0",
2422
+ "imurmurhash": "^0.1.4",
2423
+ "is-glob": "^4.0.0",
2424
+ "is-path-inside": "^3.0.3",
2425
+ "js-sdsl": "^4.1.4",
2426
+ "js-yaml": "^4.1.0",
2427
+ "json-stable-stringify-without-jsonify": "^1.0.1",
2428
+ "levn": "^0.4.1",
2429
+ "lodash.merge": "^4.6.2",
2430
+ "minimatch": "^3.1.2",
2431
+ "natural-compare": "^1.4.0",
2432
+ "optionator": "^0.9.1",
2433
+ "regexpp": "^3.2.0",
2434
+ "strip-ansi": "^6.0.1",
2435
+ "strip-json-comments": "^3.1.0",
2436
+ "text-table": "^0.2.0"
2437
+ },
2438
+ "bin": {
2439
+ "eslint": "bin/eslint.js"
2440
+ },
2441
+ "engines": {
2442
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2443
+ },
2444
+ "funding": {
2445
+ "url": "https://opencollective.com/eslint"
2446
+ }
2447
+ },
2448
+ "node_modules/eslint-config-next": {
2449
+ "version": "14.1.0",
2450
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-config-next/-/eslint-config-next-14.1.0.tgz",
2451
+ "integrity": "sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==",
2452
+ "dependencies": {
2453
+ "@next/eslint-plugin-next": "14.1.0",
2454
+ "@rushstack/eslint-patch": "^1.3.3",
2455
+ "@typescript-eslint/parser": "^5.4.2 || ^6.0.0",
2456
+ "eslint-import-resolver-node": "^0.3.6",
2457
+ "eslint-import-resolver-typescript": "^3.5.2",
2458
+ "eslint-plugin-import": "^2.28.1",
2459
+ "eslint-plugin-jsx-a11y": "^6.7.1",
2460
+ "eslint-plugin-react": "^7.33.2",
2461
+ "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
2462
+ },
2463
+ "peerDependencies": {
2464
+ "eslint": "^7.23.0 || ^8.0.0",
2465
+ "typescript": ">=3.3.1"
2466
+ },
2467
+ "peerDependenciesMeta": {
2468
+ "typescript": {
2469
+ "optional": true
2470
+ }
2471
+ }
2472
+ },
2473
+ "node_modules/eslint-import-resolver-node": {
2474
+ "version": "0.3.9",
2475
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
2476
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
2477
+ "dependencies": {
2478
+ "debug": "^3.2.7",
2479
+ "is-core-module": "^2.13.0",
2480
+ "resolve": "^1.22.4"
2481
+ }
2482
+ },
2483
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
2484
+ "version": "3.2.7",
2485
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
2486
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
2487
+ "dependencies": {
2488
+ "ms": "^2.1.1"
2489
+ }
2490
+ },
2491
+ "node_modules/eslint-import-resolver-typescript": {
2492
+ "version": "3.5.3",
2493
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz",
2494
+ "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==",
2495
+ "dependencies": {
2496
+ "debug": "^4.3.4",
2497
+ "enhanced-resolve": "^5.10.0",
2498
+ "get-tsconfig": "^4.2.0",
2499
+ "globby": "^13.1.2",
2500
+ "is-core-module": "^2.10.0",
2501
+ "is-glob": "^4.0.3",
2502
+ "synckit": "^0.8.4"
2503
+ },
2504
+ "engines": {
2505
+ "node": "^14.18.0 || >=16.0.0"
2506
+ },
2507
+ "funding": {
2508
+ "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
2509
+ },
2510
+ "peerDependencies": {
2511
+ "eslint": "*",
2512
+ "eslint-plugin-import": "*"
2513
+ }
2514
+ },
2515
+ "node_modules/eslint-import-resolver-typescript/node_modules/globby": {
2516
+ "version": "13.1.3",
2517
+ "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz",
2518
+ "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==",
2519
+ "dependencies": {
2520
+ "dir-glob": "^3.0.1",
2521
+ "fast-glob": "^3.2.11",
2522
+ "ignore": "^5.2.0",
2523
+ "merge2": "^1.4.1",
2524
+ "slash": "^4.0.0"
2525
+ },
2526
+ "engines": {
2527
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2528
+ },
2529
+ "funding": {
2530
+ "url": "https://github.com/sponsors/sindresorhus"
2531
+ }
2532
+ },
2533
+ "node_modules/eslint-import-resolver-typescript/node_modules/slash": {
2534
+ "version": "4.0.0",
2535
+ "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
2536
+ "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
2537
+ "engines": {
2538
+ "node": ">=12"
2539
+ },
2540
+ "funding": {
2541
+ "url": "https://github.com/sponsors/sindresorhus"
2542
+ }
2543
+ },
2544
+ "node_modules/eslint-module-utils": {
2545
+ "version": "2.8.1",
2546
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz",
2547
+ "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==",
2548
+ "dependencies": {
2549
+ "debug": "^3.2.7"
2550
+ },
2551
+ "engines": {
2552
+ "node": ">=4"
2553
+ },
2554
+ "peerDependenciesMeta": {
2555
+ "eslint": {
2556
+ "optional": true
2557
+ }
2558
+ }
2559
+ },
2560
+ "node_modules/eslint-module-utils/node_modules/debug": {
2561
+ "version": "3.2.7",
2562
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/debug/-/debug-3.2.7.tgz",
2563
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
2564
+ "dependencies": {
2565
+ "ms": "^2.1.1"
2566
+ }
2567
+ },
2568
+ "node_modules/eslint-plugin-import": {
2569
+ "version": "2.29.1",
2570
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz",
2571
+ "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==",
2572
+ "dependencies": {
2573
+ "array-includes": "^3.1.7",
2574
+ "array.prototype.findlastindex": "^1.2.3",
2575
+ "array.prototype.flat": "^1.3.2",
2576
+ "array.prototype.flatmap": "^1.3.2",
2577
+ "debug": "^3.2.7",
2578
+ "doctrine": "^2.1.0",
2579
+ "eslint-import-resolver-node": "^0.3.9",
2580
+ "eslint-module-utils": "^2.8.0",
2581
+ "hasown": "^2.0.0",
2582
+ "is-core-module": "^2.13.1",
2583
+ "is-glob": "^4.0.3",
2584
+ "minimatch": "^3.1.2",
2585
+ "object.fromentries": "^2.0.7",
2586
+ "object.groupby": "^1.0.1",
2587
+ "object.values": "^1.1.7",
2588
+ "semver": "^6.3.1",
2589
+ "tsconfig-paths": "^3.15.0"
2590
+ },
2591
+ "engines": {
2592
+ "node": ">=4"
2593
+ },
2594
+ "peerDependencies": {
2595
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
2596
+ }
2597
+ },
2598
+ "node_modules/eslint-plugin-import/node_modules/debug": {
2599
+ "version": "3.2.7",
2600
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
2601
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
2602
+ "dependencies": {
2603
+ "ms": "^2.1.1"
2604
+ }
2605
+ },
2606
+ "node_modules/eslint-plugin-import/node_modules/doctrine": {
2607
+ "version": "2.1.0",
2608
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
2609
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
2610
+ "dependencies": {
2611
+ "esutils": "^2.0.2"
2612
+ },
2613
+ "engines": {
2614
+ "node": ">=0.10.0"
2615
+ }
2616
+ },
2617
+ "node_modules/eslint-plugin-import/node_modules/semver": {
2618
+ "version": "6.3.1",
2619
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-6.3.1.tgz",
2620
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2621
+ "bin": {
2622
+ "semver": "bin/semver.js"
2623
+ }
2624
+ },
2625
+ "node_modules/eslint-plugin-jsx-a11y": {
2626
+ "version": "6.7.1",
2627
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
2628
+ "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==",
2629
+ "dependencies": {
2630
+ "@babel/runtime": "^7.20.7",
2631
+ "aria-query": "^5.1.3",
2632
+ "array-includes": "^3.1.6",
2633
+ "array.prototype.flatmap": "^1.3.1",
2634
+ "ast-types-flow": "^0.0.7",
2635
+ "axe-core": "^4.6.2",
2636
+ "axobject-query": "^3.1.1",
2637
+ "damerau-levenshtein": "^1.0.8",
2638
+ "emoji-regex": "^9.2.2",
2639
+ "has": "^1.0.3",
2640
+ "jsx-ast-utils": "^3.3.3",
2641
+ "language-tags": "=1.0.5",
2642
+ "minimatch": "^3.1.2",
2643
+ "object.entries": "^1.1.6",
2644
+ "object.fromentries": "^2.0.6",
2645
+ "semver": "^6.3.0"
2646
+ },
2647
+ "engines": {
2648
+ "node": ">=4.0"
2649
+ },
2650
+ "peerDependencies": {
2651
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
2652
+ }
2653
+ },
2654
+ "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
2655
+ "version": "6.3.1",
2656
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-6.3.1.tgz",
2657
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2658
+ "bin": {
2659
+ "semver": "bin/semver.js"
2660
+ }
2661
+ },
2662
+ "node_modules/eslint-plugin-react": {
2663
+ "version": "7.34.1",
2664
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz",
2665
+ "integrity": "sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==",
2666
+ "dependencies": {
2667
+ "array-includes": "^3.1.7",
2668
+ "array.prototype.findlast": "^1.2.4",
2669
+ "array.prototype.flatmap": "^1.3.2",
2670
+ "array.prototype.toreversed": "^1.1.2",
2671
+ "array.prototype.tosorted": "^1.1.3",
2672
+ "doctrine": "^2.1.0",
2673
+ "es-iterator-helpers": "^1.0.17",
2674
+ "estraverse": "^5.3.0",
2675
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
2676
+ "minimatch": "^3.1.2",
2677
+ "object.entries": "^1.1.7",
2678
+ "object.fromentries": "^2.0.7",
2679
+ "object.hasown": "^1.1.3",
2680
+ "object.values": "^1.1.7",
2681
+ "prop-types": "^15.8.1",
2682
+ "resolve": "^2.0.0-next.5",
2683
+ "semver": "^6.3.1",
2684
+ "string.prototype.matchall": "^4.0.10"
2685
+ },
2686
+ "engines": {
2687
+ "node": ">=4"
2688
+ },
2689
+ "peerDependencies": {
2690
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
2691
+ }
2692
+ },
2693
+ "node_modules/eslint-plugin-react-hooks": {
2694
+ "version": "4.6.0",
2695
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
2696
+ "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
2697
+ "engines": {
2698
+ "node": ">=10"
2699
+ },
2700
+ "peerDependencies": {
2701
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
2702
+ }
2703
+ },
2704
+ "node_modules/eslint-plugin-react/node_modules/doctrine": {
2705
+ "version": "2.1.0",
2706
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/doctrine/-/doctrine-2.1.0.tgz",
2707
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
2708
+ "dependencies": {
2709
+ "esutils": "^2.0.2"
2710
+ },
2711
+ "engines": {
2712
+ "node": ">=0.10.0"
2713
+ }
2714
+ },
2715
+ "node_modules/eslint-plugin-react/node_modules/resolve": {
2716
+ "version": "2.0.0-next.5",
2717
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/resolve/-/resolve-2.0.0-next.5.tgz",
2718
+ "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
2719
+ "dependencies": {
2720
+ "is-core-module": "^2.13.0",
2721
+ "path-parse": "^1.0.7",
2722
+ "supports-preserve-symlinks-flag": "^1.0.0"
2723
+ },
2724
+ "bin": {
2725
+ "resolve": "bin/resolve"
2726
+ }
2727
+ },
2728
+ "node_modules/eslint-plugin-react/node_modules/semver": {
2729
+ "version": "6.3.1",
2730
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-6.3.1.tgz",
2731
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2732
+ "bin": {
2733
+ "semver": "bin/semver.js"
2734
+ }
2735
+ },
2736
+ "node_modules/eslint-scope": {
2737
+ "version": "7.1.1",
2738
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
2739
+ "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
2740
+ "dependencies": {
2741
+ "esrecurse": "^4.3.0",
2742
+ "estraverse": "^5.2.0"
2743
+ },
2744
+ "engines": {
2745
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2746
+ }
2747
+ },
2748
+ "node_modules/eslint-utils": {
2749
+ "version": "3.0.0",
2750
+ "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
2751
+ "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
2752
+ "dependencies": {
2753
+ "eslint-visitor-keys": "^2.0.0"
2754
+ },
2755
+ "engines": {
2756
+ "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
2757
+ },
2758
+ "funding": {
2759
+ "url": "https://github.com/sponsors/mysticatea"
2760
+ },
2761
+ "peerDependencies": {
2762
+ "eslint": ">=5"
2763
+ }
2764
+ },
2765
+ "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
2766
+ "version": "2.1.0",
2767
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
2768
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
2769
+ "engines": {
2770
+ "node": ">=10"
2771
+ }
2772
+ },
2773
+ "node_modules/eslint-visitor-keys": {
2774
+ "version": "3.3.0",
2775
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
2776
+ "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
2777
+ "engines": {
2778
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2779
+ }
2780
+ },
2781
+ "node_modules/espree": {
2782
+ "version": "9.4.1",
2783
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz",
2784
+ "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==",
2785
+ "dependencies": {
2786
+ "acorn": "^8.8.0",
2787
+ "acorn-jsx": "^5.3.2",
2788
+ "eslint-visitor-keys": "^3.3.0"
2789
+ },
2790
+ "engines": {
2791
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2792
+ },
2793
+ "funding": {
2794
+ "url": "https://opencollective.com/eslint"
2795
+ }
2796
+ },
2797
+ "node_modules/esquery": {
2798
+ "version": "1.4.0",
2799
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
2800
+ "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
2801
+ "dependencies": {
2802
+ "estraverse": "^5.1.0"
2803
+ },
2804
+ "engines": {
2805
+ "node": ">=0.10"
2806
+ }
2807
+ },
2808
+ "node_modules/esrecurse": {
2809
+ "version": "4.3.0",
2810
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2811
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2812
+ "dependencies": {
2813
+ "estraverse": "^5.2.0"
2814
+ },
2815
+ "engines": {
2816
+ "node": ">=4.0"
2817
+ }
2818
+ },
2819
+ "node_modules/estraverse": {
2820
+ "version": "5.3.0",
2821
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2822
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2823
+ "engines": {
2824
+ "node": ">=4.0"
2825
+ }
2826
+ },
2827
+ "node_modules/estree-walker": {
2828
+ "version": "3.0.3",
2829
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/estree-walker/-/estree-walker-3.0.3.tgz",
2830
+ "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
2831
+ "peer": true,
2832
+ "dependencies": {
2833
+ "@types/estree": "^1.0.0"
2834
+ }
2835
+ },
2836
+ "node_modules/esutils": {
2837
+ "version": "2.0.3",
2838
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2839
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2840
+ "engines": {
2841
+ "node": ">=0.10.0"
2842
+ }
2843
+ },
2844
+ "node_modules/eventsource-parser": {
2845
+ "version": "1.0.0",
2846
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/eventsource-parser/-/eventsource-parser-1.0.0.tgz",
2847
+ "integrity": "sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==",
2848
+ "engines": {
2849
+ "node": ">=14.18"
2850
+ }
2851
+ },
2852
+ "node_modules/fast-deep-equal": {
2853
+ "version": "3.1.3",
2854
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2855
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
2856
+ },
2857
+ "node_modules/fast-glob": {
2858
+ "version": "3.3.2",
2859
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/fast-glob/-/fast-glob-3.3.2.tgz",
2860
+ "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
2861
+ "dependencies": {
2862
+ "@nodelib/fs.stat": "^2.0.2",
2863
+ "@nodelib/fs.walk": "^1.2.3",
2864
+ "glob-parent": "^5.1.2",
2865
+ "merge2": "^1.3.0",
2866
+ "micromatch": "^4.0.4"
2867
+ },
2868
+ "engines": {
2869
+ "node": ">=8.6.0"
2870
+ }
2871
+ },
2872
+ "node_modules/fast-glob/node_modules/glob-parent": {
2873
+ "version": "5.1.2",
2874
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2875
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2876
+ "dependencies": {
2877
+ "is-glob": "^4.0.1"
2878
+ },
2879
+ "engines": {
2880
+ "node": ">= 6"
2881
+ }
2882
+ },
2883
+ "node_modules/fast-json-stable-stringify": {
2884
+ "version": "2.1.0",
2885
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2886
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
2887
+ },
2888
+ "node_modules/fast-levenshtein": {
2889
+ "version": "2.0.6",
2890
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2891
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
2892
+ },
2893
+ "node_modules/fastq": {
2894
+ "version": "1.15.0",
2895
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
2896
+ "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
2897
+ "dependencies": {
2898
+ "reusify": "^1.0.4"
2899
+ }
2900
+ },
2901
+ "node_modules/file-entry-cache": {
2902
+ "version": "6.0.1",
2903
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
2904
+ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
2905
+ "dependencies": {
2906
+ "flat-cache": "^3.0.4"
2907
+ },
2908
+ "engines": {
2909
+ "node": "^10.12.0 || >=12.0.0"
2910
+ }
2911
+ },
2912
+ "node_modules/fill-range": {
2913
+ "version": "7.1.1",
2914
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2915
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2916
+ "dependencies": {
2917
+ "to-regex-range": "^5.0.1"
2918
+ },
2919
+ "engines": {
2920
+ "node": ">=8"
2921
+ }
2922
+ },
2923
+ "node_modules/find-up": {
2924
+ "version": "5.0.0",
2925
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2926
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2927
+ "dependencies": {
2928
+ "locate-path": "^6.0.0",
2929
+ "path-exists": "^4.0.0"
2930
+ },
2931
+ "engines": {
2932
+ "node": ">=10"
2933
+ },
2934
+ "funding": {
2935
+ "url": "https://github.com/sponsors/sindresorhus"
2936
+ }
2937
+ },
2938
+ "node_modules/flat-cache": {
2939
+ "version": "3.0.4",
2940
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
2941
+ "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
2942
+ "dependencies": {
2943
+ "flatted": "^3.1.0",
2944
+ "rimraf": "^3.0.2"
2945
+ },
2946
+ "engines": {
2947
+ "node": "^10.12.0 || >=12.0.0"
2948
+ }
2949
+ },
2950
+ "node_modules/flatted": {
2951
+ "version": "3.2.7",
2952
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
2953
+ "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="
2954
+ },
2955
+ "node_modules/for-each": {
2956
+ "version": "0.3.3",
2957
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
2958
+ "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
2959
+ "dependencies": {
2960
+ "is-callable": "^1.1.3"
2961
+ }
2962
+ },
2963
+ "node_modules/foreground-child": {
2964
+ "version": "3.1.1",
2965
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/foreground-child/-/foreground-child-3.1.1.tgz",
2966
+ "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
2967
+ "dependencies": {
2968
+ "cross-spawn": "^7.0.0",
2969
+ "signal-exit": "^4.0.1"
2970
+ },
2971
+ "engines": {
2972
+ "node": ">=14"
2973
+ }
2974
+ },
2975
+ "node_modules/fraction.js": {
2976
+ "version": "4.3.7",
2977
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/fraction.js/-/fraction.js-4.3.7.tgz",
2978
+ "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
2979
+ "dev": true,
2980
+ "engines": {
2981
+ "node": "*"
2982
+ }
2983
+ },
2984
+ "node_modules/fs.realpath": {
2985
+ "version": "1.0.0",
2986
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2987
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
2988
+ },
2989
+ "node_modules/fsevents": {
2990
+ "version": "2.3.3",
2991
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/fsevents/-/fsevents-2.3.3.tgz",
2992
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2993
+ "dev": true,
2994
+ "hasInstallScript": true,
2995
+ "optional": true,
2996
+ "os": [
2997
+ "darwin"
2998
+ ],
2999
+ "engines": {
3000
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
3001
+ }
3002
+ },
3003
+ "node_modules/function-bind": {
3004
+ "version": "1.1.2",
3005
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/function-bind/-/function-bind-1.1.2.tgz",
3006
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
3007
+ },
3008
+ "node_modules/function.prototype.name": {
3009
+ "version": "1.1.6",
3010
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/function.prototype.name/-/function.prototype.name-1.1.6.tgz",
3011
+ "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==",
3012
+ "dependencies": {
3013
+ "call-bind": "^1.0.2",
3014
+ "define-properties": "^1.2.0",
3015
+ "es-abstract": "^1.22.1",
3016
+ "functions-have-names": "^1.2.3"
3017
+ },
3018
+ "engines": {
3019
+ "node": ">= 0.4"
3020
+ }
3021
+ },
3022
+ "node_modules/functions-have-names": {
3023
+ "version": "1.2.3",
3024
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
3025
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
3026
+ "funding": {
3027
+ "url": "https://github.com/sponsors/ljharb"
3028
+ }
3029
+ },
3030
+ "node_modules/get-intrinsic": {
3031
+ "version": "1.2.4",
3032
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
3033
+ "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
3034
+ "dependencies": {
3035
+ "es-errors": "^1.3.0",
3036
+ "function-bind": "^1.1.2",
3037
+ "has-proto": "^1.0.1",
3038
+ "has-symbols": "^1.0.3",
3039
+ "hasown": "^2.0.0"
3040
+ },
3041
+ "engines": {
3042
+ "node": ">= 0.4"
3043
+ }
3044
+ },
3045
+ "node_modules/get-symbol-description": {
3046
+ "version": "1.0.2",
3047
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/get-symbol-description/-/get-symbol-description-1.0.2.tgz",
3048
+ "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==",
3049
+ "dependencies": {
3050
+ "call-bind": "^1.0.5",
3051
+ "es-errors": "^1.3.0",
3052
+ "get-intrinsic": "^1.2.4"
3053
+ },
3054
+ "engines": {
3055
+ "node": ">= 0.4"
3056
+ }
3057
+ },
3058
+ "node_modules/get-tsconfig": {
3059
+ "version": "4.3.0",
3060
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.3.0.tgz",
3061
+ "integrity": "sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ==",
3062
+ "funding": {
3063
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
3064
+ }
3065
+ },
3066
+ "node_modules/glob": {
3067
+ "version": "7.1.7",
3068
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
3069
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
3070
+ "dependencies": {
3071
+ "fs.realpath": "^1.0.0",
3072
+ "inflight": "^1.0.4",
3073
+ "inherits": "2",
3074
+ "minimatch": "^3.0.4",
3075
+ "once": "^1.3.0",
3076
+ "path-is-absolute": "^1.0.0"
3077
+ },
3078
+ "engines": {
3079
+ "node": "*"
3080
+ },
3081
+ "funding": {
3082
+ "url": "https://github.com/sponsors/isaacs"
3083
+ }
3084
+ },
3085
+ "node_modules/glob-parent": {
3086
+ "version": "6.0.2",
3087
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
3088
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
3089
+ "dependencies": {
3090
+ "is-glob": "^4.0.3"
3091
+ },
3092
+ "engines": {
3093
+ "node": ">=10.13.0"
3094
+ }
3095
+ },
3096
+ "node_modules/globals": {
3097
+ "version": "13.19.0",
3098
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz",
3099
+ "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==",
3100
+ "dependencies": {
3101
+ "type-fest": "^0.20.2"
3102
+ },
3103
+ "engines": {
3104
+ "node": ">=8"
3105
+ },
3106
+ "funding": {
3107
+ "url": "https://github.com/sponsors/sindresorhus"
3108
+ }
3109
+ },
3110
+ "node_modules/globalthis": {
3111
+ "version": "1.0.3",
3112
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
3113
+ "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
3114
+ "dependencies": {
3115
+ "define-properties": "^1.1.3"
3116
+ },
3117
+ "engines": {
3118
+ "node": ">= 0.4"
3119
+ },
3120
+ "funding": {
3121
+ "url": "https://github.com/sponsors/ljharb"
3122
+ }
3123
+ },
3124
+ "node_modules/globalyzer": {
3125
+ "version": "0.1.0",
3126
+ "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz",
3127
+ "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q=="
3128
+ },
3129
+ "node_modules/globby": {
3130
+ "version": "11.1.0",
3131
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
3132
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
3133
+ "dependencies": {
3134
+ "array-union": "^2.1.0",
3135
+ "dir-glob": "^3.0.1",
3136
+ "fast-glob": "^3.2.9",
3137
+ "ignore": "^5.2.0",
3138
+ "merge2": "^1.4.1",
3139
+ "slash": "^3.0.0"
3140
+ },
3141
+ "engines": {
3142
+ "node": ">=10"
3143
+ },
3144
+ "funding": {
3145
+ "url": "https://github.com/sponsors/sindresorhus"
3146
+ }
3147
+ },
3148
+ "node_modules/globrex": {
3149
+ "version": "0.1.2",
3150
+ "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz",
3151
+ "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="
3152
+ },
3153
+ "node_modules/goober": {
3154
+ "version": "2.1.14",
3155
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/goober/-/goober-2.1.14.tgz",
3156
+ "integrity": "sha512-4UpC0NdGyAFqLNPnhCT2iHpza2q+RAY3GV85a/mRPdzyPQMsj0KmMMuetdIkzWRbJ+Hgau1EZztq8ImmiMGhsg==",
3157
+ "peerDependencies": {
3158
+ "csstype": "^3.0.10"
3159
+ }
3160
+ },
3161
+ "node_modules/gopd": {
3162
+ "version": "1.0.1",
3163
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
3164
+ "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
3165
+ "dependencies": {
3166
+ "get-intrinsic": "^1.1.3"
3167
+ },
3168
+ "funding": {
3169
+ "url": "https://github.com/sponsors/ljharb"
3170
+ }
3171
+ },
3172
+ "node_modules/graceful-fs": {
3173
+ "version": "4.2.11",
3174
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/graceful-fs/-/graceful-fs-4.2.11.tgz",
3175
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
3176
+ },
3177
+ "node_modules/grapheme-splitter": {
3178
+ "version": "1.0.4",
3179
+ "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
3180
+ "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
3181
+ },
3182
+ "node_modules/has": {
3183
+ "version": "1.0.3",
3184
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
3185
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
3186
+ "dependencies": {
3187
+ "function-bind": "^1.1.1"
3188
+ },
3189
+ "engines": {
3190
+ "node": ">= 0.4.0"
3191
+ }
3192
+ },
3193
+ "node_modules/has-bigints": {
3194
+ "version": "1.0.2",
3195
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
3196
+ "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
3197
+ "funding": {
3198
+ "url": "https://github.com/sponsors/ljharb"
3199
+ }
3200
+ },
3201
+ "node_modules/has-flag": {
3202
+ "version": "4.0.0",
3203
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
3204
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
3205
+ "engines": {
3206
+ "node": ">=8"
3207
+ }
3208
+ },
3209
+ "node_modules/has-property-descriptors": {
3210
+ "version": "1.0.2",
3211
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
3212
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
3213
+ "dependencies": {
3214
+ "es-define-property": "^1.0.0"
3215
+ }
3216
+ },
3217
+ "node_modules/has-proto": {
3218
+ "version": "1.0.3",
3219
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/has-proto/-/has-proto-1.0.3.tgz",
3220
+ "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
3221
+ "engines": {
3222
+ "node": ">= 0.4"
3223
+ }
3224
+ },
3225
+ "node_modules/has-symbols": {
3226
+ "version": "1.0.3",
3227
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
3228
+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
3229
+ "engines": {
3230
+ "node": ">= 0.4"
3231
+ },
3232
+ "funding": {
3233
+ "url": "https://github.com/sponsors/ljharb"
3234
+ }
3235
+ },
3236
+ "node_modules/has-tostringtag": {
3237
+ "version": "1.0.2",
3238
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
3239
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
3240
+ "dependencies": {
3241
+ "has-symbols": "^1.0.3"
3242
+ },
3243
+ "engines": {
3244
+ "node": ">= 0.4"
3245
+ }
3246
+ },
3247
+ "node_modules/hasown": {
3248
+ "version": "2.0.2",
3249
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/hasown/-/hasown-2.0.2.tgz",
3250
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
3251
+ "dependencies": {
3252
+ "function-bind": "^1.1.2"
3253
+ },
3254
+ "engines": {
3255
+ "node": ">= 0.4"
3256
+ }
3257
+ },
3258
+ "node_modules/ignore": {
3259
+ "version": "5.2.4",
3260
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
3261
+ "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
3262
+ "engines": {
3263
+ "node": ">= 4"
3264
+ }
3265
+ },
3266
+ "node_modules/import-fresh": {
3267
+ "version": "3.3.0",
3268
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
3269
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
3270
+ "dependencies": {
3271
+ "parent-module": "^1.0.0",
3272
+ "resolve-from": "^4.0.0"
3273
+ },
3274
+ "engines": {
3275
+ "node": ">=6"
3276
+ },
3277
+ "funding": {
3278
+ "url": "https://github.com/sponsors/sindresorhus"
3279
+ }
3280
+ },
3281
+ "node_modules/imurmurhash": {
3282
+ "version": "0.1.4",
3283
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
3284
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
3285
+ "engines": {
3286
+ "node": ">=0.8.19"
3287
+ }
3288
+ },
3289
+ "node_modules/inflight": {
3290
+ "version": "1.0.6",
3291
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
3292
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
3293
+ "dependencies": {
3294
+ "once": "^1.3.0",
3295
+ "wrappy": "1"
3296
+ }
3297
+ },
3298
+ "node_modules/inherits": {
3299
+ "version": "2.0.4",
3300
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
3301
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
3302
+ },
3303
+ "node_modules/internal-slot": {
3304
+ "version": "1.0.7",
3305
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/internal-slot/-/internal-slot-1.0.7.tgz",
3306
+ "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==",
3307
+ "dependencies": {
3308
+ "es-errors": "^1.3.0",
3309
+ "hasown": "^2.0.0",
3310
+ "side-channel": "^1.0.4"
3311
+ },
3312
+ "engines": {
3313
+ "node": ">= 0.4"
3314
+ }
3315
+ },
3316
+ "node_modules/is-arguments": {
3317
+ "version": "1.1.1",
3318
+ "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
3319
+ "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
3320
+ "dependencies": {
3321
+ "call-bind": "^1.0.2",
3322
+ "has-tostringtag": "^1.0.0"
3323
+ },
3324
+ "engines": {
3325
+ "node": ">= 0.4"
3326
+ },
3327
+ "funding": {
3328
+ "url": "https://github.com/sponsors/ljharb"
3329
+ }
3330
+ },
3331
+ "node_modules/is-array-buffer": {
3332
+ "version": "3.0.4",
3333
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-array-buffer/-/is-array-buffer-3.0.4.tgz",
3334
+ "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==",
3335
+ "dependencies": {
3336
+ "call-bind": "^1.0.2",
3337
+ "get-intrinsic": "^1.2.1"
3338
+ },
3339
+ "engines": {
3340
+ "node": ">= 0.4"
3341
+ }
3342
+ },
3343
+ "node_modules/is-async-function": {
3344
+ "version": "2.0.0",
3345
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-async-function/-/is-async-function-2.0.0.tgz",
3346
+ "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
3347
+ "dependencies": {
3348
+ "has-tostringtag": "^1.0.0"
3349
+ },
3350
+ "engines": {
3351
+ "node": ">= 0.4"
3352
+ }
3353
+ },
3354
+ "node_modules/is-bigint": {
3355
+ "version": "1.0.4",
3356
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
3357
+ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
3358
+ "dependencies": {
3359
+ "has-bigints": "^1.0.1"
3360
+ },
3361
+ "funding": {
3362
+ "url": "https://github.com/sponsors/ljharb"
3363
+ }
3364
+ },
3365
+ "node_modules/is-binary-path": {
3366
+ "version": "2.1.0",
3367
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-binary-path/-/is-binary-path-2.1.0.tgz",
3368
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
3369
+ "dev": true,
3370
+ "dependencies": {
3371
+ "binary-extensions": "^2.0.0"
3372
+ },
3373
+ "engines": {
3374
+ "node": ">=8"
3375
+ }
3376
+ },
3377
+ "node_modules/is-boolean-object": {
3378
+ "version": "1.1.2",
3379
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
3380
+ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
3381
+ "dependencies": {
3382
+ "call-bind": "^1.0.2",
3383
+ "has-tostringtag": "^1.0.0"
3384
+ },
3385
+ "engines": {
3386
+ "node": ">= 0.4"
3387
+ },
3388
+ "funding": {
3389
+ "url": "https://github.com/sponsors/ljharb"
3390
+ }
3391
+ },
3392
+ "node_modules/is-callable": {
3393
+ "version": "1.2.7",
3394
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
3395
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
3396
+ "engines": {
3397
+ "node": ">= 0.4"
3398
+ },
3399
+ "funding": {
3400
+ "url": "https://github.com/sponsors/ljharb"
3401
+ }
3402
+ },
3403
+ "node_modules/is-core-module": {
3404
+ "version": "2.13.1",
3405
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-core-module/-/is-core-module-2.13.1.tgz",
3406
+ "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==",
3407
+ "dependencies": {
3408
+ "hasown": "^2.0.0"
3409
+ }
3410
+ },
3411
+ "node_modules/is-data-view": {
3412
+ "version": "1.0.1",
3413
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-data-view/-/is-data-view-1.0.1.tgz",
3414
+ "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==",
3415
+ "dependencies": {
3416
+ "is-typed-array": "^1.1.13"
3417
+ },
3418
+ "engines": {
3419
+ "node": ">= 0.4"
3420
+ }
3421
+ },
3422
+ "node_modules/is-date-object": {
3423
+ "version": "1.0.5",
3424
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
3425
+ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
3426
+ "dependencies": {
3427
+ "has-tostringtag": "^1.0.0"
3428
+ },
3429
+ "engines": {
3430
+ "node": ">= 0.4"
3431
+ },
3432
+ "funding": {
3433
+ "url": "https://github.com/sponsors/ljharb"
3434
+ }
3435
+ },
3436
+ "node_modules/is-docker": {
3437
+ "version": "2.2.1",
3438
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
3439
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
3440
+ "bin": {
3441
+ "is-docker": "cli.js"
3442
+ },
3443
+ "engines": {
3444
+ "node": ">=8"
3445
+ },
3446
+ "funding": {
3447
+ "url": "https://github.com/sponsors/sindresorhus"
3448
+ }
3449
+ },
3450
+ "node_modules/is-extglob": {
3451
+ "version": "2.1.1",
3452
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
3453
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
3454
+ "engines": {
3455
+ "node": ">=0.10.0"
3456
+ }
3457
+ },
3458
+ "node_modules/is-finalizationregistry": {
3459
+ "version": "1.0.2",
3460
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz",
3461
+ "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==",
3462
+ "dependencies": {
3463
+ "call-bind": "^1.0.2"
3464
+ }
3465
+ },
3466
+ "node_modules/is-fullwidth-code-point": {
3467
+ "version": "3.0.0",
3468
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
3469
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
3470
+ "engines": {
3471
+ "node": ">=8"
3472
+ }
3473
+ },
3474
+ "node_modules/is-generator-function": {
3475
+ "version": "1.0.10",
3476
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-generator-function/-/is-generator-function-1.0.10.tgz",
3477
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
3478
+ "dependencies": {
3479
+ "has-tostringtag": "^1.0.0"
3480
+ },
3481
+ "engines": {
3482
+ "node": ">= 0.4"
3483
+ }
3484
+ },
3485
+ "node_modules/is-glob": {
3486
+ "version": "4.0.3",
3487
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
3488
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
3489
+ "dependencies": {
3490
+ "is-extglob": "^2.1.1"
3491
+ },
3492
+ "engines": {
3493
+ "node": ">=0.10.0"
3494
+ }
3495
+ },
3496
+ "node_modules/is-map": {
3497
+ "version": "2.0.2",
3498
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
3499
+ "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
3500
+ "funding": {
3501
+ "url": "https://github.com/sponsors/ljharb"
3502
+ }
3503
+ },
3504
+ "node_modules/is-negative-zero": {
3505
+ "version": "2.0.3",
3506
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
3507
+ "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==",
3508
+ "engines": {
3509
+ "node": ">= 0.4"
3510
+ }
3511
+ },
3512
+ "node_modules/is-number": {
3513
+ "version": "7.0.0",
3514
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
3515
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
3516
+ "engines": {
3517
+ "node": ">=0.12.0"
3518
+ }
3519
+ },
3520
+ "node_modules/is-number-object": {
3521
+ "version": "1.0.7",
3522
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
3523
+ "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
3524
+ "dependencies": {
3525
+ "has-tostringtag": "^1.0.0"
3526
+ },
3527
+ "engines": {
3528
+ "node": ">= 0.4"
3529
+ },
3530
+ "funding": {
3531
+ "url": "https://github.com/sponsors/ljharb"
3532
+ }
3533
+ },
3534
+ "node_modules/is-path-inside": {
3535
+ "version": "3.0.3",
3536
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
3537
+ "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
3538
+ "engines": {
3539
+ "node": ">=8"
3540
+ }
3541
+ },
3542
+ "node_modules/is-reference": {
3543
+ "version": "3.0.2",
3544
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-reference/-/is-reference-3.0.2.tgz",
3545
+ "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==",
3546
+ "peer": true,
3547
+ "dependencies": {
3548
+ "@types/estree": "*"
3549
+ }
3550
+ },
3551
+ "node_modules/is-regex": {
3552
+ "version": "1.1.4",
3553
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
3554
+ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
3555
+ "dependencies": {
3556
+ "call-bind": "^1.0.2",
3557
+ "has-tostringtag": "^1.0.0"
3558
+ },
3559
+ "engines": {
3560
+ "node": ">= 0.4"
3561
+ },
3562
+ "funding": {
3563
+ "url": "https://github.com/sponsors/ljharb"
3564
+ }
3565
+ },
3566
+ "node_modules/is-set": {
3567
+ "version": "2.0.2",
3568
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
3569
+ "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
3570
+ "funding": {
3571
+ "url": "https://github.com/sponsors/ljharb"
3572
+ }
3573
+ },
3574
+ "node_modules/is-shared-array-buffer": {
3575
+ "version": "1.0.3",
3576
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz",
3577
+ "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==",
3578
+ "dependencies": {
3579
+ "call-bind": "^1.0.7"
3580
+ },
3581
+ "engines": {
3582
+ "node": ">= 0.4"
3583
+ }
3584
+ },
3585
+ "node_modules/is-string": {
3586
+ "version": "1.0.7",
3587
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
3588
+ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
3589
+ "dependencies": {
3590
+ "has-tostringtag": "^1.0.0"
3591
+ },
3592
+ "engines": {
3593
+ "node": ">= 0.4"
3594
+ },
3595
+ "funding": {
3596
+ "url": "https://github.com/sponsors/ljharb"
3597
+ }
3598
+ },
3599
+ "node_modules/is-symbol": {
3600
+ "version": "1.0.4",
3601
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
3602
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
3603
+ "dependencies": {
3604
+ "has-symbols": "^1.0.2"
3605
+ },
3606
+ "engines": {
3607
+ "node": ">= 0.4"
3608
+ },
3609
+ "funding": {
3610
+ "url": "https://github.com/sponsors/ljharb"
3611
+ }
3612
+ },
3613
+ "node_modules/is-typed-array": {
3614
+ "version": "1.1.13",
3615
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/is-typed-array/-/is-typed-array-1.1.13.tgz",
3616
+ "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==",
3617
+ "dependencies": {
3618
+ "which-typed-array": "^1.1.14"
3619
+ },
3620
+ "engines": {
3621
+ "node": ">= 0.4"
3622
+ }
3623
+ },
3624
+ "node_modules/is-weakmap": {
3625
+ "version": "2.0.1",
3626
+ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
3627
+ "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
3628
+ "funding": {
3629
+ "url": "https://github.com/sponsors/ljharb"
3630
+ }
3631
+ },
3632
+ "node_modules/is-weakref": {
3633
+ "version": "1.0.2",
3634
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
3635
+ "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
3636
+ "dependencies": {
3637
+ "call-bind": "^1.0.2"
3638
+ },
3639
+ "funding": {
3640
+ "url": "https://github.com/sponsors/ljharb"
3641
+ }
3642
+ },
3643
+ "node_modules/is-weakset": {
3644
+ "version": "2.0.2",
3645
+ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
3646
+ "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
3647
+ "dependencies": {
3648
+ "call-bind": "^1.0.2",
3649
+ "get-intrinsic": "^1.1.1"
3650
+ },
3651
+ "funding": {
3652
+ "url": "https://github.com/sponsors/ljharb"
3653
+ }
3654
+ },
3655
+ "node_modules/is-wsl": {
3656
+ "version": "2.2.0",
3657
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
3658
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
3659
+ "dependencies": {
3660
+ "is-docker": "^2.0.0"
3661
+ },
3662
+ "engines": {
3663
+ "node": ">=8"
3664
+ }
3665
+ },
3666
+ "node_modules/isarray": {
3667
+ "version": "2.0.5",
3668
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
3669
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
3670
+ },
3671
+ "node_modules/isexe": {
3672
+ "version": "2.0.0",
3673
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
3674
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
3675
+ },
3676
+ "node_modules/iterator.prototype": {
3677
+ "version": "1.1.2",
3678
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/iterator.prototype/-/iterator.prototype-1.1.2.tgz",
3679
+ "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==",
3680
+ "dependencies": {
3681
+ "define-properties": "^1.2.1",
3682
+ "get-intrinsic": "^1.2.1",
3683
+ "has-symbols": "^1.0.3",
3684
+ "reflect.getprototypeof": "^1.0.4",
3685
+ "set-function-name": "^2.0.1"
3686
+ }
3687
+ },
3688
+ "node_modules/jackspeak": {
3689
+ "version": "2.3.6",
3690
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/jackspeak/-/jackspeak-2.3.6.tgz",
3691
+ "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
3692
+ "dependencies": {
3693
+ "@isaacs/cliui": "^8.0.2"
3694
+ },
3695
+ "engines": {
3696
+ "node": ">=14"
3697
+ },
3698
+ "optionalDependencies": {
3699
+ "@pkgjs/parseargs": "^0.11.0"
3700
+ }
3701
+ },
3702
+ "node_modules/jiti": {
3703
+ "version": "1.21.0",
3704
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/jiti/-/jiti-1.21.0.tgz",
3705
+ "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==",
3706
+ "dev": true,
3707
+ "bin": {
3708
+ "jiti": "bin/jiti.js"
3709
+ }
3710
+ },
3711
+ "node_modules/js-sdsl": {
3712
+ "version": "4.2.0",
3713
+ "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz",
3714
+ "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==",
3715
+ "funding": {
3716
+ "type": "opencollective",
3717
+ "url": "https://opencollective.com/js-sdsl"
3718
+ }
3719
+ },
3720
+ "node_modules/js-tokens": {
3721
+ "version": "4.0.0",
3722
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
3723
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
3724
+ },
3725
+ "node_modules/js-yaml": {
3726
+ "version": "4.1.0",
3727
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
3728
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
3729
+ "dependencies": {
3730
+ "argparse": "^2.0.1"
3731
+ },
3732
+ "bin": {
3733
+ "js-yaml": "bin/js-yaml.js"
3734
+ }
3735
+ },
3736
+ "node_modules/json-schema-traverse": {
3737
+ "version": "0.4.1",
3738
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
3739
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
3740
+ },
3741
+ "node_modules/json-stable-stringify-without-jsonify": {
3742
+ "version": "1.0.1",
3743
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
3744
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
3745
+ },
3746
+ "node_modules/json5": {
3747
+ "version": "1.0.2",
3748
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/json5/-/json5-1.0.2.tgz",
3749
+ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
3750
+ "dependencies": {
3751
+ "minimist": "^1.2.0"
3752
+ },
3753
+ "bin": {
3754
+ "json5": "lib/cli.js"
3755
+ }
3756
+ },
3757
+ "node_modules/jsx-ast-utils": {
3758
+ "version": "3.3.3",
3759
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
3760
+ "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
3761
+ "dependencies": {
3762
+ "array-includes": "^3.1.5",
3763
+ "object.assign": "^4.1.3"
3764
+ },
3765
+ "engines": {
3766
+ "node": ">=4.0"
3767
+ }
3768
+ },
3769
+ "node_modules/language-subtag-registry": {
3770
+ "version": "0.3.22",
3771
+ "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
3772
+ "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="
3773
+ },
3774
+ "node_modules/language-tags": {
3775
+ "version": "1.0.5",
3776
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
3777
+ "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
3778
+ "dependencies": {
3779
+ "language-subtag-registry": "~0.3.2"
3780
+ }
3781
+ },
3782
+ "node_modules/levn": {
3783
+ "version": "0.4.1",
3784
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
3785
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
3786
+ "dependencies": {
3787
+ "prelude-ls": "^1.2.1",
3788
+ "type-check": "~0.4.0"
3789
+ },
3790
+ "engines": {
3791
+ "node": ">= 0.8.0"
3792
+ }
3793
+ },
3794
+ "node_modules/lilconfig": {
3795
+ "version": "2.1.0",
3796
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lilconfig/-/lilconfig-2.1.0.tgz",
3797
+ "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
3798
+ "dev": true,
3799
+ "engines": {
3800
+ "node": ">=10"
3801
+ }
3802
+ },
3803
+ "node_modules/lines-and-columns": {
3804
+ "version": "1.2.4",
3805
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
3806
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
3807
+ "dev": true
3808
+ },
3809
+ "node_modules/locate-character": {
3810
+ "version": "3.0.0",
3811
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/locate-character/-/locate-character-3.0.0.tgz",
3812
+ "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==",
3813
+ "peer": true
3814
+ },
3815
+ "node_modules/locate-path": {
3816
+ "version": "6.0.0",
3817
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
3818
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
3819
+ "dependencies": {
3820
+ "p-locate": "^5.0.0"
3821
+ },
3822
+ "engines": {
3823
+ "node": ">=10"
3824
+ },
3825
+ "funding": {
3826
+ "url": "https://github.com/sponsors/sindresorhus"
3827
+ }
3828
+ },
3829
+ "node_modules/lodash.castarray": {
3830
+ "version": "4.4.0",
3831
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lodash.castarray/-/lodash.castarray-4.4.0.tgz",
3832
+ "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==",
3833
+ "dev": true
3834
+ },
3835
+ "node_modules/lodash.isplainobject": {
3836
+ "version": "4.0.6",
3837
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
3838
+ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
3839
+ "dev": true
3840
+ },
3841
+ "node_modules/lodash.merge": {
3842
+ "version": "4.6.2",
3843
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
3844
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
3845
+ },
3846
+ "node_modules/loose-envify": {
3847
+ "version": "1.4.0",
3848
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
3849
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
3850
+ "dependencies": {
3851
+ "js-tokens": "^3.0.0 || ^4.0.0"
3852
+ },
3853
+ "bin": {
3854
+ "loose-envify": "cli.js"
3855
+ }
3856
+ },
3857
+ "node_modules/lru-cache": {
3858
+ "version": "6.0.0",
3859
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
3860
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
3861
+ "dependencies": {
3862
+ "yallist": "^4.0.0"
3863
+ },
3864
+ "engines": {
3865
+ "node": ">=10"
3866
+ }
3867
+ },
3868
+ "node_modules/magic-string": {
3869
+ "version": "0.30.10",
3870
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/magic-string/-/magic-string-0.30.10.tgz",
3871
+ "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==",
3872
+ "peer": true,
3873
+ "dependencies": {
3874
+ "@jridgewell/sourcemap-codec": "^1.4.15"
3875
+ }
3876
+ },
3877
+ "node_modules/mdn-data": {
3878
+ "version": "2.0.30",
3879
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/mdn-data/-/mdn-data-2.0.30.tgz",
3880
+ "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
3881
+ "peer": true
3882
+ },
3883
+ "node_modules/merge2": {
3884
+ "version": "1.4.1",
3885
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
3886
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
3887
+ "engines": {
3888
+ "node": ">= 8"
3889
+ }
3890
+ },
3891
+ "node_modules/micromatch": {
3892
+ "version": "4.0.5",
3893
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
3894
+ "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
3895
+ "dependencies": {
3896
+ "braces": "^3.0.2",
3897
+ "picomatch": "^2.3.1"
3898
+ },
3899
+ "engines": {
3900
+ "node": ">=8.6"
3901
+ }
3902
+ },
3903
+ "node_modules/mini-svg-data-uri": {
3904
+ "version": "1.4.4",
3905
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
3906
+ "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
3907
+ "dev": true,
3908
+ "bin": {
3909
+ "mini-svg-data-uri": "cli.js"
3910
+ }
3911
+ },
3912
+ "node_modules/minimatch": {
3913
+ "version": "3.1.2",
3914
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3915
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3916
+ "dependencies": {
3917
+ "brace-expansion": "^1.1.7"
3918
+ },
3919
+ "engines": {
3920
+ "node": "*"
3921
+ }
3922
+ },
3923
+ "node_modules/minimist": {
3924
+ "version": "1.2.8",
3925
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/minimist/-/minimist-1.2.8.tgz",
3926
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
3927
+ },
3928
+ "node_modules/minipass": {
3929
+ "version": "7.0.4",
3930
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/minipass/-/minipass-7.0.4.tgz",
3931
+ "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
3932
+ "engines": {
3933
+ "node": ">=16 || 14 >=14.17"
3934
+ }
3935
+ },
3936
+ "node_modules/ms": {
3937
+ "version": "2.1.2",
3938
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
3939
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
3940
+ },
3941
+ "node_modules/mz": {
3942
+ "version": "2.7.0",
3943
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/mz/-/mz-2.7.0.tgz",
3944
+ "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
3945
+ "dev": true,
3946
+ "dependencies": {
3947
+ "any-promise": "^1.0.0",
3948
+ "object-assign": "^4.0.1",
3949
+ "thenify-all": "^1.0.0"
3950
+ }
3951
+ },
3952
+ "node_modules/nanoid": {
3953
+ "version": "3.3.7",
3954
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/nanoid/-/nanoid-3.3.7.tgz",
3955
+ "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
3956
+ "bin": {
3957
+ "nanoid": "bin/nanoid.cjs"
3958
+ },
3959
+ "engines": {
3960
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3961
+ }
3962
+ },
3963
+ "node_modules/natural-compare": {
3964
+ "version": "1.4.0",
3965
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3966
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
3967
+ },
3968
+ "node_modules/next": {
3969
+ "version": "14.2.5",
3970
+ "resolved": "https://registry.npmjs.org/next/-/next-14.2.5.tgz",
3971
+ "integrity": "sha512-0f8aRfBVL+mpzfBjYfQuLWh2WyAwtJXCRfkPF4UJ5qd2YwrHczsrSzXU4tRMV0OAxR8ZJZWPFn6uhSC56UTsLA==",
3972
+ "dependencies": {
3973
+ "@next/env": "14.2.5",
3974
+ "@swc/helpers": "0.5.5",
3975
+ "busboy": "1.6.0",
3976
+ "caniuse-lite": "^1.0.30001579",
3977
+ "graceful-fs": "^4.2.11",
3978
+ "postcss": "8.4.31",
3979
+ "styled-jsx": "5.1.1"
3980
+ },
3981
+ "bin": {
3982
+ "next": "dist/bin/next"
3983
+ },
3984
+ "engines": {
3985
+ "node": ">=18.17.0"
3986
+ },
3987
+ "optionalDependencies": {
3988
+ "@next/swc-darwin-arm64": "14.2.5",
3989
+ "@next/swc-darwin-x64": "14.2.5",
3990
+ "@next/swc-linux-arm64-gnu": "14.2.5",
3991
+ "@next/swc-linux-arm64-musl": "14.2.5",
3992
+ "@next/swc-linux-x64-gnu": "14.2.5",
3993
+ "@next/swc-linux-x64-musl": "14.2.5",
3994
+ "@next/swc-win32-arm64-msvc": "14.2.5",
3995
+ "@next/swc-win32-ia32-msvc": "14.2.5",
3996
+ "@next/swc-win32-x64-msvc": "14.2.5"
3997
+ },
3998
+ "peerDependencies": {
3999
+ "@opentelemetry/api": "^1.1.0",
4000
+ "@playwright/test": "^1.41.2",
4001
+ "react": "^18.2.0",
4002
+ "react-dom": "^18.2.0",
4003
+ "sass": "^1.3.0"
4004
+ },
4005
+ "peerDependenciesMeta": {
4006
+ "@opentelemetry/api": {
4007
+ "optional": true
4008
+ },
4009
+ "@playwright/test": {
4010
+ "optional": true
4011
+ },
4012
+ "sass": {
4013
+ "optional": true
4014
+ }
4015
+ }
4016
+ },
4017
+ "node_modules/next/node_modules/postcss": {
4018
+ "version": "8.4.31",
4019
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss/-/postcss-8.4.31.tgz",
4020
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
4021
+ "dependencies": {
4022
+ "nanoid": "^3.3.6",
4023
+ "picocolors": "^1.0.0",
4024
+ "source-map-js": "^1.0.2"
4025
+ },
4026
+ "engines": {
4027
+ "node": "^10 || ^12 || >=14"
4028
+ }
4029
+ },
4030
+ "node_modules/node-releases": {
4031
+ "version": "2.0.14",
4032
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/node-releases/-/node-releases-2.0.14.tgz",
4033
+ "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==",
4034
+ "dev": true
4035
+ },
4036
+ "node_modules/normalize-path": {
4037
+ "version": "3.0.0",
4038
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/normalize-path/-/normalize-path-3.0.0.tgz",
4039
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
4040
+ "dev": true,
4041
+ "engines": {
4042
+ "node": ">=0.10.0"
4043
+ }
4044
+ },
4045
+ "node_modules/normalize-range": {
4046
+ "version": "0.1.2",
4047
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/normalize-range/-/normalize-range-0.1.2.tgz",
4048
+ "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
4049
+ "dev": true,
4050
+ "engines": {
4051
+ "node": ">=0.10.0"
4052
+ }
4053
+ },
4054
+ "node_modules/object-assign": {
4055
+ "version": "4.1.1",
4056
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object-assign/-/object-assign-4.1.1.tgz",
4057
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
4058
+ "engines": {
4059
+ "node": ">=0.10.0"
4060
+ }
4061
+ },
4062
+ "node_modules/object-hash": {
4063
+ "version": "3.0.0",
4064
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object-hash/-/object-hash-3.0.0.tgz",
4065
+ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
4066
+ "dev": true,
4067
+ "engines": {
4068
+ "node": ">= 6"
4069
+ }
4070
+ },
4071
+ "node_modules/object-inspect": {
4072
+ "version": "1.13.1",
4073
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object-inspect/-/object-inspect-1.13.1.tgz",
4074
+ "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ=="
4075
+ },
4076
+ "node_modules/object-is": {
4077
+ "version": "1.1.5",
4078
+ "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
4079
+ "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
4080
+ "dependencies": {
4081
+ "call-bind": "^1.0.2",
4082
+ "define-properties": "^1.1.3"
4083
+ },
4084
+ "engines": {
4085
+ "node": ">= 0.4"
4086
+ },
4087
+ "funding": {
4088
+ "url": "https://github.com/sponsors/ljharb"
4089
+ }
4090
+ },
4091
+ "node_modules/object-keys": {
4092
+ "version": "1.1.1",
4093
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
4094
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
4095
+ "engines": {
4096
+ "node": ">= 0.4"
4097
+ }
4098
+ },
4099
+ "node_modules/object.assign": {
4100
+ "version": "4.1.5",
4101
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.assign/-/object.assign-4.1.5.tgz",
4102
+ "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
4103
+ "dependencies": {
4104
+ "call-bind": "^1.0.5",
4105
+ "define-properties": "^1.2.1",
4106
+ "has-symbols": "^1.0.3",
4107
+ "object-keys": "^1.1.1"
4108
+ },
4109
+ "engines": {
4110
+ "node": ">= 0.4"
4111
+ }
4112
+ },
4113
+ "node_modules/object.entries": {
4114
+ "version": "1.1.8",
4115
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.entries/-/object.entries-1.1.8.tgz",
4116
+ "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==",
4117
+ "dependencies": {
4118
+ "call-bind": "^1.0.7",
4119
+ "define-properties": "^1.2.1",
4120
+ "es-object-atoms": "^1.0.0"
4121
+ },
4122
+ "engines": {
4123
+ "node": ">= 0.4"
4124
+ }
4125
+ },
4126
+ "node_modules/object.fromentries": {
4127
+ "version": "2.0.8",
4128
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.fromentries/-/object.fromentries-2.0.8.tgz",
4129
+ "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
4130
+ "dependencies": {
4131
+ "call-bind": "^1.0.7",
4132
+ "define-properties": "^1.2.1",
4133
+ "es-abstract": "^1.23.2",
4134
+ "es-object-atoms": "^1.0.0"
4135
+ },
4136
+ "engines": {
4137
+ "node": ">= 0.4"
4138
+ }
4139
+ },
4140
+ "node_modules/object.groupby": {
4141
+ "version": "1.0.3",
4142
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.groupby/-/object.groupby-1.0.3.tgz",
4143
+ "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
4144
+ "dependencies": {
4145
+ "call-bind": "^1.0.7",
4146
+ "define-properties": "^1.2.1",
4147
+ "es-abstract": "^1.23.2"
4148
+ },
4149
+ "engines": {
4150
+ "node": ">= 0.4"
4151
+ }
4152
+ },
4153
+ "node_modules/object.hasown": {
4154
+ "version": "1.1.4",
4155
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.hasown/-/object.hasown-1.1.4.tgz",
4156
+ "integrity": "sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==",
4157
+ "dependencies": {
4158
+ "define-properties": "^1.2.1",
4159
+ "es-abstract": "^1.23.2",
4160
+ "es-object-atoms": "^1.0.0"
4161
+ },
4162
+ "engines": {
4163
+ "node": ">= 0.4"
4164
+ }
4165
+ },
4166
+ "node_modules/object.values": {
4167
+ "version": "1.2.0",
4168
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/object.values/-/object.values-1.2.0.tgz",
4169
+ "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==",
4170
+ "dependencies": {
4171
+ "call-bind": "^1.0.7",
4172
+ "define-properties": "^1.2.1",
4173
+ "es-object-atoms": "^1.0.0"
4174
+ },
4175
+ "engines": {
4176
+ "node": ">= 0.4"
4177
+ }
4178
+ },
4179
+ "node_modules/once": {
4180
+ "version": "1.4.0",
4181
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
4182
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
4183
+ "dependencies": {
4184
+ "wrappy": "1"
4185
+ }
4186
+ },
4187
+ "node_modules/open": {
4188
+ "version": "8.4.0",
4189
+ "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz",
4190
+ "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
4191
+ "dependencies": {
4192
+ "define-lazy-prop": "^2.0.0",
4193
+ "is-docker": "^2.1.1",
4194
+ "is-wsl": "^2.2.0"
4195
+ },
4196
+ "engines": {
4197
+ "node": ">=12"
4198
+ },
4199
+ "funding": {
4200
+ "url": "https://github.com/sponsors/sindresorhus"
4201
+ }
4202
+ },
4203
+ "node_modules/optionator": {
4204
+ "version": "0.9.1",
4205
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
4206
+ "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
4207
+ "dependencies": {
4208
+ "deep-is": "^0.1.3",
4209
+ "fast-levenshtein": "^2.0.6",
4210
+ "levn": "^0.4.1",
4211
+ "prelude-ls": "^1.2.1",
4212
+ "type-check": "^0.4.0",
4213
+ "word-wrap": "^1.2.3"
4214
+ },
4215
+ "engines": {
4216
+ "node": ">= 0.8.0"
4217
+ }
4218
+ },
4219
+ "node_modules/p-limit": {
4220
+ "version": "3.1.0",
4221
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
4222
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
4223
+ "dependencies": {
4224
+ "yocto-queue": "^0.1.0"
4225
+ },
4226
+ "engines": {
4227
+ "node": ">=10"
4228
+ },
4229
+ "funding": {
4230
+ "url": "https://github.com/sponsors/sindresorhus"
4231
+ }
4232
+ },
4233
+ "node_modules/p-locate": {
4234
+ "version": "5.0.0",
4235
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
4236
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
4237
+ "dependencies": {
4238
+ "p-limit": "^3.0.2"
4239
+ },
4240
+ "engines": {
4241
+ "node": ">=10"
4242
+ },
4243
+ "funding": {
4244
+ "url": "https://github.com/sponsors/sindresorhus"
4245
+ }
4246
+ },
4247
+ "node_modules/parent-module": {
4248
+ "version": "1.0.1",
4249
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
4250
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
4251
+ "dependencies": {
4252
+ "callsites": "^3.0.0"
4253
+ },
4254
+ "engines": {
4255
+ "node": ">=6"
4256
+ }
4257
+ },
4258
+ "node_modules/path-exists": {
4259
+ "version": "4.0.0",
4260
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
4261
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
4262
+ "engines": {
4263
+ "node": ">=8"
4264
+ }
4265
+ },
4266
+ "node_modules/path-is-absolute": {
4267
+ "version": "1.0.1",
4268
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
4269
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
4270
+ "engines": {
4271
+ "node": ">=0.10.0"
4272
+ }
4273
+ },
4274
+ "node_modules/path-key": {
4275
+ "version": "3.1.1",
4276
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
4277
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
4278
+ "engines": {
4279
+ "node": ">=8"
4280
+ }
4281
+ },
4282
+ "node_modules/path-parse": {
4283
+ "version": "1.0.7",
4284
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/path-parse/-/path-parse-1.0.7.tgz",
4285
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
4286
+ },
4287
+ "node_modules/path-scurry": {
4288
+ "version": "1.10.2",
4289
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/path-scurry/-/path-scurry-1.10.2.tgz",
4290
+ "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==",
4291
+ "dependencies": {
4292
+ "lru-cache": "^10.2.0",
4293
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
4294
+ },
4295
+ "engines": {
4296
+ "node": ">=16 || 14 >=14.17"
4297
+ }
4298
+ },
4299
+ "node_modules/path-scurry/node_modules/lru-cache": {
4300
+ "version": "10.2.0",
4301
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lru-cache/-/lru-cache-10.2.0.tgz",
4302
+ "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
4303
+ "engines": {
4304
+ "node": "14 || >=16.14"
4305
+ }
4306
+ },
4307
+ "node_modules/path-type": {
4308
+ "version": "4.0.0",
4309
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
4310
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
4311
+ "engines": {
4312
+ "node": ">=8"
4313
+ }
4314
+ },
4315
+ "node_modules/periscopic": {
4316
+ "version": "3.1.0",
4317
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/periscopic/-/periscopic-3.1.0.tgz",
4318
+ "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==",
4319
+ "peer": true,
4320
+ "dependencies": {
4321
+ "@types/estree": "^1.0.0",
4322
+ "estree-walker": "^3.0.0",
4323
+ "is-reference": "^3.0.0"
4324
+ }
4325
+ },
4326
+ "node_modules/picocolors": {
4327
+ "version": "1.0.0",
4328
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
4329
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
4330
+ },
4331
+ "node_modules/picomatch": {
4332
+ "version": "2.3.1",
4333
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
4334
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
4335
+ "engines": {
4336
+ "node": ">=8.6"
4337
+ },
4338
+ "funding": {
4339
+ "url": "https://github.com/sponsors/jonschlinkert"
4340
+ }
4341
+ },
4342
+ "node_modules/pify": {
4343
+ "version": "2.3.0",
4344
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/pify/-/pify-2.3.0.tgz",
4345
+ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
4346
+ "dev": true,
4347
+ "engines": {
4348
+ "node": ">=0.10.0"
4349
+ }
4350
+ },
4351
+ "node_modules/pirates": {
4352
+ "version": "4.0.6",
4353
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/pirates/-/pirates-4.0.6.tgz",
4354
+ "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
4355
+ "dev": true,
4356
+ "engines": {
4357
+ "node": ">= 6"
4358
+ }
4359
+ },
4360
+ "node_modules/possible-typed-array-names": {
4361
+ "version": "1.0.0",
4362
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
4363
+ "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
4364
+ "engines": {
4365
+ "node": ">= 0.4"
4366
+ }
4367
+ },
4368
+ "node_modules/postcss": {
4369
+ "version": "8.4.38",
4370
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss/-/postcss-8.4.38.tgz",
4371
+ "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==",
4372
+ "dependencies": {
4373
+ "nanoid": "^3.3.7",
4374
+ "picocolors": "^1.0.0",
4375
+ "source-map-js": "^1.2.0"
4376
+ },
4377
+ "engines": {
4378
+ "node": "^10 || ^12 || >=14"
4379
+ }
4380
+ },
4381
+ "node_modules/postcss-import": {
4382
+ "version": "15.1.0",
4383
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-import/-/postcss-import-15.1.0.tgz",
4384
+ "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
4385
+ "dev": true,
4386
+ "dependencies": {
4387
+ "postcss-value-parser": "^4.0.0",
4388
+ "read-cache": "^1.0.0",
4389
+ "resolve": "^1.1.7"
4390
+ },
4391
+ "engines": {
4392
+ "node": ">=14.0.0"
4393
+ },
4394
+ "peerDependencies": {
4395
+ "postcss": "^8.0.0"
4396
+ }
4397
+ },
4398
+ "node_modules/postcss-js": {
4399
+ "version": "4.0.1",
4400
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-js/-/postcss-js-4.0.1.tgz",
4401
+ "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
4402
+ "dev": true,
4403
+ "dependencies": {
4404
+ "camelcase-css": "^2.0.1"
4405
+ },
4406
+ "engines": {
4407
+ "node": "^12 || ^14 || >= 16"
4408
+ },
4409
+ "peerDependencies": {
4410
+ "postcss": "^8.4.21"
4411
+ }
4412
+ },
4413
+ "node_modules/postcss-load-config": {
4414
+ "version": "4.0.2",
4415
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
4416
+ "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
4417
+ "dev": true,
4418
+ "dependencies": {
4419
+ "lilconfig": "^3.0.0",
4420
+ "yaml": "^2.3.4"
4421
+ },
4422
+ "engines": {
4423
+ "node": ">= 14"
4424
+ },
4425
+ "peerDependencies": {
4426
+ "postcss": ">=8.0.9",
4427
+ "ts-node": ">=9.0.0"
4428
+ },
4429
+ "peerDependenciesMeta": {
4430
+ "postcss": {
4431
+ "optional": true
4432
+ },
4433
+ "ts-node": {
4434
+ "optional": true
4435
+ }
4436
+ }
4437
+ },
4438
+ "node_modules/postcss-load-config/node_modules/lilconfig": {
4439
+ "version": "3.1.1",
4440
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/lilconfig/-/lilconfig-3.1.1.tgz",
4441
+ "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==",
4442
+ "dev": true,
4443
+ "engines": {
4444
+ "node": ">=14"
4445
+ }
4446
+ },
4447
+ "node_modules/postcss-nested": {
4448
+ "version": "6.0.1",
4449
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-nested/-/postcss-nested-6.0.1.tgz",
4450
+ "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
4451
+ "dev": true,
4452
+ "dependencies": {
4453
+ "postcss-selector-parser": "^6.0.11"
4454
+ },
4455
+ "engines": {
4456
+ "node": ">=12.0"
4457
+ },
4458
+ "peerDependencies": {
4459
+ "postcss": "^8.2.14"
4460
+ }
4461
+ },
4462
+ "node_modules/postcss-selector-parser": {
4463
+ "version": "6.0.16",
4464
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz",
4465
+ "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==",
4466
+ "dev": true,
4467
+ "dependencies": {
4468
+ "cssesc": "^3.0.0",
4469
+ "util-deprecate": "^1.0.2"
4470
+ },
4471
+ "engines": {
4472
+ "node": ">=4"
4473
+ }
4474
+ },
4475
+ "node_modules/postcss-value-parser": {
4476
+ "version": "4.2.0",
4477
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
4478
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
4479
+ "dev": true
4480
+ },
4481
+ "node_modules/prelude-ls": {
4482
+ "version": "1.2.1",
4483
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
4484
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
4485
+ "engines": {
4486
+ "node": ">= 0.8.0"
4487
+ }
4488
+ },
4489
+ "node_modules/prop-types": {
4490
+ "version": "15.8.1",
4491
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/prop-types/-/prop-types-15.8.1.tgz",
4492
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
4493
+ "dependencies": {
4494
+ "loose-envify": "^1.4.0",
4495
+ "object-assign": "^4.1.1",
4496
+ "react-is": "^16.13.1"
4497
+ }
4498
+ },
4499
+ "node_modules/punycode": {
4500
+ "version": "2.2.0",
4501
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.2.0.tgz",
4502
+ "integrity": "sha512-LN6QV1IJ9ZhxWTNdktaPClrNfp8xdSAYS0Zk2ddX7XsXZAxckMHPCBcHRo0cTcEIgYPRiGEkmji3Idkh2yFtYw==",
4503
+ "engines": {
4504
+ "node": ">=6"
4505
+ }
4506
+ },
4507
+ "node_modules/queue-microtask": {
4508
+ "version": "1.2.3",
4509
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
4510
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
4511
+ "funding": [
4512
+ {
4513
+ "type": "github",
4514
+ "url": "https://github.com/sponsors/feross"
4515
+ },
4516
+ {
4517
+ "type": "patreon",
4518
+ "url": "https://www.patreon.com/feross"
4519
+ },
4520
+ {
4521
+ "type": "consulting",
4522
+ "url": "https://feross.org/support"
4523
+ }
4524
+ ]
4525
+ },
4526
+ "node_modules/react": {
4527
+ "version": "18.2.0",
4528
+ "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
4529
+ "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
4530
+ "dependencies": {
4531
+ "loose-envify": "^1.1.0"
4532
+ },
4533
+ "engines": {
4534
+ "node": ">=0.10.0"
4535
+ }
4536
+ },
4537
+ "node_modules/react-dom": {
4538
+ "version": "18.2.0",
4539
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
4540
+ "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
4541
+ "dependencies": {
4542
+ "loose-envify": "^1.1.0",
4543
+ "scheduler": "^0.23.0"
4544
+ },
4545
+ "peerDependencies": {
4546
+ "react": "^18.2.0"
4547
+ }
4548
+ },
4549
+ "node_modules/react-hot-toast": {
4550
+ "version": "2.4.1",
4551
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/react-hot-toast/-/react-hot-toast-2.4.1.tgz",
4552
+ "integrity": "sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==",
4553
+ "dependencies": {
4554
+ "goober": "^2.1.10"
4555
+ },
4556
+ "engines": {
4557
+ "node": ">=10"
4558
+ },
4559
+ "peerDependencies": {
4560
+ "react": ">=16",
4561
+ "react-dom": ">=16"
4562
+ }
4563
+ },
4564
+ "node_modules/react-is": {
4565
+ "version": "16.13.1",
4566
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/react-is/-/react-is-16.13.1.tgz",
4567
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
4568
+ },
4569
+ "node_modules/react-textarea-autosize": {
4570
+ "version": "8.5.3",
4571
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz",
4572
+ "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==",
4573
+ "dependencies": {
4574
+ "@babel/runtime": "^7.20.13",
4575
+ "use-composed-ref": "^1.3.0",
4576
+ "use-latest": "^1.2.1"
4577
+ },
4578
+ "engines": {
4579
+ "node": ">=10"
4580
+ },
4581
+ "peerDependencies": {
4582
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
4583
+ }
4584
+ },
4585
+ "node_modules/read-cache": {
4586
+ "version": "1.0.0",
4587
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/read-cache/-/read-cache-1.0.0.tgz",
4588
+ "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
4589
+ "dev": true,
4590
+ "dependencies": {
4591
+ "pify": "^2.3.0"
4592
+ }
4593
+ },
4594
+ "node_modules/readdirp": {
4595
+ "version": "3.6.0",
4596
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/readdirp/-/readdirp-3.6.0.tgz",
4597
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
4598
+ "dev": true,
4599
+ "dependencies": {
4600
+ "picomatch": "^2.2.1"
4601
+ },
4602
+ "engines": {
4603
+ "node": ">=8.10.0"
4604
+ }
4605
+ },
4606
+ "node_modules/reflect.getprototypeof": {
4607
+ "version": "1.0.6",
4608
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz",
4609
+ "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==",
4610
+ "dependencies": {
4611
+ "call-bind": "^1.0.7",
4612
+ "define-properties": "^1.2.1",
4613
+ "es-abstract": "^1.23.1",
4614
+ "es-errors": "^1.3.0",
4615
+ "get-intrinsic": "^1.2.4",
4616
+ "globalthis": "^1.0.3",
4617
+ "which-builtin-type": "^1.1.3"
4618
+ },
4619
+ "engines": {
4620
+ "node": ">= 0.4"
4621
+ }
4622
+ },
4623
+ "node_modules/regenerator-runtime": {
4624
+ "version": "0.14.1",
4625
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
4626
+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
4627
+ },
4628
+ "node_modules/regexp.prototype.flags": {
4629
+ "version": "1.5.2",
4630
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz",
4631
+ "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==",
4632
+ "dependencies": {
4633
+ "call-bind": "^1.0.6",
4634
+ "define-properties": "^1.2.1",
4635
+ "es-errors": "^1.3.0",
4636
+ "set-function-name": "^2.0.1"
4637
+ },
4638
+ "engines": {
4639
+ "node": ">= 0.4"
4640
+ }
4641
+ },
4642
+ "node_modules/regexpp": {
4643
+ "version": "3.2.0",
4644
+ "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
4645
+ "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
4646
+ "engines": {
4647
+ "node": ">=8"
4648
+ },
4649
+ "funding": {
4650
+ "url": "https://github.com/sponsors/mysticatea"
4651
+ }
4652
+ },
4653
+ "node_modules/resolve": {
4654
+ "version": "1.22.8",
4655
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/resolve/-/resolve-1.22.8.tgz",
4656
+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
4657
+ "dependencies": {
4658
+ "is-core-module": "^2.13.0",
4659
+ "path-parse": "^1.0.7",
4660
+ "supports-preserve-symlinks-flag": "^1.0.0"
4661
+ },
4662
+ "bin": {
4663
+ "resolve": "bin/resolve"
4664
+ }
4665
+ },
4666
+ "node_modules/resolve-from": {
4667
+ "version": "4.0.0",
4668
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
4669
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
4670
+ "engines": {
4671
+ "node": ">=4"
4672
+ }
4673
+ },
4674
+ "node_modules/reusify": {
4675
+ "version": "1.0.4",
4676
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
4677
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
4678
+ "engines": {
4679
+ "iojs": ">=1.0.0",
4680
+ "node": ">=0.10.0"
4681
+ }
4682
+ },
4683
+ "node_modules/rimraf": {
4684
+ "version": "3.0.2",
4685
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
4686
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
4687
+ "dependencies": {
4688
+ "glob": "^7.1.3"
4689
+ },
4690
+ "bin": {
4691
+ "rimraf": "bin.js"
4692
+ },
4693
+ "funding": {
4694
+ "url": "https://github.com/sponsors/isaacs"
4695
+ }
4696
+ },
4697
+ "node_modules/run-parallel": {
4698
+ "version": "1.2.0",
4699
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
4700
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
4701
+ "funding": [
4702
+ {
4703
+ "type": "github",
4704
+ "url": "https://github.com/sponsors/feross"
4705
+ },
4706
+ {
4707
+ "type": "patreon",
4708
+ "url": "https://www.patreon.com/feross"
4709
+ },
4710
+ {
4711
+ "type": "consulting",
4712
+ "url": "https://feross.org/support"
4713
+ }
4714
+ ],
4715
+ "dependencies": {
4716
+ "queue-microtask": "^1.2.2"
4717
+ }
4718
+ },
4719
+ "node_modules/safe-array-concat": {
4720
+ "version": "1.1.2",
4721
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/safe-array-concat/-/safe-array-concat-1.1.2.tgz",
4722
+ "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==",
4723
+ "dependencies": {
4724
+ "call-bind": "^1.0.7",
4725
+ "get-intrinsic": "^1.2.4",
4726
+ "has-symbols": "^1.0.3",
4727
+ "isarray": "^2.0.5"
4728
+ },
4729
+ "engines": {
4730
+ "node": ">=0.4"
4731
+ }
4732
+ },
4733
+ "node_modules/safe-regex-test": {
4734
+ "version": "1.0.3",
4735
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/safe-regex-test/-/safe-regex-test-1.0.3.tgz",
4736
+ "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==",
4737
+ "dependencies": {
4738
+ "call-bind": "^1.0.6",
4739
+ "es-errors": "^1.3.0",
4740
+ "is-regex": "^1.1.4"
4741
+ },
4742
+ "engines": {
4743
+ "node": ">= 0.4"
4744
+ }
4745
+ },
4746
+ "node_modules/scheduler": {
4747
+ "version": "0.23.0",
4748
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
4749
+ "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
4750
+ "dependencies": {
4751
+ "loose-envify": "^1.1.0"
4752
+ }
4753
+ },
4754
+ "node_modules/semver": {
4755
+ "version": "7.6.0",
4756
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/semver/-/semver-7.6.0.tgz",
4757
+ "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
4758
+ "dependencies": {
4759
+ "lru-cache": "^6.0.0"
4760
+ },
4761
+ "bin": {
4762
+ "semver": "bin/semver.js"
4763
+ },
4764
+ "engines": {
4765
+ "node": ">=10"
4766
+ }
4767
+ },
4768
+ "node_modules/seroval": {
4769
+ "version": "1.0.5",
4770
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/seroval/-/seroval-1.0.5.tgz",
4771
+ "integrity": "sha512-TM+Z11tHHvQVQKeNlOUonOWnsNM+2IBwZ4vwoi4j3zKzIpc5IDw8WPwCfcc8F17wy6cBcJGbZbFOR0UCuTZHQA==",
4772
+ "peer": true,
4773
+ "engines": {
4774
+ "node": ">=10"
4775
+ }
4776
+ },
4777
+ "node_modules/seroval-plugins": {
4778
+ "version": "1.0.5",
4779
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/seroval-plugins/-/seroval-plugins-1.0.5.tgz",
4780
+ "integrity": "sha512-8+pDC1vOedPXjKG7oz8o+iiHrtF2WswaMQJ7CKFpccvSYfrzmvKY9zOJWCg+881722wIHfwkdnRmiiDm9ym+zQ==",
4781
+ "peer": true,
4782
+ "engines": {
4783
+ "node": ">=10"
4784
+ },
4785
+ "peerDependencies": {
4786
+ "seroval": "^1.0"
4787
+ }
4788
+ },
4789
+ "node_modules/set-function-length": {
4790
+ "version": "1.2.2",
4791
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/set-function-length/-/set-function-length-1.2.2.tgz",
4792
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
4793
+ "dependencies": {
4794
+ "define-data-property": "^1.1.4",
4795
+ "es-errors": "^1.3.0",
4796
+ "function-bind": "^1.1.2",
4797
+ "get-intrinsic": "^1.2.4",
4798
+ "gopd": "^1.0.1",
4799
+ "has-property-descriptors": "^1.0.2"
4800
+ },
4801
+ "engines": {
4802
+ "node": ">= 0.4"
4803
+ }
4804
+ },
4805
+ "node_modules/set-function-name": {
4806
+ "version": "2.0.2",
4807
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/set-function-name/-/set-function-name-2.0.2.tgz",
4808
+ "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
4809
+ "dependencies": {
4810
+ "define-data-property": "^1.1.4",
4811
+ "es-errors": "^1.3.0",
4812
+ "functions-have-names": "^1.2.3",
4813
+ "has-property-descriptors": "^1.0.2"
4814
+ },
4815
+ "engines": {
4816
+ "node": ">= 0.4"
4817
+ }
4818
+ },
4819
+ "node_modules/shebang-command": {
4820
+ "version": "2.0.0",
4821
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
4822
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
4823
+ "dependencies": {
4824
+ "shebang-regex": "^3.0.0"
4825
+ },
4826
+ "engines": {
4827
+ "node": ">=8"
4828
+ }
4829
+ },
4830
+ "node_modules/shebang-regex": {
4831
+ "version": "3.0.0",
4832
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
4833
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
4834
+ "engines": {
4835
+ "node": ">=8"
4836
+ }
4837
+ },
4838
+ "node_modules/side-channel": {
4839
+ "version": "1.0.6",
4840
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/side-channel/-/side-channel-1.0.6.tgz",
4841
+ "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
4842
+ "dependencies": {
4843
+ "call-bind": "^1.0.7",
4844
+ "es-errors": "^1.3.0",
4845
+ "get-intrinsic": "^1.2.4",
4846
+ "object-inspect": "^1.13.1"
4847
+ },
4848
+ "engines": {
4849
+ "node": ">= 0.4"
4850
+ }
4851
+ },
4852
+ "node_modules/signal-exit": {
4853
+ "version": "4.1.0",
4854
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/signal-exit/-/signal-exit-4.1.0.tgz",
4855
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
4856
+ "engines": {
4857
+ "node": ">=14"
4858
+ }
4859
+ },
4860
+ "node_modules/slash": {
4861
+ "version": "3.0.0",
4862
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
4863
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
4864
+ "engines": {
4865
+ "node": ">=8"
4866
+ }
4867
+ },
4868
+ "node_modules/solid-js": {
4869
+ "version": "1.8.16",
4870
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/solid-js/-/solid-js-1.8.16.tgz",
4871
+ "integrity": "sha512-rja94MNU9flF3qQRLNsu60QHKBDKBkVE1DldJZPIfn2ypIn3NV2WpSbGTQIvsyGPBo+9E2IMjwqnqpbgfWuzeg==",
4872
+ "peer": true,
4873
+ "dependencies": {
4874
+ "csstype": "^3.1.0",
4875
+ "seroval": "^1.0.4",
4876
+ "seroval-plugins": "^1.0.3"
4877
+ }
4878
+ },
4879
+ "node_modules/solid-swr-store": {
4880
+ "version": "0.10.7",
4881
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/solid-swr-store/-/solid-swr-store-0.10.7.tgz",
4882
+ "integrity": "sha512-A6d68aJmRP471aWqKKPE2tpgOiR5fH4qXQNfKIec+Vap+MGQm3tvXlT8n0I8UgJSlNAsSAUuw2VTviH2h3Vv5g==",
4883
+ "engines": {
4884
+ "node": ">=10"
4885
+ },
4886
+ "peerDependencies": {
4887
+ "solid-js": "^1.2",
4888
+ "swr-store": "^0.10"
4889
+ }
4890
+ },
4891
+ "node_modules/source-map-js": {
4892
+ "version": "1.2.0",
4893
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/source-map-js/-/source-map-js-1.2.0.tgz",
4894
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
4895
+ "engines": {
4896
+ "node": ">=0.10.0"
4897
+ }
4898
+ },
4899
+ "node_modules/sswr": {
4900
+ "version": "2.0.0",
4901
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/sswr/-/sswr-2.0.0.tgz",
4902
+ "integrity": "sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==",
4903
+ "dependencies": {
4904
+ "swrev": "^4.0.0"
4905
+ },
4906
+ "peerDependencies": {
4907
+ "svelte": "^4.0.0"
4908
+ }
4909
+ },
4910
+ "node_modules/stop-iteration-iterator": {
4911
+ "version": "1.0.0",
4912
+ "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
4913
+ "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==",
4914
+ "dependencies": {
4915
+ "internal-slot": "^1.0.4"
4916
+ },
4917
+ "engines": {
4918
+ "node": ">= 0.4"
4919
+ }
4920
+ },
4921
+ "node_modules/streamsearch": {
4922
+ "version": "1.1.0",
4923
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/streamsearch/-/streamsearch-1.1.0.tgz",
4924
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
4925
+ "engines": {
4926
+ "node": ">=10.0.0"
4927
+ }
4928
+ },
4929
+ "node_modules/string-width": {
4930
+ "version": "5.1.2",
4931
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/string-width/-/string-width-5.1.2.tgz",
4932
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
4933
+ "dependencies": {
4934
+ "eastasianwidth": "^0.2.0",
4935
+ "emoji-regex": "^9.2.2",
4936
+ "strip-ansi": "^7.0.1"
4937
+ },
4938
+ "engines": {
4939
+ "node": ">=12"
4940
+ }
4941
+ },
4942
+ "node_modules/string-width-cjs": {
4943
+ "name": "string-width",
4944
+ "version": "4.2.3",
4945
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/string-width/-/string-width-4.2.3.tgz",
4946
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
4947
+ "dependencies": {
4948
+ "emoji-regex": "^8.0.0",
4949
+ "is-fullwidth-code-point": "^3.0.0",
4950
+ "strip-ansi": "^6.0.1"
4951
+ },
4952
+ "engines": {
4953
+ "node": ">=8"
4954
+ }
4955
+ },
4956
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
4957
+ "version": "8.0.0",
4958
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/emoji-regex/-/emoji-regex-8.0.0.tgz",
4959
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
4960
+ },
4961
+ "node_modules/string-width/node_modules/ansi-regex": {
4962
+ "version": "6.0.1",
4963
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/ansi-regex/-/ansi-regex-6.0.1.tgz",
4964
+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
4965
+ "engines": {
4966
+ "node": ">=12"
4967
+ }
4968
+ },
4969
+ "node_modules/string-width/node_modules/strip-ansi": {
4970
+ "version": "7.1.0",
4971
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/strip-ansi/-/strip-ansi-7.1.0.tgz",
4972
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
4973
+ "dependencies": {
4974
+ "ansi-regex": "^6.0.1"
4975
+ },
4976
+ "engines": {
4977
+ "node": ">=12"
4978
+ }
4979
+ },
4980
+ "node_modules/string.prototype.matchall": {
4981
+ "version": "4.0.11",
4982
+ "resolved": "https://viaplay.jfrog.io/artifactory/api/npm/mtg-npm-virtual/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz",
4983
+ "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==",
4984
+ "dependencies": {
4985
+ "call-bind": "^1.0.7",
4986
+ "define-properties": "^1.2.1",
4987
+ "es-abstract": "^1.23.2",
4988
+ "es-errors": "^1.3.0",
4989
+ "es-object-atoms": "^1.0.0",
4990
+ "get-intrinsic": "^1.2.4",
4991
+ "gopd": "^1.0.1",
4992
+ "has-symbols": "^1.0.3",
4993
+ "internal-slot": "^1.0.7",
4994
+ "regexp.prototype.flags": "^1.5.2",
4995
+ "set-function-name": "^2.0.2",
4996
+ "side-channel": "^1.0.6"
4997
+ },
4998
+ "engines": {
4999
+ "node": ">= 0.4"
This file is too large to show in full.
frontend/desktop/package.json
new
+40
@@ -0,0 +1,40 @@
1
+{
2
+ "name": "tower-of-bazel",
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",
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",
14
+ "ai": "^2.2.33",
15
+ "clsx": "1.2.1",
16
+ "eslint": "8.32.0",
17
+ "eslint-config-next": "14.1.0",
18
+ "next": "14.2.5",
19
+ "react": "18.2.0",
20
+ "react-hot-toast": "^2.4.1",
21
+ "react-textarea-autosize": "^8.5.3",
22
+ "react-dom": "18.2.0",
23
+ "typescript": "4.9.4",
24
+ "tailwind-merge": "^2.2.1"
25
+ },
26
+ "devDependencies": {
27
+ "@tailwindcss/forms": "0.5.3",
28
+ "@tailwindcss/typography": "0.5.9",
29
+ "@tauri-apps/cli": "^1.5.14",
30
+ "autoprefixer": "^10.4.19",
31
+ "postcss": "^8.4.38",
32
+ "tailwindcss": "^3.4.3"
33
+ },
34
+ "scripts": {
35
+ "next-dev": "next dev",
36
+ "next-build": "next build",
37
+ "tauri-dev": "tauri dev",
38
+ "tauri-build": "tauri build"
39
+ }
40
+}
frontend/desktop/postcss.config.js
new
+6
@@ -0,0 +1,6 @@
1
+module.exports = {
2
+ plugins: {
3
+ tailwindcss: {},
4
+ autoprefixer: {},
5
+ },
6
+}
frontend/desktop/public/favicon.ico
Binary files /dev/null and b/frontend/desktop/public/favicon.ico differ
frontend/desktop/public/grid.svg
new
+5
@@ -0,0 +1,5 @@
1
+
2
+<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">
3
+ <path d="M96,95h4v1H96v4H95V96H86v4H85V96H76v4H75V96H66v4H65V96H56v4H55V96H46v4H45V96H36v4H35V96H26v4H25V96H16v4H15V96H0V95H15V86H0V85H15V76H0V75H15V66H0V65H15V56H0V55H15V46H0V45H15V36H0V35H15V26H0V25H15V16H0V15H15V0h1V15h9V0h1V15h9V0h1V15h9V0h1V15h9V0h1V15h9V0h1V15h9V0h1V15h9V0h1V15h9V0h1V15h4v1H96v9h4v1H96v9h4v1H96v9h4v1H96v9h4v1H96v9h4v1H96v9h4v1H96v9h4v1H96Zm-1,0V86H86v9ZM85,95V86H76v9ZM75,95V86H66v9ZM65,95V86H56v9ZM55,95V86H46v9ZM45,95V86H36v9ZM35,95V86H26v9ZM25,95V86H16v9ZM16,85h9V76H16Zm10,0h9V76H26Zm10,0h9V76H36Zm10,0h9V76H46Zm10,0h9V76H56Zm10,0h9V76H66Zm10,0h9V76H76Zm10,0h9V76H86Zm9-10V66H86v9ZM85,75V66H76v9ZM75,75V66H66v9ZM65,75V66H56v9ZM55,75V66H46v9ZM45,75V66H36v9ZM35,75V66H26v9ZM25,75V66H16v9ZM16,65h9V56H16Zm10,0h9V56H26Zm10,0h9V56H36Zm10,0h9V56H46Zm10,0h9V56H56Zm10,0h9V56H66Zm10,0h9V56H76Zm10,0h9V56H86Zm9-10V46H86v9ZM85,55V46H76v9ZM75,55V46H66v9ZM65,55V46H56v9ZM55,55V46H46v9ZM45,55V46H36v9ZM35,55V46H26v9ZM25,55V46H16v9ZM16,45h9V36H16Zm10,0h9V36H26Zm10,0h9V36H36Zm10,0h9V36H46Zm10,0h9V36H56Zm10,0h9V36H66Zm10,0h9V36H76Zm10,0h9V36H86Zm9-10V26H86v9ZM85,35V26H76v9ZM75,35V26H66v9ZM65,35V26H56v9ZM55,35V26H46v9ZM45,35V26H36v9ZM35,35V26H26v9ZM25,35V26H16v9ZM16,25h9V16H16Zm10,0h9V16H26Zm10,0h9V16H36Zm10,0h9V16H46Zm10,0h9V16H56Zm10,0h9V16H66Zm10,0h9V16H76Zm10,0h9V16H86Z" fill="rgba(255,255,255,0.2)" fill-rule="evenodd" opacity="0.2"/>
4
+ <path d="M6,5V0H5V5H0V6H5v94H6V6h94V5Z" fill="rgba(255,255,255,0.075)" fill-rule="evenodd"/>
5
+</svg>
frontend/desktop/public/logo192.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:3c29ea5c2e0ef54ca5ab7b80ee6a9f35ba80cbe5cdfc6da0b1804a1762f10d1b
3
+size 24772
frontend/desktop/src-tauri/.gitignore
new
+4
@@ -0,0 +1,4 @@
1
+# Generated by Cargo
2
+# will have compiled files and executables
3
+/target/
4
+
frontend/desktop/src-tauri/Cargo.lock
new
+3662
@@ -0,0 +1,3662 @@
1
+# This file is automatically @generated by Cargo.
2
+# It is not intended for manual editing.
3
+version = 3
4
+
5
+[[package]]
6
+name = "adler"
7
+version = "1.0.2"
8
+source = "registry+https://github.com/rust-lang/crates.io-index"
9
+checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+[[package]]
12
+name = "aho-corasick"
13
+version = "0.7.20"
14
+source = "registry+https://github.com/rust-lang/crates.io-index"
15
+checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
16
+dependencies = [
17
+ "memchr",
18
+]
19
+
20
+[[package]]
21
+name = "alloc-no-stdlib"
22
+version = "2.0.4"
23
+source = "registry+https://github.com/rust-lang/crates.io-index"
24
+checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
25
+
26
+[[package]]
27
+name = "alloc-stdlib"
28
+version = "0.2.2"
29
+source = "registry+https://github.com/rust-lang/crates.io-index"
30
+checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
31
+dependencies = [
32
+ "alloc-no-stdlib",
33
+]
34
+
35
+[[package]]
36
+name = "android-tzdata"
37
+version = "0.1.1"
38
+source = "registry+https://github.com/rust-lang/crates.io-index"
39
+checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
40
+
41
+[[package]]
42
+name = "android_system_properties"
43
+version = "0.1.5"
44
+source = "registry+https://github.com/rust-lang/crates.io-index"
45
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
46
+dependencies = [
47
+ "libc",
48
+]
49
+
50
+[[package]]
51
+name = "anyhow"
52
+version = "1.0.68"
53
+source = "registry+https://github.com/rust-lang/crates.io-index"
54
+checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
55
+
56
+[[package]]
57
+name = "atk"
58
+version = "0.15.1"
59
+source = "registry+https://github.com/rust-lang/crates.io-index"
60
+checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd"
61
+dependencies = [
62
+ "atk-sys",
63
+ "bitflags",
64
+ "glib",
65
+ "libc",
66
+]
67
+
68
+[[package]]
69
+name = "atk-sys"
70
+version = "0.15.1"
71
+source = "registry+https://github.com/rust-lang/crates.io-index"
72
+checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6"
73
+dependencies = [
74
+ "glib-sys",
75
+ "gobject-sys",
76
+ "libc",
77
+ "system-deps 6.0.3",
78
+]
79
+
80
+[[package]]
81
+name = "autocfg"
82
+version = "1.1.0"
83
+source = "registry+https://github.com/rust-lang/crates.io-index"
84
+checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
85
+
86
+[[package]]
87
+name = "base64"
88
+version = "0.13.1"
89
+source = "registry+https://github.com/rust-lang/crates.io-index"
90
+checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
91
+
92
+[[package]]
93
+name = "base64"
94
+version = "0.21.7"
95
+source = "registry+https://github.com/rust-lang/crates.io-index"
96
+checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
97
+
98
+[[package]]
99
+name = "bitflags"
100
+version = "1.3.2"
101
+source = "registry+https://github.com/rust-lang/crates.io-index"
102
+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
103
+
104
+[[package]]
105
+name = "block"
106
+version = "0.1.6"
107
+source = "registry+https://github.com/rust-lang/crates.io-index"
108
+checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
109
+
110
+[[package]]
111
+name = "block-buffer"
112
+version = "0.10.3"
113
+source = "registry+https://github.com/rust-lang/crates.io-index"
114
+checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
115
+dependencies = [
116
+ "generic-array",
117
+]
118
+
119
+[[package]]
120
+name = "brotli"
121
+version = "3.3.4"
122
+source = "registry+https://github.com/rust-lang/crates.io-index"
123
+checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
124
+dependencies = [
125
+ "alloc-no-stdlib",
126
+ "alloc-stdlib",
127
+ "brotli-decompressor",
128
+]
129
+
130
+[[package]]
131
+name = "brotli-decompressor"
132
+version = "2.3.4"
133
+source = "registry+https://github.com/rust-lang/crates.io-index"
134
+checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
135
+dependencies = [
136
+ "alloc-no-stdlib",
137
+ "alloc-stdlib",
138
+]
139
+
140
+[[package]]
141
+name = "bstr"
142
+version = "1.1.0"
143
+source = "registry+https://github.com/rust-lang/crates.io-index"
144
+checksum = "b45ea9b00a7b3f2988e9a65ad3917e62123c38dba709b666506207be96d1790b"
145
+dependencies = [
146
+ "memchr",
147
+ "serde",
148
+]
149
+
150
+[[package]]
151
+name = "bumpalo"
152
+version = "3.16.0"
153
+source = "registry+https://github.com/rust-lang/crates.io-index"
154
+checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
155
+
156
+[[package]]
157
+name = "bytemuck"
158
+version = "1.12.3"
159
+source = "registry+https://github.com/rust-lang/crates.io-index"
160
+checksum = "aaa3a8d9a1ca92e282c96a32d6511b695d7d994d1d102ba85d279f9b2756947f"
161
+
162
+[[package]]
163
+name = "byteorder"
164
+version = "1.4.3"
165
+source = "registry+https://github.com/rust-lang/crates.io-index"
166
+checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
167
+
168
+[[package]]
169
+name = "bytes"
170
+version = "1.3.0"
171
+source = "registry+https://github.com/rust-lang/crates.io-index"
172
+checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
173
+
174
+[[package]]
175
+name = "cairo-rs"
176
+version = "0.15.12"
177
+source = "registry+https://github.com/rust-lang/crates.io-index"
178
+checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
179
+dependencies = [
180
+ "bitflags",
181
+ "cairo-sys-rs",
182
+ "glib",
183
+ "libc",
184
+ "thiserror",
185
+]
186
+
187
+[[package]]
188
+name = "cairo-sys-rs"
189
+version = "0.15.1"
190
+source = "registry+https://github.com/rust-lang/crates.io-index"
191
+checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
192
+dependencies = [
193
+ "glib-sys",
194
+ "libc",
195
+ "system-deps 6.0.3",
196
+]
197
+
198
+[[package]]
199
+name = "cargo_toml"
200
+version = "0.15.3"
201
+source = "registry+https://github.com/rust-lang/crates.io-index"
202
+checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
203
+dependencies = [
204
+ "serde",
205
+ "toml 0.7.8",
206
+]
207
+
208
+[[package]]
209
+name = "cc"
210
+version = "1.0.94"
211
+source = "registry+https://github.com/rust-lang/crates.io-index"
212
+checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7"
213
+
214
+[[package]]
215
+name = "cesu8"
216
+version = "1.1.0"
217
+source = "registry+https://github.com/rust-lang/crates.io-index"
218
+checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
219
+
220
+[[package]]
221
+name = "cfb"
222
+version = "0.7.3"
223
+source = "registry+https://github.com/rust-lang/crates.io-index"
224
+checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
225
+dependencies = [
226
+ "byteorder",
227
+ "fnv",
228
+ "uuid",
229
+]
230
+
231
+[[package]]
232
+name = "cfg-expr"
233
+version = "0.9.1"
234
+source = "registry+https://github.com/rust-lang/crates.io-index"
235
+checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7"
236
+dependencies = [
237
+ "smallvec",
238
+]
239
+
240
+[[package]]
241
+name = "cfg-expr"
242
+version = "0.11.0"
243
+source = "registry+https://github.com/rust-lang/crates.io-index"
244
+checksum = "b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa"
245
+dependencies = [
246
+ "smallvec",
247
+]
248
+
249
+[[package]]
250
+name = "cfg-if"
251
+version = "1.0.0"
252
+source = "registry+https://github.com/rust-lang/crates.io-index"
253
+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
254
+
255
+[[package]]
256
+name = "chrono"
257
+version = "0.4.37"
258
+source = "registry+https://github.com/rust-lang/crates.io-index"
259
+checksum = "8a0d04d43504c61aa6c7531f1871dd0d418d91130162063b789da00fd7057a5e"
260
+dependencies = [
261
+ "android-tzdata",
262
+ "iana-time-zone",
263
+ "num-traits",
264
+ "serde",
265
+ "windows-targets 0.52.5",
266
+]
267
+
268
+[[package]]
269
+name = "cocoa"
270
+version = "0.24.1"
271
+source = "registry+https://github.com/rust-lang/crates.io-index"
272
+checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a"
273
+dependencies = [
274
+ "bitflags",
275
+ "block",
276
+ "cocoa-foundation",
277
+ "core-foundation",
278
+ "core-graphics",
279
+ "foreign-types",
280
+ "libc",
281
+ "objc",
282
+]
283
+
284
+[[package]]
285
+name = "cocoa-foundation"
286
+version = "0.1.0"
287
+source = "registry+https://github.com/rust-lang/crates.io-index"
288
+checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
289
+dependencies = [
290
+ "bitflags",
291
+ "block",
292
+ "core-foundation",
293
+ "core-graphics-types",
294
+ "foreign-types",
295
+ "libc",
296
+ "objc",
297
+]
298
+
299
+[[package]]
300
+name = "color_quant"
301
+version = "1.1.0"
302
+source = "registry+https://github.com/rust-lang/crates.io-index"
303
+checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
304
+
305
+[[package]]
306
+name = "combine"
307
+version = "4.6.6"
308
+source = "registry+https://github.com/rust-lang/crates.io-index"
309
+checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
310
+dependencies = [
311
+ "bytes",
312
+ "memchr",
313
+]
314
+
315
+[[package]]
316
+name = "convert_case"
317
+version = "0.4.0"
318
+source = "registry+https://github.com/rust-lang/crates.io-index"
319
+checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
320
+
321
+[[package]]
322
+name = "core-foundation"
323
+version = "0.9.3"
324
+source = "registry+https://github.com/rust-lang/crates.io-index"
325
+checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
326
+dependencies = [
327
+ "core-foundation-sys",
328
+ "libc",
329
+]
330
+
331
+[[package]]
332
+name = "core-foundation-sys"
333
+version = "0.8.3"
334
+source = "registry+https://github.com/rust-lang/crates.io-index"
335
+checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
336
+
337
+[[package]]
338
+name = "core-graphics"
339
+version = "0.22.3"
340
+source = "registry+https://github.com/rust-lang/crates.io-index"
341
+checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
342
+dependencies = [
343
+ "bitflags",
344
+ "core-foundation",
345
+ "core-graphics-types",
346
+ "foreign-types",
347
+ "libc",
348
+]
349
+
350
+[[package]]
351
+name = "core-graphics-types"
352
+version = "0.1.1"
353
+source = "registry+https://github.com/rust-lang/crates.io-index"
354
+checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
355
+dependencies = [
356
+ "bitflags",
357
+ "core-foundation",
358
+ "foreign-types",
359
+ "libc",
360
+]
361
+
362
+[[package]]
363
+name = "cpufeatures"
364
+version = "0.2.5"
365
+source = "registry+https://github.com/rust-lang/crates.io-index"
366
+checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
367
+dependencies = [
368
+ "libc",
369
+]
370
+
371
+[[package]]
372
+name = "crc32fast"
373
+version = "1.3.2"
374
+source = "registry+https://github.com/rust-lang/crates.io-index"
375
+checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
376
+dependencies = [
377
+ "cfg-if",
378
+]
379
+
380
+[[package]]
381
+name = "crossbeam-channel"
382
+version = "0.5.6"
383
+source = "registry+https://github.com/rust-lang/crates.io-index"
384
+checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
385
+dependencies = [
386
+ "cfg-if",
387
+ "crossbeam-utils",
388
+]
389
+
390
+[[package]]
391
+name = "crossbeam-utils"
392
+version = "0.8.14"
393
+source = "registry+https://github.com/rust-lang/crates.io-index"
394
+checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
395
+dependencies = [
396
+ "cfg-if",
397
+]
398
+
399
+[[package]]
400
+name = "crypto-common"
401
+version = "0.1.6"
402
+source = "registry+https://github.com/rust-lang/crates.io-index"
403
+checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
404
+dependencies = [
405
+ "generic-array",
406
+ "typenum",
407
+]
408
+
409
+[[package]]
410
+name = "cssparser"
411
+version = "0.27.2"
412
+source = "registry+https://github.com/rust-lang/crates.io-index"
413
+checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
414
+dependencies = [
415
+ "cssparser-macros",
416
+ "dtoa-short",
417
+ "itoa 0.4.8",
418
+ "matches",
419
+ "phf 0.8.0",
420
+ "proc-macro2",
421
+ "quote",
422
+ "smallvec",
423
+ "syn 1.0.107",
424
+]
425
+
426
+[[package]]
427
+name = "cssparser-macros"
428
+version = "0.6.0"
429
+source = "registry+https://github.com/rust-lang/crates.io-index"
430
+checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
431
+dependencies = [
432
+ "quote",
433
+ "syn 1.0.107",
434
+]
435
+
436
+[[package]]
437
+name = "ctor"
438
+version = "0.2.7"
439
+source = "registry+https://github.com/rust-lang/crates.io-index"
440
+checksum = "ad291aa74992b9b7a7e88c38acbbf6ad7e107f1d90ee8775b7bc1fc3394f485c"
441
+dependencies = [
442
+ "quote",
443
+ "syn 2.0.58",
444
+]
445
+
446
+[[package]]
447
+name = "cty"
448
+version = "0.2.2"
449
+source = "registry+https://github.com/rust-lang/crates.io-index"
450
+checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
451
+
452
+[[package]]
453
+name = "darling"
454
+version = "0.20.8"
455
+source = "registry+https://github.com/rust-lang/crates.io-index"
456
+checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
457
+dependencies = [
458
+ "darling_core",
459
+ "darling_macro",
460
+]
461
+
462
+[[package]]
463
+name = "darling_core"
464
+version = "0.20.8"
465
+source = "registry+https://github.com/rust-lang/crates.io-index"
466
+checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
467
+dependencies = [
468
+ "fnv",
469
+ "ident_case",
470
+ "proc-macro2",
471
+ "quote",
472
+ "strsim",
473
+ "syn 2.0.58",
474
+]
475
+
476
+[[package]]
477
+name = "darling_macro"
478
+version = "0.20.8"
479
+source = "registry+https://github.com/rust-lang/crates.io-index"
480
+checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
481
+dependencies = [
482
+ "darling_core",
483
+ "quote",
484
+ "syn 2.0.58",
485
+]
486
+
487
+[[package]]
488
+name = "derive_more"
489
+version = "0.99.17"
490
+source = "registry+https://github.com/rust-lang/crates.io-index"
491
+checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
492
+dependencies = [
493
+ "convert_case",
494
+ "proc-macro2",
495
+ "quote",
496
+ "rustc_version 0.4.0",
497
+ "syn 1.0.107",
498
+]
499
+
500
+[[package]]
501
+name = "digest"
502
+version = "0.10.6"
503
+source = "registry+https://github.com/rust-lang/crates.io-index"
504
+checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
505
+dependencies = [
506
+ "block-buffer",
507
+ "crypto-common",
508
+]
509
+
510
+[[package]]
511
+name = "dirs-next"
512
+version = "2.0.0"
513
+source = "registry+https://github.com/rust-lang/crates.io-index"
514
+checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
515
+dependencies = [
516
+ "cfg-if",
517
+ "dirs-sys-next",
518
+]
519
+
520
+[[package]]
521
+name = "dirs-sys-next"
522
+version = "0.1.2"
523
+source = "registry+https://github.com/rust-lang/crates.io-index"
524
+checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
525
+dependencies = [
526
+ "libc",
527
+ "redox_users",
528
+ "winapi",
529
+]
530
+
531
+[[package]]
532
+name = "dispatch"
533
+version = "0.2.0"
534
+source = "registry+https://github.com/rust-lang/crates.io-index"
535
+checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
536
+
537
+[[package]]
538
+name = "dtoa"
539
+version = "0.4.8"
540
+source = "registry+https://github.com/rust-lang/crates.io-index"
541
+checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
542
+
543
+[[package]]
544
+name = "dtoa-short"
545
+version = "0.3.3"
546
+source = "registry+https://github.com/rust-lang/crates.io-index"
547
+checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
548
+dependencies = [
549
+ "dtoa",
550
+]
551
+
552
+[[package]]
553
+name = "dunce"
554
+version = "1.0.3"
555
+source = "registry+https://github.com/rust-lang/crates.io-index"
556
+checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c"
557
+
558
+[[package]]
559
+name = "embed-resource"
560
+version = "2.4.2"
561
+source = "registry+https://github.com/rust-lang/crates.io-index"
562
+checksum = "c6985554d0688b687c5cb73898a34fbe3ad6c24c58c238a4d91d5e840670ee9d"
563
+dependencies = [
564
+ "cc",
565
+ "memchr",
566
+ "rustc_version 0.4.0",
567
+ "toml 0.8.12",
568
+ "vswhom",
569
+ "winreg",
570
+]
571
+
572
+[[package]]
573
+name = "embed_plist"
574
+version = "1.2.2"
575
+source = "registry+https://github.com/rust-lang/crates.io-index"
576
+checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
577
+
578
+[[package]]
579
+name = "encoding_rs"
580
+version = "0.8.31"
581
+source = "registry+https://github.com/rust-lang/crates.io-index"
582
+checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
583
+dependencies = [
584
+ "cfg-if",
585
+]
586
+
587
+[[package]]
588
+name = "equivalent"
589
+version = "1.0.1"
590
+source = "registry+https://github.com/rust-lang/crates.io-index"
591
+checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
592
+
593
+[[package]]
594
+name = "fastrand"
595
+version = "1.8.0"
596
+source = "registry+https://github.com/rust-lang/crates.io-index"
597
+checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
598
+dependencies = [
599
+ "instant",
600
+]
601
+
602
+[[package]]
603
+name = "field-offset"
604
+version = "0.3.4"
605
+source = "registry+https://github.com/rust-lang/crates.io-index"
606
+checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
607
+dependencies = [
608
+ "memoffset",
609
+ "rustc_version 0.3.3",
610
+]
611
+
612
+[[package]]
613
+name = "filetime"
614
+version = "0.2.19"
615
+source = "registry+https://github.com/rust-lang/crates.io-index"
616
+checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9"
617
+dependencies = [
618
+ "cfg-if",
619
+ "libc",
620
+ "redox_syscall",
621
+ "windows-sys 0.42.0",
622
+]
623
+
624
+[[package]]
625
+name = "flate2"
626
+version = "1.0.25"
627
+source = "registry+https://github.com/rust-lang/crates.io-index"
628
+checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
629
+dependencies = [
630
+ "crc32fast",
631
+ "miniz_oxide",
632
+]
633
+
634
+[[package]]
635
+name = "fnv"
636
+version = "1.0.7"
637
+source = "registry+https://github.com/rust-lang/crates.io-index"
638
+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
639
+
640
+[[package]]
641
+name = "foreign-types"
642
+version = "0.3.2"
643
+source = "registry+https://github.com/rust-lang/crates.io-index"
644
+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
645
+dependencies = [
646
+ "foreign-types-shared",
647
+]
648
+
649
+[[package]]
650
+name = "foreign-types-shared"
651
+version = "0.1.1"
652
+source = "registry+https://github.com/rust-lang/crates.io-index"
653
+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
654
+
655
+[[package]]
656
+name = "form_urlencoded"
657
+version = "1.1.0"
658
+source = "registry+https://github.com/rust-lang/crates.io-index"
659
+checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
660
+dependencies = [
661
+ "percent-encoding",
662
+]
663
+
664
+[[package]]
665
+name = "futf"
666
+version = "0.1.5"
667
+source = "registry+https://github.com/rust-lang/crates.io-index"
668
+checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
669
+dependencies = [
670
+ "mac",
671
+ "new_debug_unreachable",
672
+]
673
+
674
+[[package]]
675
+name = "futures-channel"
676
+version = "0.3.25"
677
+source = "registry+https://github.com/rust-lang/crates.io-index"
678
+checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
679
+dependencies = [
680
+ "futures-core",
681
+]
682
+
683
+[[package]]
684
+name = "futures-core"
685
+version = "0.3.25"
686
+source = "registry+https://github.com/rust-lang/crates.io-index"
687
+checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
688
+
689
+[[package]]
690
+name = "futures-executor"
691
+version = "0.3.25"
692
+source = "registry+https://github.com/rust-lang/crates.io-index"
693
+checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
694
+dependencies = [
695
+ "futures-core",
696
+ "futures-task",
697
+ "futures-util",
698
+]
699
+
700
+[[package]]
701
+name = "futures-io"
702
+version = "0.3.25"
703
+source = "registry+https://github.com/rust-lang/crates.io-index"
704
+checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
705
+
706
+[[package]]
707
+name = "futures-macro"
708
+version = "0.3.25"
709
+source = "registry+https://github.com/rust-lang/crates.io-index"
710
+checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
711
+dependencies = [
712
+ "proc-macro2",
713
+ "quote",
714
+ "syn 1.0.107",
715
+]
716
+
717
+[[package]]
718
+name = "futures-task"
719
+version = "0.3.25"
720
+source = "registry+https://github.com/rust-lang/crates.io-index"
721
+checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
722
+
723
+[[package]]
724
+name = "futures-util"
725
+version = "0.3.25"
726
+source = "registry+https://github.com/rust-lang/crates.io-index"
727
+checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
728
+dependencies = [
729
+ "futures-core",
730
+ "futures-macro",
731
+ "futures-task",
732
+ "pin-project-lite",
733
+ "pin-utils",
734
+ "slab",
735
+]
736
+
737
+[[package]]
738
+name = "fxhash"
739
+version = "0.2.1"
740
+source = "registry+https://github.com/rust-lang/crates.io-index"
741
+checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
742
+dependencies = [
743
+ "byteorder",
744
+]
745
+
746
+[[package]]
747
+name = "gdk"
748
+version = "0.15.4"
749
+source = "registry+https://github.com/rust-lang/crates.io-index"
750
+checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8"
751
+dependencies = [
752
+ "bitflags",
753
+ "cairo-rs",
754
+ "gdk-pixbuf",
755
+ "gdk-sys",
756
+ "gio",
757
+ "glib",
758
+ "libc",
759
+ "pango",
760
+]
761
+
762
+[[package]]
763
+name = "gdk-pixbuf"
764
+version = "0.15.11"
765
+source = "registry+https://github.com/rust-lang/crates.io-index"
766
+checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
767
+dependencies = [
768
+ "bitflags",
769
+ "gdk-pixbuf-sys",
770
+ "gio",
771
+ "glib",
772
+ "libc",
773
+]
774
+
775
+[[package]]
776
+name = "gdk-pixbuf-sys"
777
+version = "0.15.10"
778
+source = "registry+https://github.com/rust-lang/crates.io-index"
779
+checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
780
+dependencies = [
781
+ "gio-sys",
782
+ "glib-sys",
783
+ "gobject-sys",
784
+ "libc",
785
+ "system-deps 6.0.3",
786
+]
787
+
788
+[[package]]
789
+name = "gdk-sys"
790
+version = "0.15.1"
791
+source = "registry+https://github.com/rust-lang/crates.io-index"
792
+checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88"
793
+dependencies = [
794
+ "cairo-sys-rs",
795
+ "gdk-pixbuf-sys",
796
+ "gio-sys",
797
+ "glib-sys",
798
+ "gobject-sys",
799
+ "libc",
800
+ "pango-sys",
801
+ "pkg-config",
802
+ "system-deps 6.0.3",
803
+]
804
+
805
+[[package]]
806
+name = "gdkwayland-sys"
807
+version = "0.15.3"
808
+source = "registry+https://github.com/rust-lang/crates.io-index"
809
+checksum = "cca49a59ad8cfdf36ef7330fe7bdfbe1d34323220cc16a0de2679ee773aee2c2"
810
+dependencies = [
811
+ "gdk-sys",
812
+ "glib-sys",
813
+ "gobject-sys",
814
+ "libc",
815
+ "pkg-config",
816
+ "system-deps 6.0.3",
817
+]
818
+
819
+[[package]]
820
+name = "gdkx11-sys"
821
+version = "0.15.1"
822
+source = "registry+https://github.com/rust-lang/crates.io-index"
823
+checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178"
824
+dependencies = [
825
+ "gdk-sys",
826
+ "glib-sys",
827
+ "libc",
828
+ "system-deps 6.0.3",
829
+ "x11",
830
+]
831
+
832
+[[package]]
833
+name = "generator"
834
+version = "0.7.2"
835
+source = "registry+https://github.com/rust-lang/crates.io-index"
836
+checksum = "d266041a359dfa931b370ef684cceb84b166beb14f7f0421f4a6a3d0c446d12e"
837
+dependencies = [
838
+ "cc",
839
+ "libc",
840
+ "log",
841
+ "rustversion",
842
+ "windows",
843
+]
844
+
845
+[[package]]
846
+name = "generic-array"
847
+version = "0.14.6"
848
+source = "registry+https://github.com/rust-lang/crates.io-index"
849
+checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
850
+dependencies = [
851
+ "typenum",
852
+ "version_check",
853
+]
854
+
855
+[[package]]
856
+name = "getrandom"
857
+version = "0.1.16"
858
+source = "registry+https://github.com/rust-lang/crates.io-index"
859
+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
860
+dependencies = [
861
+ "cfg-if",
862
+ "libc",
863
+ "wasi 0.9.0+wasi-snapshot-preview1",
864
+]
865
+
866
+[[package]]
867
+name = "getrandom"
868
+version = "0.2.8"
869
+source = "registry+https://github.com/rust-lang/crates.io-index"
870
+checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
871
+dependencies = [
872
+ "cfg-if",
873
+ "libc",
874
+ "wasi 0.11.0+wasi-snapshot-preview1",
875
+]
876
+
877
+[[package]]
878
+name = "gio"
879
+version = "0.15.12"
880
+source = "registry+https://github.com/rust-lang/crates.io-index"
881
+checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
882
+dependencies = [
883
+ "bitflags",
884
+ "futures-channel",
885
+ "futures-core",
886
+ "futures-io",
887
+ "gio-sys",
888
+ "glib",
889
+ "libc",
890
+ "once_cell",
891
+ "thiserror",
892
+]
893
+
894
+[[package]]
895
+name = "gio-sys"
896
+version = "0.15.10"
897
+source = "registry+https://github.com/rust-lang/crates.io-index"
898
+checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
899
+dependencies = [
900
+ "glib-sys",
901
+ "gobject-sys",
902
+ "libc",
903
+ "system-deps 6.0.3",
904
+ "winapi",
905
+]
906
+
907
+[[package]]
908
+name = "glib"
909
+version = "0.15.12"
910
+source = "registry+https://github.com/rust-lang/crates.io-index"
911
+checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
912
+dependencies = [
913
+ "bitflags",
914
+ "futures-channel",
915
+ "futures-core",
916
+ "futures-executor",
917
+ "futures-task",
918
+ "glib-macros",
919
+ "glib-sys",
920
+ "gobject-sys",
921
+ "libc",
922
+ "once_cell",
923
+ "smallvec",
924
+ "thiserror",
925
+]
926
+
927
+[[package]]
928
+name = "glib-macros"
929
+version = "0.15.11"
930
+source = "registry+https://github.com/rust-lang/crates.io-index"
931
+checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64"
932
+dependencies = [
933
+ "anyhow",
934
+ "heck 0.4.0",
935
+ "proc-macro-crate",
936
+ "proc-macro-error",
937
+ "proc-macro2",
938
+ "quote",
939
+ "syn 1.0.107",
940
+]
941
+
942
+[[package]]
943
+name = "glib-sys"
944
+version = "0.15.10"
945
+source = "registry+https://github.com/rust-lang/crates.io-index"
946
+checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
947
+dependencies = [
948
+ "libc",
949
+ "system-deps 6.0.3",
950
+]
951
+
952
+[[package]]
953
+name = "glob"
954
+version = "0.3.1"
955
+source = "registry+https://github.com/rust-lang/crates.io-index"
956
+checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
957
+
958
+[[package]]
959
+name = "globset"
960
+version = "0.4.10"
961
+source = "registry+https://github.com/rust-lang/crates.io-index"
962
+checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
963
+dependencies = [
964
+ "aho-corasick",
965
+ "bstr",
966
+ "fnv",
967
+ "log",
968
+ "regex",
969
+]
970
+
971
+[[package]]
972
+name = "gobject-sys"
973
+version = "0.15.10"
974
+source = "registry+https://github.com/rust-lang/crates.io-index"
975
+checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
976
+dependencies = [
977
+ "glib-sys",
978
+ "libc",
979
+ "system-deps 6.0.3",
980
+]
981
+
982
+[[package]]
983
+name = "gtk"
984
+version = "0.15.5"
985
+source = "registry+https://github.com/rust-lang/crates.io-index"
986
+checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0"
987
+dependencies = [
988
+ "atk",
989
+ "bitflags",
990
+ "cairo-rs",
991
+ "field-offset",
992
+ "futures-channel",
993
+ "gdk",
994
+ "gdk-pixbuf",
995
+ "gio",
996
+ "glib",
997
+ "gtk-sys",
998
+ "gtk3-macros",
999
+ "libc",
1000
+ "once_cell",
1001
+ "pango",
1002
+ "pkg-config",
1003
+]
1004
+
1005
+[[package]]
1006
+name = "gtk-sys"
1007
+version = "0.15.3"
1008
+source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84"
1010
+dependencies = [
1011
+ "atk-sys",
1012
+ "cairo-sys-rs",
1013
+ "gdk-pixbuf-sys",
1014
+ "gdk-sys",
1015
+ "gio-sys",
1016
+ "glib-sys",
1017
+ "gobject-sys",
1018
+ "libc",
1019
+ "pango-sys",
1020
+ "system-deps 6.0.3",
1021
+]
1022
+
1023
+[[package]]
1024
+name = "gtk3-macros"
1025
+version = "0.15.4"
1026
+source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9"
1028
+dependencies = [
1029
+ "anyhow",
1030
+ "proc-macro-crate",
1031
+ "proc-macro-error",
1032
+ "proc-macro2",
1033
+ "quote",
1034
+ "syn 1.0.107",
1035
+]
1036
+
1037
+[[package]]
1038
+name = "hashbrown"
1039
+version = "0.12.3"
1040
+source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1042
+
1043
+[[package]]
1044
+name = "hashbrown"
1045
+version = "0.14.3"
1046
+source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
1048
+
1049
+[[package]]
1050
+name = "heck"
1051
+version = "0.3.3"
1052
+source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1054
+dependencies = [
1055
+ "unicode-segmentation",
1056
+]
1057
+
1058
+[[package]]
1059
+name = "heck"
1060
+version = "0.4.0"
1061
+source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
1063
+
1064
+[[package]]
1065
+name = "heck"
1066
+version = "0.5.0"
1067
+source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1069
+
1070
+[[package]]
1071
+name = "hermit-abi"
1072
+version = "0.2.6"
1073
+source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
1075
+dependencies = [
1076
+ "libc",
1077
+]
1078
+
1079
+[[package]]
1080
+name = "hex"
1081
+version = "0.4.3"
1082
+source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1084
+
1085
+[[package]]
1086
+name = "html5ever"
1087
+version = "0.26.0"
1088
+source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
1090
+dependencies = [
1091
+ "log",
1092
+ "mac",
1093
+ "markup5ever",
1094
+ "proc-macro2",
1095
+ "quote",
1096
+ "syn 1.0.107",
1097
+]
1098
+
1099
+[[package]]
1100
+name = "http"
1101
+version = "0.2.8"
1102
+source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
1104
+dependencies = [
1105
+ "bytes",
1106
+ "fnv",
1107
+ "itoa 1.0.5",
1108
+]
1109
+
1110
+[[package]]
1111
+name = "http-range"
1112
+version = "0.1.5"
1113
+source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
1115
+
1116
+[[package]]
1117
+name = "iana-time-zone"
1118
+version = "0.1.60"
1119
+source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
1121
+dependencies = [
1122
+ "android_system_properties",
1123
+ "core-foundation-sys",
1124
+ "iana-time-zone-haiku",
1125
+ "js-sys",
1126
+ "wasm-bindgen",
1127
+ "windows-core",
1128
+]
1129
+
1130
+[[package]]
1131
+name = "iana-time-zone-haiku"
1132
+version = "0.1.2"
1133
+source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1135
+dependencies = [
1136
+ "cc",
1137
+]
1138
+
1139
+[[package]]
1140
+name = "ico"
1141
+version = "0.3.0"
1142
+source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
1144
+dependencies = [
1145
+ "byteorder",
1146
+ "png",
1147
+]
1148
+
1149
+[[package]]
1150
+name = "ident_case"
1151
+version = "1.0.1"
1152
+source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1154
+
1155
+[[package]]
1156
+name = "idna"
1157
+version = "0.3.0"
1158
+source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
1160
+dependencies = [
1161
+ "unicode-bidi",
1162
+ "unicode-normalization",
1163
+]
1164
+
1165
+[[package]]
1166
+name = "ignore"
1167
+version = "0.4.18"
1168
+source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
1170
+dependencies = [
1171
+ "crossbeam-utils",
1172
+ "globset",
1173
+ "lazy_static",
1174
+ "log",
1175
+ "memchr",
1176
+ "regex",
1177
+ "same-file",
1178
+ "thread_local",
1179
+ "walkdir",
1180
+ "winapi-util",
1181
+]
1182
+
1183
+[[package]]
1184
+name = "image"
1185
+version = "0.24.5"
1186
+source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+checksum = "69b7ea949b537b0fd0af141fff8c77690f2ce96f4f41f042ccb6c69c6c965945"
1188
+dependencies = [
1189
+ "bytemuck",
1190
+ "byteorder",
1191
+ "color_quant",
1192
+ "num-rational",
1193
+ "num-traits",
1194
+]
1195
+
1196
+[[package]]
1197
+name = "indexmap"
1198
+version = "1.9.2"
1199
+source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
1201
+dependencies = [
1202
+ "autocfg",
1203
+ "hashbrown 0.12.3",
1204
+ "serde",
1205
+]
1206
+
1207
+[[package]]
1208
+name = "indexmap"
1209
+version = "2.2.6"
1210
+source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
1212
+dependencies = [
1213
+ "equivalent",
1214
+ "hashbrown 0.14.3",
1215
+ "serde",
1216
+]
1217
+
1218
+[[package]]
1219
+name = "infer"
1220
+version = "0.13.0"
1221
+source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc"
1223
+dependencies = [
1224
+ "cfb",
1225
+]
1226
+
1227
+[[package]]
1228
+name = "instant"
1229
+version = "0.1.12"
1230
+source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1232
+dependencies = [
1233
+ "cfg-if",
1234
+]
1235
+
1236
+[[package]]
1237
+name = "itoa"
1238
+version = "0.4.8"
1239
+source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1241
+
1242
+[[package]]
1243
+name = "itoa"
1244
+version = "1.0.5"
1245
+source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
1247
+
1248
+[[package]]
1249
+name = "javascriptcore-rs"
1250
+version = "0.16.0"
1251
+source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c"
1253
+dependencies = [
1254
+ "bitflags",
1255
+ "glib",
1256
+ "javascriptcore-rs-sys",
1257
+]
1258
+
1259
+[[package]]
1260
+name = "javascriptcore-rs-sys"
1261
+version = "0.4.0"
1262
+source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c"
1264
+dependencies = [
1265
+ "glib-sys",
1266
+ "gobject-sys",
1267
+ "libc",
1268
+ "system-deps 5.0.0",
1269
+]
1270
+
1271
+[[package]]
1272
+name = "jni"
1273
+version = "0.20.0"
1274
+source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c"
1276
+dependencies = [
1277
+ "cesu8",
1278
+ "combine",
1279
+ "jni-sys",
1280
+ "log",
1281
+ "thiserror",
1282
+ "walkdir",
1283
+]
1284
+
1285
+[[package]]
1286
+name = "jni-sys"
1287
+version = "0.3.0"
1288
+source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1290
+
1291
+[[package]]
1292
+name = "js-sys"
1293
+version = "0.3.69"
1294
+source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
1296
+dependencies = [
1297
+ "wasm-bindgen",
1298
+]
1299
+
1300
+[[package]]
1301
+name = "json-patch"
1302
+version = "1.2.0"
1303
+source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+checksum = "55ff1e1486799e3f64129f8ccad108b38290df9cd7015cd31bed17239f0789d6"
1305
+dependencies = [
1306
+ "serde",
1307
+ "serde_json",
1308
+ "thiserror",
1309
+ "treediff",
1310
+]
1311
+
1312
+[[package]]
1313
+name = "kuchikiki"
1314
+version = "0.8.2"
1315
+source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
1317
+dependencies = [
1318
+ "cssparser",
1319
+ "html5ever",
1320
+ "indexmap 1.9.2",
1321
+ "matches",
1322
+ "selectors",
1323
+]
1324
+
1325
+[[package]]
1326
+name = "lazy_static"
1327
+version = "1.4.0"
1328
+source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1330
+
1331
+[[package]]
1332
+name = "libc"
1333
+version = "0.2.139"
1334
+source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
1336
+
1337
+[[package]]
1338
+name = "line-wrap"
1339
+version = "0.1.1"
1340
+source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
1342
+dependencies = [
1343
+ "safemem",
1344
+]
1345
+
1346
+[[package]]
1347
+name = "lock_api"
1348
+version = "0.4.9"
1349
+source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
1351
+dependencies = [
1352
+ "autocfg",
1353
+ "scopeguard",
1354
+]
1355
+
1356
+[[package]]
1357
+name = "log"
1358
+version = "0.4.21"
1359
+source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
1361
+
1362
+[[package]]
1363
+name = "loom"
1364
+version = "0.5.6"
1365
+source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
1367
+dependencies = [
1368
+ "cfg-if",
1369
+ "generator",
1370
+ "scoped-tls",
1371
+ "serde",
1372
+ "serde_json",
1373
+ "tracing",
1374
+ "tracing-subscriber",
1375
+]
1376
+
1377
+[[package]]
1378
+name = "mac"
1379
+version = "0.1.1"
1380
+source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1382
+
1383
+[[package]]
1384
+name = "malloc_buf"
1385
+version = "0.0.6"
1386
+source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1388
+dependencies = [
1389
+ "libc",
1390
+]
1391
+
1392
+[[package]]
1393
+name = "markup5ever"
1394
+version = "0.11.0"
1395
+source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
1397
+dependencies = [
1398
+ "log",
1399
+ "phf 0.10.1",
1400
+ "phf_codegen 0.10.0",
1401
+ "string_cache",
1402
+ "string_cache_codegen",
1403
+ "tendril",
1404
+]
1405
+
1406
+[[package]]
1407
+name = "matchers"
1408
+version = "0.1.0"
1409
+source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1411
+dependencies = [
1412
+ "regex-automata",
1413
+]
1414
+
1415
+[[package]]
1416
+name = "matches"
1417
+version = "0.1.9"
1418
+source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
1420
+
1421
+[[package]]
1422
+name = "memchr"
1423
+version = "2.7.2"
1424
+source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
1426
+
1427
+[[package]]
1428
+name = "memoffset"
1429
+version = "0.6.5"
1430
+source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
1432
+dependencies = [
1433
+ "autocfg",
1434
+]
1435
+
1436
+[[package]]
1437
+name = "miniz_oxide"
1438
+version = "0.6.2"
1439
+source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
1441
+dependencies = [
1442
+ "adler",
1443
+]
1444
+
1445
+[[package]]
1446
+name = "ndk"
1447
+version = "0.6.0"
1448
+source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
1450
+dependencies = [
1451
+ "bitflags",
1452
+ "jni-sys",
1453
+ "ndk-sys",
1454
+ "num_enum",
1455
+ "thiserror",
1456
+]
1457
+
1458
+[[package]]
1459
+name = "ndk-context"
1460
+version = "0.1.1"
1461
+source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1463
+
1464
+[[package]]
1465
+name = "ndk-sys"
1466
+version = "0.3.0"
1467
+source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97"
1469
+dependencies = [
1470
+ "jni-sys",
1471
+]
1472
+
1473
+[[package]]
1474
+name = "new_debug_unreachable"
1475
+version = "1.0.4"
1476
+source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
1478
+
1479
+[[package]]
1480
+name = "nodrop"
1481
+version = "0.1.14"
1482
+source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1484
+
1485
+[[package]]
1486
+name = "nu-ansi-term"
1487
+version = "0.46.0"
1488
+source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1490
+dependencies = [
1491
+ "overload",
1492
+ "winapi",
1493
+]
1494
+
1495
+[[package]]
1496
+name = "num-integer"
1497
+version = "0.1.45"
1498
+source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1500
+dependencies = [
1501
+ "autocfg",
1502
+ "num-traits",
1503
+]
1504
+
1505
+[[package]]
1506
+name = "num-rational"
1507
+version = "0.4.1"
1508
+source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
1510
+dependencies = [
1511
+ "autocfg",
1512
+ "num-integer",
1513
+ "num-traits",
1514
+]
1515
+
1516
+[[package]]
1517
+name = "num-traits"
1518
+version = "0.2.15"
1519
+source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1521
+dependencies = [
1522
+ "autocfg",
1523
+]
1524
+
1525
+[[package]]
1526
+name = "num_cpus"
1527
+version = "1.15.0"
1528
+source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
1530
+dependencies = [
1531
+ "hermit-abi",
1532
+ "libc",
1533
+]
1534
+
1535
+[[package]]
1536
+name = "num_enum"
1537
+version = "0.5.7"
1538
+source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
1540
+dependencies = [
1541
+ "num_enum_derive",
1542
+]
1543
+
1544
+[[package]]
1545
+name = "num_enum_derive"
1546
+version = "0.5.7"
1547
+source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
1549
+dependencies = [
1550
+ "proc-macro-crate",
1551
+ "proc-macro2",
1552
+ "quote",
1553
+ "syn 1.0.107",
1554
+]
1555
+
1556
+[[package]]
1557
+name = "objc"
1558
+version = "0.2.7"
1559
+source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
1561
+dependencies = [
1562
+ "malloc_buf",
1563
+ "objc_exception",
1564
+]
1565
+
1566
+[[package]]
1567
+name = "objc_exception"
1568
+version = "0.1.2"
1569
+source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
1571
+dependencies = [
1572
+ "cc",
1573
+]
1574
+
1575
+[[package]]
1576
+name = "objc_id"
1577
+version = "0.1.1"
1578
+source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
1580
+dependencies = [
1581
+ "objc",
1582
+]
1583
+
1584
+[[package]]
1585
+name = "once_cell"
1586
+version = "1.17.0"
1587
+source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
1589
+
1590
+[[package]]
1591
+name = "open"
1592
+version = "3.2.0"
1593
+source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
1595
+dependencies = [
1596
+ "pathdiff",
1597
+ "windows-sys 0.42.0",
1598
+]
1599
+
1600
+[[package]]
1601
+name = "overload"
1602
+version = "0.1.1"
1603
+source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1605
+
1606
+[[package]]
1607
+name = "pango"
1608
+version = "0.15.10"
1609
+source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
1611
+dependencies = [
1612
+ "bitflags",
1613
+ "glib",
1614
+ "libc",
1615
+ "once_cell",
1616
+ "pango-sys",
1617
+]
1618
+
1619
+[[package]]
1620
+name = "pango-sys"
1621
+version = "0.15.10"
1622
+source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
1624
+dependencies = [
1625
+ "glib-sys",
1626
+ "gobject-sys",
1627
+ "libc",
1628
+ "system-deps 6.0.3",
1629
+]
1630
+
1631
+[[package]]
1632
+name = "parking_lot"
1633
+version = "0.12.1"
1634
+source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1636
+dependencies = [
1637
+ "lock_api",
1638
+ "parking_lot_core",
1639
+]
1640
+
1641
+[[package]]
1642
+name = "parking_lot_core"
1643
+version = "0.9.6"
1644
+source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
1646
+dependencies = [
1647
+ "cfg-if",
1648
+ "libc",
1649
+ "redox_syscall",
1650
+ "smallvec",
1651
+ "windows-sys 0.42.0",
1652
+]
1653
+
1654
+[[package]]
1655
+name = "pathdiff"
1656
+version = "0.2.1"
1657
+source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
1659
+
1660
+[[package]]
1661
+name = "percent-encoding"
1662
+version = "2.2.0"
1663
+source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
1665
+
1666
+[[package]]
1667
+name = "pest"
1668
+version = "2.5.3"
1669
+source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+checksum = "4257b4a04d91f7e9e6290be5d3da4804dd5784fafde3a497d73eb2b4a158c30a"
1671
+dependencies = [
1672
+ "thiserror",
1673
+ "ucd-trie",
1674
+]
1675
+
1676
+[[package]]
1677
+name = "phf"
1678
+version = "0.8.0"
1679
+source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
1681
+dependencies = [
1682
+ "phf_macros 0.8.0",
1683
+ "phf_shared 0.8.0",
1684
+ "proc-macro-hack",
1685
+]
1686
+
1687
+[[package]]
1688
+name = "phf"
1689
+version = "0.10.1"
1690
+source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
1692
+dependencies = [
1693
+ "phf_shared 0.10.0",
1694
+]
1695
+
1696
+[[package]]
1697
+name = "phf"
1698
+version = "0.11.2"
1699
+source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
1701
+dependencies = [
1702
+ "phf_macros 0.11.2",
1703
+ "phf_shared 0.11.2",
1704
+]
1705
+
1706
+[[package]]
1707
+name = "phf_codegen"
1708
+version = "0.8.0"
1709
+source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
1711
+dependencies = [
1712
+ "phf_generator 0.8.0",
1713
+ "phf_shared 0.8.0",
1714
+]
1715
+
1716
+[[package]]
1717
+name = "phf_codegen"
1718
+version = "0.10.0"
1719
+source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
1721
+dependencies = [
1722
+ "phf_generator 0.10.0",
1723
+ "phf_shared 0.10.0",
1724
+]
1725
+
1726
+[[package]]
1727
+name = "phf_generator"
1728
+version = "0.8.0"
1729
+source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
1731
+dependencies = [
1732
+ "phf_shared 0.8.0",
1733
+ "rand 0.7.3",
1734
+]
1735
+
1736
+[[package]]
1737
+name = "phf_generator"
1738
+version = "0.10.0"
1739
+source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
1741
+dependencies = [
1742
+ "phf_shared 0.10.0",
1743
+ "rand 0.8.5",
1744
+]
1745
+
1746
+[[package]]
1747
+name = "phf_generator"
1748
+version = "0.11.2"
1749
+source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
1751
+dependencies = [
1752
+ "phf_shared 0.11.2",
1753
+ "rand 0.8.5",
1754
+]
1755
+
1756
+[[package]]
1757
+name = "phf_macros"
1758
+version = "0.8.0"
1759
+source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
1761
+dependencies = [
1762
+ "phf_generator 0.8.0",
1763
+ "phf_shared 0.8.0",
1764
+ "proc-macro-hack",
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "syn 1.0.107",
1768
+]
1769
+
1770
+[[package]]
1771
+name = "phf_macros"
1772
+version = "0.11.2"
1773
+source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
1775
+dependencies = [
1776
+ "phf_generator 0.11.2",
1777
+ "phf_shared 0.11.2",
1778
+ "proc-macro2",
1779
+ "quote",
1780
+ "syn 2.0.58",
1781
+]
1782
+
1783
+[[package]]
1784
+name = "phf_shared"
1785
+version = "0.8.0"
1786
+source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
1788
+dependencies = [
1789
+ "siphasher",
1790
+]
1791
+
1792
+[[package]]
1793
+name = "phf_shared"
1794
+version = "0.10.0"
1795
+source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
1797
+dependencies = [
1798
+ "siphasher",
1799
+]
1800
+
1801
+[[package]]
1802
+name = "phf_shared"
1803
+version = "0.11.2"
1804
+source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
1806
+dependencies = [
1807
+ "siphasher",
1808
+]
1809
+
1810
+[[package]]
1811
+name = "pin-project-lite"
1812
+version = "0.2.9"
1813
+source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1815
+
1816
+[[package]]
1817
+name = "pin-utils"
1818
+version = "0.1.0"
1819
+source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1821
+
1822
+[[package]]
1823
+name = "pkg-config"
1824
+version = "0.3.26"
1825
+source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
1827
+
1828
+[[package]]
1829
+name = "plist"
1830
+version = "1.4.0"
1831
+source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+checksum = "5329b8f106a176ab0dce4aae5da86bfcb139bb74fb00882859e03745011f3635"
1833
+dependencies = [
1834
+ "base64 0.13.1",
1835
+ "indexmap 1.9.2",
1836
+ "line-wrap",
1837
+ "quick-xml",
1838
+ "serde",
1839
+ "time",
1840
+]
1841
+
1842
+[[package]]
1843
+name = "png"
1844
+version = "0.17.7"
1845
+source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638"
1847
+dependencies = [
1848
+ "bitflags",
1849
+ "crc32fast",
1850
+ "flate2",
1851
+ "miniz_oxide",
1852
+]
1853
+
1854
+[[package]]
1855
+name = "ppv-lite86"
1856
+version = "0.2.17"
1857
+source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1859
+
1860
+[[package]]
1861
+name = "precomputed-hash"
1862
+version = "0.1.1"
1863
+source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1865
+
1866
+[[package]]
1867
+name = "proc-macro-crate"
1868
+version = "1.2.1"
1869
+source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
1871
+dependencies = [
1872
+ "once_cell",
1873
+ "thiserror",
1874
+ "toml 0.5.10",
1875
+]
1876
+
1877
+[[package]]
1878
+name = "proc-macro-error"
1879
+version = "1.0.4"
1880
+source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1882
+dependencies = [
1883
+ "proc-macro-error-attr",
1884
+ "proc-macro2",
1885
+ "quote",
1886
+ "syn 1.0.107",
1887
+ "version_check",
1888
+]
1889
+
1890
+[[package]]
1891
+name = "proc-macro-error-attr"
1892
+version = "1.0.4"
1893
+source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1895
+dependencies = [
1896
+ "proc-macro2",
1897
+ "quote",
1898
+ "version_check",
1899
+]
1900
+
1901
+[[package]]
1902
+name = "proc-macro-hack"
1903
+version = "0.5.20+deprecated"
1904
+source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
1906
+
1907
+[[package]]
1908
+name = "proc-macro2"
1909
+version = "1.0.79"
1910
+source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
1912
+dependencies = [
1913
+ "unicode-ident",
1914
+]
1915
+
1916
+[[package]]
1917
+name = "quick-xml"
1918
+version = "0.26.0"
1919
+source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
1921
+dependencies = [
1922
+ "memchr",
1923
+]
1924
+
1925
+[[package]]
1926
+name = "quote"
1927
+version = "1.0.36"
1928
+source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
1930
+dependencies = [
1931
+ "proc-macro2",
1932
+]
1933
+
1934
+[[package]]
1935
+name = "rand"
1936
+version = "0.7.3"
1937
+source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
1939
+dependencies = [
1940
+ "getrandom 0.1.16",
1941
+ "libc",
1942
+ "rand_chacha 0.2.2",
1943
+ "rand_core 0.5.1",
1944
+ "rand_hc",
1945
+ "rand_pcg",
1946
+]
1947
+
1948
+[[package]]
1949
+name = "rand"
1950
+version = "0.8.5"
1951
+source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1953
+dependencies = [
1954
+ "libc",
1955
+ "rand_chacha 0.3.1",
1956
+ "rand_core 0.6.4",
1957
+]
1958
+
1959
+[[package]]
1960
+name = "rand_chacha"
1961
+version = "0.2.2"
1962
+source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
1964
+dependencies = [
1965
+ "ppv-lite86",
1966
+ "rand_core 0.5.1",
1967
+]
1968
+
1969
+[[package]]
1970
+name = "rand_chacha"
1971
+version = "0.3.1"
1972
+source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1974
+dependencies = [
1975
+ "ppv-lite86",
1976
+ "rand_core 0.6.4",
1977
+]
1978
+
1979
+[[package]]
1980
+name = "rand_core"
1981
+version = "0.5.1"
1982
+source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
1984
+dependencies = [
1985
+ "getrandom 0.1.16",
1986
+]
1987
+
1988
+[[package]]
1989
+name = "rand_core"
1990
+version = "0.6.4"
1991
+source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1993
+dependencies = [
1994
+ "getrandom 0.2.8",
1995
+]
1996
+
1997
+[[package]]
1998
+name = "rand_hc"
1999
+version = "0.2.0"
2000
+source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2002
+dependencies = [
2003
+ "rand_core 0.5.1",
2004
+]
2005
+
2006
+[[package]]
2007
+name = "rand_pcg"
2008
+version = "0.2.1"
2009
+source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2011
+dependencies = [
2012
+ "rand_core 0.5.1",
2013
+]
2014
+
2015
+[[package]]
2016
+name = "raw-window-handle"
2017
+version = "0.5.0"
2018
+source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a"
2020
+dependencies = [
2021
+ "cty",
2022
+]
2023
+
2024
+[[package]]
2025
+name = "redox_syscall"
2026
+version = "0.2.16"
2027
+source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2029
+dependencies = [
2030
+ "bitflags",
2031
+]
2032
+
2033
+[[package]]
2034
+name = "redox_users"
2035
+version = "0.4.3"
2036
+source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2038
+dependencies = [
2039
+ "getrandom 0.2.8",
2040
+ "redox_syscall",
2041
+ "thiserror",
2042
+]
2043
+
2044
+[[package]]
2045
+name = "regex"
2046
+version = "1.7.1"
2047
+source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
2049
+dependencies = [
2050
+ "aho-corasick",
2051
+ "memchr",
2052
+ "regex-syntax",
2053
+]
2054
+
2055
+[[package]]
2056
+name = "regex-automata"
2057
+version = "0.1.10"
2058
+source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2060
+dependencies = [
2061
+ "regex-syntax",
2062
+]
2063
+
2064
+[[package]]
2065
+name = "regex-syntax"
2066
+version = "0.6.28"
2067
+source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
2069
+
2070
+[[package]]
2071
+name = "remove_dir_all"
2072
+version = "0.5.3"
2073
+source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2075
+dependencies = [
2076
+ "winapi",
2077
+]
2078
+
2079
+[[package]]
2080
+name = "rustc_version"
2081
+version = "0.3.3"
2082
+source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
2084
+dependencies = [
2085
+ "semver 0.11.0",
2086
+]
2087
+
2088
+[[package]]
2089
+name = "rustc_version"
2090
+version = "0.4.0"
2091
+source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2093
+dependencies = [
2094
+ "semver 1.0.16",
2095
+]
2096
+
2097
+[[package]]
2098
+name = "rustversion"
2099
+version = "1.0.11"
2100
+source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
2102
+
2103
+[[package]]
2104
+name = "ryu"
2105
+version = "1.0.12"
2106
+source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
2108
+
2109
+[[package]]
2110
+name = "safemem"
2111
+version = "0.3.3"
2112
+source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2114
+
2115
+[[package]]
2116
+name = "same-file"
2117
+version = "1.0.6"
2118
+source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2120
+dependencies = [
2121
+ "winapi-util",
2122
+]
2123
+
2124
+[[package]]
2125
+name = "scoped-tls"
2126
+version = "1.0.1"
2127
+source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2129
+
2130
+[[package]]
2131
+name = "scopeguard"
2132
+version = "1.1.0"
2133
+source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2135
+
2136
+[[package]]
2137
+name = "selectors"
2138
+version = "0.22.0"
2139
+source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2141
+dependencies = [
2142
+ "bitflags",
2143
+ "cssparser",
2144
+ "derive_more",
2145
+ "fxhash",
2146
+ "log",
2147
+ "matches",
2148
+ "phf 0.8.0",
2149
+ "phf_codegen 0.8.0",
2150
+ "precomputed-hash",
2151
+ "servo_arc",
2152
+ "smallvec",
2153
+ "thin-slice",
2154
+]
2155
+
2156
+[[package]]
2157
+name = "semver"
2158
+version = "0.11.0"
2159
+source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
2161
+dependencies = [
2162
+ "semver-parser",
2163
+]
2164
+
2165
+[[package]]
2166
+name = "semver"
2167
+version = "1.0.16"
2168
+source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
2170
+dependencies = [
2171
+ "serde",
2172
+]
2173
+
2174
+[[package]]
2175
+name = "semver-parser"
2176
+version = "0.10.2"
2177
+source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
2179
+dependencies = [
2180
+ "pest",
2181
+]
2182
+
2183
+[[package]]
2184
+name = "serde"
2185
+version = "1.0.197"
2186
+source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
2188
+dependencies = [
2189
+ "serde_derive",
2190
+]
2191
+
2192
+[[package]]
2193
+name = "serde_derive"
2194
+version = "1.0.197"
2195
+source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
2197
+dependencies = [
2198
+ "proc-macro2",
2199
+ "quote",
2200
+ "syn 2.0.58",
2201
+]
2202
+
2203
+[[package]]
2204
+name = "serde_json"
2205
+version = "1.0.115"
2206
+source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd"
2208
+dependencies = [
2209
+ "indexmap 2.2.6",
2210
+ "itoa 1.0.5",
2211
+ "ryu",
2212
+ "serde",
2213
+]
2214
+
2215
+[[package]]
2216
+name = "serde_repr"
2217
+version = "0.1.10"
2218
+source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e"
2220
+dependencies = [
2221
+ "proc-macro2",
2222
+ "quote",
2223
+ "syn 1.0.107",
2224
+]
2225
+
2226
+[[package]]
2227
+name = "serde_spanned"
2228
+version = "0.6.5"
2229
+source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
2231
+dependencies = [
2232
+ "serde",
2233
+]
2234
+
2235
+[[package]]
2236
+name = "serde_with"
2237
+version = "3.7.0"
2238
+source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
2240
+dependencies = [
2241
+ "base64 0.21.7",
2242
+ "chrono",
2243
+ "hex",
2244
+ "indexmap 1.9.2",
2245
+ "indexmap 2.2.6",
2246
+ "serde",
2247
+ "serde_derive",
2248
+ "serde_json",
2249
+ "serde_with_macros",
2250
+ "time",
2251
+]
2252
+
2253
+[[package]]
2254
+name = "serde_with_macros"
2255
+version = "3.7.0"
2256
+source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
2258
+dependencies = [
2259
+ "darling",
2260
+ "proc-macro2",
2261
+ "quote",
2262
+ "syn 2.0.58",
2263
+]
2264
+
2265
+[[package]]
2266
+name = "serialize-to-javascript"
2267
+version = "0.1.1"
2268
+source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
2270
+dependencies = [
2271
+ "serde",
2272
+ "serde_json",
2273
+ "serialize-to-javascript-impl",
2274
+]
2275
+
2276
+[[package]]
2277
+name = "serialize-to-javascript-impl"
2278
+version = "0.1.1"
2279
+source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
2281
+dependencies = [
2282
+ "proc-macro2",
2283
+ "quote",
2284
+ "syn 1.0.107",
2285
+]
2286
+
2287
+[[package]]
2288
+name = "servo_arc"
2289
+version = "0.1.1"
2290
+source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
2292
+dependencies = [
2293
+ "nodrop",
2294
+ "stable_deref_trait",
2295
+]
2296
+
2297
+[[package]]
2298
+name = "sha2"
2299
+version = "0.10.6"
2300
+source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2302
+dependencies = [
2303
+ "cfg-if",
2304
+ "cpufeatures",
2305
+ "digest",
2306
+]
2307
+
2308
+[[package]]
2309
+name = "sharded-slab"
2310
+version = "0.1.4"
2311
+source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2313
+dependencies = [
2314
+ "lazy_static",
2315
+]
2316
+
2317
+[[package]]
2318
+name = "siphasher"
2319
+version = "0.3.10"
2320
+source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2322
+
2323
+[[package]]
2324
+name = "slab"
2325
+version = "0.4.7"
2326
+source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
2328
+dependencies = [
2329
+ "autocfg",
2330
+]
2331
+
2332
+[[package]]
2333
+name = "smallvec"
2334
+version = "1.10.0"
2335
+source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2337
+
2338
+[[package]]
2339
+name = "soup2"
2340
+version = "0.2.1"
2341
+source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0"
2343
+dependencies = [
2344
+ "bitflags",
2345
+ "gio",
2346
+ "glib",
2347
+ "libc",
2348
+ "once_cell",
2349
+ "soup2-sys",
2350
+]
2351
+
2352
+[[package]]
2353
+name = "soup2-sys"
2354
+version = "0.2.0"
2355
+source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf"
2357
+dependencies = [
2358
+ "bitflags",
2359
+ "gio-sys",
2360
+ "glib-sys",
2361
+ "gobject-sys",
2362
+ "libc",
2363
+ "system-deps 5.0.0",
2364
+]
2365
+
2366
+[[package]]
2367
+name = "stable_deref_trait"
2368
+version = "1.2.0"
2369
+source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2371
+
2372
+[[package]]
2373
+name = "state"
2374
+version = "0.5.3"
2375
+source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
2377
+dependencies = [
2378
+ "loom",
2379
+]
2380
+
2381
+[[package]]
2382
+name = "string_cache"
2383
+version = "0.8.4"
2384
+source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
2386
+dependencies = [
2387
+ "new_debug_unreachable",
2388
+ "once_cell",
2389
+ "parking_lot",
2390
+ "phf_shared 0.10.0",
2391
+ "precomputed-hash",
2392
+ "serde",
2393
+]
2394
+
2395
+[[package]]
2396
+name = "string_cache_codegen"
2397
+version = "0.5.2"
2398
+source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2400
+dependencies = [
2401
+ "phf_generator 0.10.0",
2402
+ "phf_shared 0.10.0",
2403
+ "proc-macro2",
2404
+ "quote",
2405
+]
2406
+
2407
+[[package]]
2408
+name = "strsim"
2409
+version = "0.10.0"
2410
+source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2412
+
2413
+[[package]]
2414
+name = "syn"
2415
+version = "1.0.107"
2416
+source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
2418
+dependencies = [
2419
+ "proc-macro2",
2420
+ "quote",
2421
+ "unicode-ident",
2422
+]
2423
+
2424
+[[package]]
2425
+name = "syn"
2426
+version = "2.0.58"
2427
+source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687"
2429
+dependencies = [
2430
+ "proc-macro2",
2431
+ "quote",
2432
+ "unicode-ident",
2433
+]
2434
+
2435
+[[package]]
2436
+name = "system-deps"
2437
+version = "5.0.0"
2438
+source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e"
2440
+dependencies = [
2441
+ "cfg-expr 0.9.1",
2442
+ "heck 0.3.3",
2443
+ "pkg-config",
2444
+ "toml 0.5.10",
2445
+ "version-compare 0.0.11",
2446
+]
2447
+
2448
+[[package]]
2449
+name = "system-deps"
2450
+version = "6.0.3"
2451
+source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+checksum = "2955b1fe31e1fa2fbd1976b71cc69a606d7d4da16f6de3333d0c92d51419aeff"
2453
+dependencies = [
2454
+ "cfg-expr 0.11.0",
2455
+ "heck 0.4.0",
2456
+ "pkg-config",
2457
+ "toml 0.5.10",
2458
+ "version-compare 0.1.1",
2459
+]
2460
+
2461
+[[package]]
2462
+name = "tao"
2463
+version = "0.16.8"
2464
+source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+checksum = "26a794e476ce829420b58059f4ac23c2b991dab2ee552be740f931aea95ae9c8"
2466
+dependencies = [
2467
+ "bitflags",
2468
+ "cairo-rs",
2469
+ "cc",
2470
+ "cocoa",
2471
+ "core-foundation",
2472
+ "core-graphics",
2473
+ "crossbeam-channel",
2474
+ "dispatch",
2475
+ "gdk",
2476
+ "gdk-pixbuf",
2477
+ "gdk-sys",
2478
+ "gdkwayland-sys",
2479
+ "gdkx11-sys",
2480
+ "gio",
2481
+ "glib",
2482
+ "glib-sys",
2483
+ "gtk",
2484
+ "image",
2485
+ "instant",
2486
+ "jni",
2487
+ "lazy_static",
2488
+ "libc",
2489
+ "log",
2490
+ "ndk",
2491
+ "ndk-context",
2492
+ "ndk-sys",
2493
+ "objc",
2494
+ "once_cell",
2495
+ "parking_lot",
2496
+ "png",
2497
+ "raw-window-handle",
2498
+ "scopeguard",
2499
+ "serde",
2500
+ "tao-macros",
2501
+ "unicode-segmentation",
2502
+ "uuid",
2503
+ "windows",
2504
+ "windows-implement",
2505
+ "x11-dl",
2506
+]
2507
+
2508
+[[package]]
2509
+name = "tao-macros"
2510
+version = "0.1.2"
2511
+source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2"
2513
+dependencies = [
2514
+ "proc-macro2",
2515
+ "quote",
2516
+ "syn 1.0.107",
2517
+]
2518
+
2519
+[[package]]
2520
+name = "tar"
2521
+version = "0.4.38"
2522
+source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
2524
+dependencies = [
2525
+ "filetime",
2526
+ "libc",
2527
+ "xattr",
2528
+]
2529
+
2530
+[[package]]
2531
+name = "tauri"
2532
+version = "1.7.1"
2533
+source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+checksum = "336bc661a3f3250853fa83c6e5245449ed1c26dce5dcb28bdee7efedf6278806"
2535
+dependencies = [
2536
+ "anyhow",
2537
+ "cocoa",
2538
+ "dirs-next",
2539
+ "dunce",
2540
+ "embed_plist",
2541
+ "encoding_rs",
2542
+ "flate2",
2543
+ "futures-util",
2544
+ "getrandom 0.2.8",
2545
+ "glib",
2546
+ "glob",
2547
+ "gtk",
2548
+ "heck 0.5.0",
2549
+ "http",
2550
+ "ignore",
2551
+ "objc",
2552
+ "once_cell",
2553
+ "open",
2554
+ "percent-encoding",
2555
+ "rand 0.8.5",
2556
+ "raw-window-handle",
2557
+ "regex",
2558
+ "semver 1.0.16",
2559
+ "serde",
2560
+ "serde_json",
2561
+ "serde_repr",
2562
+ "serialize-to-javascript",
2563
+ "state",
2564
+ "tar",
2565
+ "tauri-macros",
2566
+ "tauri-runtime",
2567
+ "tauri-runtime-wry",
2568
+ "tauri-utils",
2569
+ "tempfile",
2570
+ "thiserror",
2571
+ "tokio",
2572
+ "url",
2573
+ "uuid",
2574
+ "webkit2gtk",
2575
+ "webview2-com",
2576
+ "windows",
2577
+]
2578
+
2579
+[[package]]
2580
+name = "tauri-build"
2581
+version = "1.5.1"
2582
+source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+checksum = "e9914a4715e0b75d9f387a285c7e26b5bbfeb1249ad9f842675a82481565c532"
2584
+dependencies = [
2585
+ "anyhow",
2586
+ "cargo_toml",
2587
+ "dirs-next",
2588
+ "heck 0.4.0",
2589
+ "json-patch",
2590
+ "semver 1.0.16",
2591
+ "serde",
2592
+ "serde_json",
2593
+ "tauri-utils",
2594
+ "tauri-winres",
2595
+ "walkdir",
2596
+]
2597
+
2598
+[[package]]
2599
+name = "tauri-codegen"
2600
+version = "1.4.4"
2601
+source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+checksum = "c1aed706708ff1200ec12de9cfbf2582b5d8ec05f6a7293911091effbd22036b"
2603
+dependencies = [
2604
+ "base64 0.21.7",
2605
+ "brotli",
2606
+ "ico",
2607
+ "json-patch",
2608
+ "plist",
2609
+ "png",
2610
+ "proc-macro2",
2611
+ "quote",
2612
+ "regex",
2613
+ "semver 1.0.16",
2614
+ "serde",
2615
+ "serde_json",
2616
+ "sha2",
2617
+ "tauri-utils",
2618
+ "thiserror",
2619
+ "time",
2620
+ "uuid",
2621
+ "walkdir",
2622
+]
2623
+
2624
+[[package]]
2625
+name = "tauri-macros"
2626
+version = "1.4.5"
2627
+source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+checksum = "b88f831d2973ae4f81a706a0004e67dac87f2e4439973bbe98efbd73825d8ede"
2629
+dependencies = [
2630
+ "heck 0.5.0",
2631
+ "proc-macro2",
2632
+ "quote",
2633
+ "syn 1.0.107",
2634
+ "tauri-codegen",
2635
+ "tauri-utils",
2636
+]
2637
+
2638
+[[package]]
2639
+name = "tauri-runtime"
2640
+version = "0.14.4"
2641
+source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+checksum = "3068ed62b63dedc705558f4248c7ecbd5561f0f8050949859ea0db2326f26012"
2643
+dependencies = [
2644
+ "gtk",
2645
+ "http",
2646
+ "http-range",
2647
+ "rand 0.8.5",
2648
+ "raw-window-handle",
2649
+ "serde",
2650
+ "serde_json",
2651
+ "tauri-utils",
2652
+ "thiserror",
2653
+ "url",
2654
+ "uuid",
2655
+ "webview2-com",
2656
+ "windows",
2657
+]
2658
+
2659
+[[package]]
2660
+name = "tauri-runtime-wry"
2661
+version = "0.14.9"
2662
+source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+checksum = "d4c3db170233096aa30330feadcd895bf9317be97e624458560a20e814db7955"
2664
+dependencies = [
2665
+ "cocoa",
2666
+ "gtk",
2667
+ "percent-encoding",
2668
+ "rand 0.8.5",
2669
+ "raw-window-handle",
2670
+ "tauri-runtime",
2671
+ "tauri-utils",
2672
+ "uuid",
2673
+ "webkit2gtk",
2674
+ "webview2-com",
2675
+ "windows",
2676
+ "wry",
2677
+]
2678
+
2679
+[[package]]
2680
+name = "tauri-utils"
2681
+version = "1.6.0"
2682
+source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+checksum = "2826db448309d382dac14d520f0c0a40839b87b57b977e59cf5f296b3ace6a93"
2684
+dependencies = [
2685
+ "brotli",
2686
+ "ctor",
2687
+ "dunce",
2688
+ "glob",
2689
+ "heck 0.5.0",
2690
+ "html5ever",
2691
+ "infer",
2692
+ "json-patch",
2693
+ "kuchikiki",
2694
+ "log",
2695
+ "memchr",
2696
+ "phf 0.11.2",
2697
+ "proc-macro2",
2698
+ "quote",
2699
+ "semver 1.0.16",
2700
+ "serde",
2701
+ "serde_json",
2702
+ "serde_with",
2703
+ "thiserror",
2704
+ "url",
2705
+ "walkdir",
2706
+ "windows-version",
2707
+]
2708
+
2709
+[[package]]
2710
+name = "tauri-winres"
2711
+version = "0.1.1"
2712
+source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
2714
+dependencies = [
2715
+ "embed-resource",
2716
+ "toml 0.7.8",
2717
+]
2718
+
2719
+[[package]]
2720
+name = "tempfile"
2721
+version = "3.3.0"
2722
+source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2724
+dependencies = [
2725
+ "cfg-if",
2726
+ "fastrand",
2727
+ "libc",
2728
+ "redox_syscall",
2729
+ "remove_dir_all",
2730
+ "winapi",
2731
+]
2732
+
2733
+[[package]]
2734
+name = "tendril"
2735
+version = "0.4.3"
2736
+source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2738
+dependencies = [
2739
+ "futf",
2740
+ "mac",
2741
+ "utf-8",
2742
+]
2743
+
2744
+[[package]]
2745
+name = "thin-slice"
2746
+version = "0.1.1"
2747
+source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
2749
+
2750
+[[package]]
2751
+name = "thiserror"
2752
+version = "1.0.58"
2753
+source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
2755
+dependencies = [
2756
+ "thiserror-impl",
2757
+]
2758
+
2759
+[[package]]
2760
+name = "thiserror-impl"
2761
+version = "1.0.58"
2762
+source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
2764
+dependencies = [
2765
+ "proc-macro2",
2766
+ "quote",
2767
+ "syn 2.0.58",
2768
+]
2769
+
2770
+[[package]]
2771
+name = "thread_local"
2772
+version = "1.1.4"
2773
+source = "registry+https://github.com/rust-lang/crates.io-index"
2774
+checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2775
+dependencies = [
2776
+ "once_cell",
2777
+]
2778
+
2779
+[[package]]
2780
+name = "time"
2781
+version = "0.3.17"
2782
+source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
2784
+dependencies = [
2785
+ "itoa 1.0.5",
2786
+ "serde",
2787
+ "time-core",
2788
+ "time-macros",
2789
+]
2790
+
2791
+[[package]]
2792
+name = "time-core"
2793
+version = "0.1.0"
2794
+source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2796
+
2797
+[[package]]
2798
+name = "time-macros"
2799
+version = "0.2.6"
2800
+source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
2802
+dependencies = [
2803
+ "time-core",
2804
+]
2805
+
2806
+[[package]]
2807
+name = "tinyvec"
2808
+version = "1.6.0"
2809
+source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2811
+dependencies = [
2812
+ "tinyvec_macros",
2813
+]
2814
+
2815
+[[package]]
2816
+name = "tinyvec_macros"
2817
+version = "0.1.0"
2818
+source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2820
+
2821
+[[package]]
2822
+name = "tokio"
2823
+version = "1.24.2"
2824
+source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb"
2826
+dependencies = [
2827
+ "autocfg",
2828
+ "bytes",
2829
+ "memchr",
2830
+ "num_cpus",
2831
+ "pin-project-lite",
2832
+ "windows-sys 0.42.0",
2833
+]
2834
+
2835
+[[package]]
2836
+name = "toml"
2837
+version = "0.5.10"
2838
+source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f"
2840
+dependencies = [
2841
+ "serde",
2842
+]
2843
+
2844
+[[package]]
2845
+name = "toml"
2846
+version = "0.7.8"
2847
+source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
2849
+dependencies = [
2850
+ "serde",
2851
+ "serde_spanned",
2852
+ "toml_datetime",
2853
+ "toml_edit 0.19.15",
2854
+]
2855
+
2856
+[[package]]
2857
+name = "toml"
2858
+version = "0.8.12"
2859
+source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
2861
+dependencies = [
2862
+ "serde",
2863
+ "serde_spanned",
2864
+ "toml_datetime",
2865
+ "toml_edit 0.22.9",
2866
+]
2867
+
2868
+[[package]]
2869
+name = "toml_datetime"
2870
+version = "0.6.5"
2871
+source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
2873
+dependencies = [
2874
+ "serde",
2875
+]
2876
+
2877
+[[package]]
2878
+name = "toml_edit"
2879
+version = "0.19.15"
2880
+source = "registry+https://github.com/rust-lang/crates.io-index"
2881
+checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
2882
+dependencies = [
2883
+ "indexmap 2.2.6",
2884
+ "serde",
2885
+ "serde_spanned",
2886
+ "toml_datetime",
2887
+ "winnow 0.5.40",
2888
+]
2889
+
2890
+[[package]]
2891
+name = "toml_edit"
2892
+version = "0.22.9"
2893
+source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4"
2895
+dependencies = [
2896
+ "indexmap 2.2.6",
2897
+ "serde",
2898
+ "serde_spanned",
2899
+ "toml_datetime",
2900
+ "winnow 0.6.6",
2901
+]
2902
+
2903
+[[package]]
2904
+name = "tower-of-bazel"
2905
+version = "0.1.0"
2906
+dependencies = [
2907
+ "serde",
2908
+ "serde_json",
2909
+ "tauri",
2910
+ "tauri-build",
2911
+]
2912
+
2913
+[[package]]
2914
+name = "tracing"
2915
+version = "0.1.37"
2916
+source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2918
+dependencies = [
2919
+ "cfg-if",
2920
+ "pin-project-lite",
2921
+ "tracing-attributes",
2922
+ "tracing-core",
2923
+]
2924
+
2925
+[[package]]
2926
+name = "tracing-attributes"
2927
+version = "0.1.23"
2928
+source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2930
+dependencies = [
2931
+ "proc-macro2",
2932
+ "quote",
2933
+ "syn 1.0.107",
2934
+]
2935
+
2936
+[[package]]
2937
+name = "tracing-core"
2938
+version = "0.1.30"
2939
+source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2941
+dependencies = [
2942
+ "once_cell",
2943
+ "valuable",
2944
+]
2945
+
2946
+[[package]]
2947
+name = "tracing-log"
2948
+version = "0.1.3"
2949
+source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2951
+dependencies = [
2952
+ "lazy_static",
2953
+ "log",
2954
+ "tracing-core",
2955
+]
2956
+
2957
+[[package]]
2958
+name = "tracing-subscriber"
2959
+version = "0.3.16"
2960
+source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
2962
+dependencies = [
2963
+ "matchers",
2964
+ "nu-ansi-term",
2965
+ "once_cell",
2966
+ "regex",
2967
+ "sharded-slab",
2968
+ "smallvec",
2969
+ "thread_local",
2970
+ "tracing",
2971
+ "tracing-core",
2972
+ "tracing-log",
2973
+]
2974
+
2975
+[[package]]
2976
+name = "treediff"
2977
+version = "4.0.3"
2978
+source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+checksum = "4d127780145176e2b5d16611cc25a900150e86e9fd79d3bde6ff3a37359c9cb5"
2980
+dependencies = [
2981
+ "serde_json",
2982
+]
2983
+
2984
+[[package]]
2985
+name = "typenum"
2986
+version = "1.16.0"
2987
+source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2989
+
2990
+[[package]]
2991
+name = "ucd-trie"
2992
+version = "0.1.5"
2993
+source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2995
+
2996
+[[package]]
2997
+name = "unicode-bidi"
2998
+version = "0.3.9"
2999
+source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+checksum = "0046be40136ef78dc325e0edefccf84ccddacd0afcc1ca54103fa3c61bbdab1d"
3001
+
3002
+[[package]]
3003
+name = "unicode-ident"
3004
+version = "1.0.6"
3005
+source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
3007
+
3008
+[[package]]
3009
+name = "unicode-normalization"
3010
+version = "0.1.22"
3011
+source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
3013
+dependencies = [
3014
+ "tinyvec",
3015
+]
3016
+
3017
+[[package]]
3018
+name = "unicode-segmentation"
3019
+version = "1.10.0"
3020
+source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
3022
+
3023
+[[package]]
3024
+name = "url"
3025
+version = "2.3.1"
3026
+source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
3028
+dependencies = [
3029
+ "form_urlencoded",
3030
+ "idna",
3031
+ "percent-encoding",
3032
+ "serde",
3033
+]
3034
+
3035
+[[package]]
3036
+name = "utf-8"
3037
+version = "0.7.6"
3038
+source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3040
+
3041
+[[package]]
3042
+name = "uuid"
3043
+version = "1.2.2"
3044
+source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
3046
+dependencies = [
3047
+ "getrandom 0.2.8",
3048
+]
3049
+
3050
+[[package]]
3051
+name = "valuable"
3052
+version = "0.1.0"
3053
+source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3055
+
3056
+[[package]]
3057
+name = "version-compare"
3058
+version = "0.0.11"
3059
+source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
3061
+
3062
+[[package]]
3063
+name = "version-compare"
3064
+version = "0.1.1"
3065
+source = "registry+https://github.com/rust-lang/crates.io-index"
3066
+checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
3067
+
3068
+[[package]]
3069
+name = "version_check"
3070
+version = "0.9.4"
3071
+source = "registry+https://github.com/rust-lang/crates.io-index"
3072
+checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3073
+
3074
+[[package]]
3075
+name = "vswhom"
3076
+version = "0.1.0"
3077
+source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
3079
+dependencies = [
3080
+ "libc",
3081
+ "vswhom-sys",
3082
+]
3083
+
3084
+[[package]]
3085
+name = "vswhom-sys"
3086
+version = "0.1.2"
3087
+source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18"
3089
+dependencies = [
3090
+ "cc",
3091
+ "libc",
3092
+]
3093
+
3094
+[[package]]
3095
+name = "walkdir"
3096
+version = "2.3.2"
3097
+source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
3099
+dependencies = [
3100
+ "same-file",
3101
+ "winapi",
3102
+ "winapi-util",
3103
+]
3104
+
3105
+[[package]]
3106
+name = "wasi"
3107
+version = "0.9.0+wasi-snapshot-preview1"
3108
+source = "registry+https://github.com/rust-lang/crates.io-index"
3109
+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3110
+
3111
+[[package]]
3112
+name = "wasi"
3113
+version = "0.11.0+wasi-snapshot-preview1"
3114
+source = "registry+https://github.com/rust-lang/crates.io-index"
3115
+checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3116
+
3117
+[[package]]
3118
+name = "wasm-bindgen"
3119
+version = "0.2.92"
3120
+source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
3122
+dependencies = [
3123
+ "cfg-if",
3124
+ "wasm-bindgen-macro",
3125
+]
3126
+
3127
+[[package]]
3128
+name = "wasm-bindgen-backend"
3129
+version = "0.2.92"
3130
+source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
3132
+dependencies = [
3133
+ "bumpalo",
3134
+ "log",
3135
+ "once_cell",
3136
+ "proc-macro2",
3137
+ "quote",
3138
+ "syn 2.0.58",
3139
+ "wasm-bindgen-shared",
3140
+]
3141
+
3142
+[[package]]
3143
+name = "wasm-bindgen-macro"
3144
+version = "0.2.92"
3145
+source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
3147
+dependencies = [
3148
+ "quote",
3149
+ "wasm-bindgen-macro-support",
3150
+]
3151
+
3152
+[[package]]
3153
+name = "wasm-bindgen-macro-support"
3154
+version = "0.2.92"
3155
+source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3157
+dependencies = [
3158
+ "proc-macro2",
3159
+ "quote",
3160
+ "syn 2.0.58",
3161
+ "wasm-bindgen-backend",
3162
+ "wasm-bindgen-shared",
3163
+]
3164
+
3165
+[[package]]
3166
+name = "wasm-bindgen-shared"
3167
+version = "0.2.92"
3168
+source = "registry+https://github.com/rust-lang/crates.io-index"
3169
+checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
3170
+
3171
+[[package]]
3172
+name = "webkit2gtk"
3173
+version = "0.18.2"
3174
+source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370"
3176
+dependencies = [
3177
+ "bitflags",
3178
+ "cairo-rs",
3179
+ "gdk",
3180
+ "gdk-sys",
3181
+ "gio",
3182
+ "gio-sys",
3183
+ "glib",
3184
+ "glib-sys",
3185
+ "gobject-sys",
3186
+ "gtk",
3187
+ "gtk-sys",
3188
+ "javascriptcore-rs",
3189
+ "libc",
3190
+ "once_cell",
3191
+ "soup2",
3192
+ "webkit2gtk-sys",
3193
+]
3194
+
3195
+[[package]]
3196
+name = "webkit2gtk-sys"
3197
+version = "0.18.0"
3198
+source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
3200
+dependencies = [
3201
+ "atk-sys",
3202
+ "bitflags",
3203
+ "cairo-sys-rs",
3204
+ "gdk-pixbuf-sys",
3205
+ "gdk-sys",
3206
+ "gio-sys",
3207
+ "glib-sys",
3208
+ "gobject-sys",
3209
+ "gtk-sys",
3210
+ "javascriptcore-rs-sys",
3211
+ "libc",
3212
+ "pango-sys",
3213
+ "pkg-config",
3214
+ "soup2-sys",
3215
+ "system-deps 6.0.3",
3216
+]
3217
+
3218
+[[package]]
3219
+name = "webview2-com"
3220
+version = "0.19.1"
3221
+source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178"
3223
+dependencies = [
3224
+ "webview2-com-macros",
3225
+ "webview2-com-sys",
3226
+ "windows",
3227
+ "windows-implement",
3228
+]
3229
+
3230
+[[package]]
3231
+name = "webview2-com-macros"
3232
+version = "0.6.0"
3233
+source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
3235
+dependencies = [
3236
+ "proc-macro2",
3237
+ "quote",
3238
+ "syn 1.0.107",
3239
+]
3240
+
3241
+[[package]]
3242
+name = "webview2-com-sys"
3243
+version = "0.19.0"
3244
+source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7"
3246
+dependencies = [
3247
+ "regex",
3248
+ "serde",
3249
+ "serde_json",
3250
+ "thiserror",
3251
+ "windows",
3252
+ "windows-bindgen",
3253
+ "windows-metadata",
3254
+]
3255
+
3256
+[[package]]
3257
+name = "winapi"
3258
+version = "0.3.9"
3259
+source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3261
+dependencies = [
3262
+ "winapi-i686-pc-windows-gnu",
3263
+ "winapi-x86_64-pc-windows-gnu",
3264
+]
3265
+
3266
+[[package]]
3267
+name = "winapi-i686-pc-windows-gnu"
3268
+version = "0.4.0"
3269
+source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3271
+
3272
+[[package]]
3273
+name = "winapi-util"
3274
+version = "0.1.5"
3275
+source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3277
+dependencies = [
3278
+ "winapi",
3279
+]
3280
+
3281
+[[package]]
3282
+name = "winapi-x86_64-pc-windows-gnu"
3283
+version = "0.4.0"
3284
+source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3286
+
3287
+[[package]]
3288
+name = "windows"
3289
+version = "0.39.0"
3290
+source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
3292
+dependencies = [
3293
+ "windows-implement",
3294
+ "windows_aarch64_msvc 0.39.0",
3295
+ "windows_i686_gnu 0.39.0",
3296
+ "windows_i686_msvc 0.39.0",
3297
+ "windows_x86_64_gnu 0.39.0",
3298
+ "windows_x86_64_msvc 0.39.0",
3299
+]
3300
+
3301
+[[package]]
3302
+name = "windows-bindgen"
3303
+version = "0.39.0"
3304
+source = "registry+https://github.com/rust-lang/crates.io-index"
3305
+checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41"
3306
+dependencies = [
3307
+ "windows-metadata",
3308
+ "windows-tokens",
3309
+]
3310
+
3311
+[[package]]
3312
+name = "windows-core"
3313
+version = "0.52.0"
3314
+source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3316
+dependencies = [
3317
+ "windows-targets 0.52.5",
3318
+]
3319
+
3320
+[[package]]
3321
+name = "windows-implement"
3322
+version = "0.39.0"
3323
+source = "registry+https://github.com/rust-lang/crates.io-index"
3324
+checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7"
3325
+dependencies = [
3326
+ "syn 1.0.107",
3327
+ "windows-tokens",
3328
+]
3329
+
3330
+[[package]]
3331
+name = "windows-metadata"
3332
+version = "0.39.0"
3333
+source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278"
3335
+
3336
+[[package]]
3337
+name = "windows-sys"
3338
+version = "0.42.0"
3339
+source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
3341
+dependencies = [
3342
+ "windows_aarch64_gnullvm 0.42.1",
3343
+ "windows_aarch64_msvc 0.42.1",
3344
+ "windows_i686_gnu 0.42.1",
3345
+ "windows_i686_msvc 0.42.1",
3346
+ "windows_x86_64_gnu 0.42.1",
3347
+ "windows_x86_64_gnullvm 0.42.1",
3348
+ "windows_x86_64_msvc 0.42.1",
3349
+]
3350
+
3351
+[[package]]
3352
+name = "windows-sys"
3353
+version = "0.48.0"
3354
+source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3356
+dependencies = [
3357
+ "windows-targets 0.48.5",
3358
+]
3359
+
3360
+[[package]]
3361
+name = "windows-targets"
3362
+version = "0.48.5"
3363
+source = "registry+https://github.com/rust-lang/crates.io-index"
3364
+checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3365
+dependencies = [
3366
+ "windows_aarch64_gnullvm 0.48.5",
3367
+ "windows_aarch64_msvc 0.48.5",
3368
+ "windows_i686_gnu 0.48.5",
3369
+ "windows_i686_msvc 0.48.5",
3370
+ "windows_x86_64_gnu 0.48.5",
3371
+ "windows_x86_64_gnullvm 0.48.5",
3372
+ "windows_x86_64_msvc 0.48.5",
3373
+]
3374
+
3375
+[[package]]
3376
+name = "windows-targets"
3377
+version = "0.52.5"
3378
+source = "registry+https://github.com/rust-lang/crates.io-index"
3379
+checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
3380
+dependencies = [
3381
+ "windows_aarch64_gnullvm 0.52.5",
3382
+ "windows_aarch64_msvc 0.52.5",
3383
+ "windows_i686_gnu 0.52.5",
3384
+ "windows_i686_gnullvm",
3385
+ "windows_i686_msvc 0.52.5",
3386
+ "windows_x86_64_gnu 0.52.5",
3387
+ "windows_x86_64_gnullvm 0.52.5",
3388
+ "windows_x86_64_msvc 0.52.5",
3389
+]
3390
+
3391
+[[package]]
3392
+name = "windows-tokens"
3393
+version = "0.39.0"
3394
+source = "registry+https://github.com/rust-lang/crates.io-index"
3395
+checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
3396
+
3397
+[[package]]
3398
+name = "windows-version"
3399
+version = "0.1.1"
3400
+source = "registry+https://github.com/rust-lang/crates.io-index"
3401
+checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515"
3402
+dependencies = [
3403
+ "windows-targets 0.52.5",
3404
+]
3405
+
3406
+[[package]]
3407
+name = "windows_aarch64_gnullvm"
3408
+version = "0.42.1"
3409
+source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
3411
+
3412
+[[package]]
3413
+name = "windows_aarch64_gnullvm"
3414
+version = "0.48.5"
3415
+source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3417
+
3418
+[[package]]
3419
+name = "windows_aarch64_gnullvm"
3420
+version = "0.52.5"
3421
+source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
3423
+
3424
+[[package]]
3425
+name = "windows_aarch64_msvc"
3426
+version = "0.39.0"
3427
+source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
3429
+
3430
+[[package]]
3431
+name = "windows_aarch64_msvc"
3432
+version = "0.42.1"
3433
+source = "registry+https://github.com/rust-lang/crates.io-index"
3434
+checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
3435
+
3436
+[[package]]
3437
+name = "windows_aarch64_msvc"
3438
+version = "0.48.5"
3439
+source = "registry+https://github.com/rust-lang/crates.io-index"
3440
+checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3441
+
3442
+[[package]]
3443
+name = "windows_aarch64_msvc"
3444
+version = "0.52.5"
3445
+source = "registry+https://github.com/rust-lang/crates.io-index"
3446
+checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
3447
+
3448
+[[package]]
3449
+name = "windows_i686_gnu"
3450
+version = "0.39.0"
3451
+source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
3453
+
3454
+[[package]]
3455
+name = "windows_i686_gnu"
3456
+version = "0.42.1"
3457
+source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
3459
+
3460
+[[package]]
3461
+name = "windows_i686_gnu"
3462
+version = "0.48.5"
3463
+source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3465
+
3466
+[[package]]
3467
+name = "windows_i686_gnu"
3468
+version = "0.52.5"
3469
+source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
3471
+
3472
+[[package]]
3473
+name = "windows_i686_gnullvm"
3474
+version = "0.52.5"
3475
+source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
3477
+
3478
+[[package]]
3479
+name = "windows_i686_msvc"
3480
+version = "0.39.0"
3481
+source = "registry+https://github.com/rust-lang/crates.io-index"
3482
+checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
3483
+
3484
+[[package]]
3485
+name = "windows_i686_msvc"
3486
+version = "0.42.1"
3487
+source = "registry+https://github.com/rust-lang/crates.io-index"
3488
+checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
3489
+
3490
+[[package]]
3491
+name = "windows_i686_msvc"
3492
+version = "0.48.5"
3493
+source = "registry+https://github.com/rust-lang/crates.io-index"
3494
+checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3495
+
3496
+[[package]]
3497
+name = "windows_i686_msvc"
3498
+version = "0.52.5"
3499
+source = "registry+https://github.com/rust-lang/crates.io-index"
3500
+checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
3501
+
3502
+[[package]]
3503
+name = "windows_x86_64_gnu"
3504
+version = "0.39.0"
3505
+source = "registry+https://github.com/rust-lang/crates.io-index"
3506
+checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
3507
+
3508
+[[package]]
3509
+name = "windows_x86_64_gnu"
3510
+version = "0.42.1"
3511
+source = "registry+https://github.com/rust-lang/crates.io-index"
3512
+checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
3513
+
3514
+[[package]]
3515
+name = "windows_x86_64_gnu"
3516
+version = "0.48.5"
3517
+source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3519
+
3520
+[[package]]
3521
+name = "windows_x86_64_gnu"
3522
+version = "0.52.5"
3523
+source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
3525
+
3526
+[[package]]
3527
+name = "windows_x86_64_gnullvm"
3528
+version = "0.42.1"
3529
+source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
3531
+
3532
+[[package]]
3533
+name = "windows_x86_64_gnullvm"
3534
+version = "0.48.5"
3535
+source = "registry+https://github.com/rust-lang/crates.io-index"
3536
+checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3537
+
3538
+[[package]]
3539
+name = "windows_x86_64_gnullvm"
3540
+version = "0.52.5"
3541
+source = "registry+https://github.com/rust-lang/crates.io-index"
3542
+checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
3543
+
3544
+[[package]]
3545
+name = "windows_x86_64_msvc"
3546
+version = "0.39.0"
3547
+source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
3549
+
3550
+[[package]]
3551
+name = "windows_x86_64_msvc"
3552
+version = "0.42.1"
3553
+source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
3555
+
3556
+[[package]]
3557
+name = "windows_x86_64_msvc"
3558
+version = "0.48.5"
3559
+source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3561
+
3562
+[[package]]
3563
+name = "windows_x86_64_msvc"
3564
+version = "0.52.5"
3565
+source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
3567
+
3568
+[[package]]
3569
+name = "winnow"
3570
+version = "0.5.40"
3571
+source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
3573
+dependencies = [
3574
+ "memchr",
3575
+]
3576
+
3577
+[[package]]
3578
+name = "winnow"
3579
+version = "0.6.6"
3580
+source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+checksum = "f0c976aaaa0e1f90dbb21e9587cdaf1d9679a1cde8875c0d6bd83ab96a208352"
3582
+dependencies = [
3583
+ "memchr",
3584
+]
3585
+
3586
+[[package]]
3587
+name = "winreg"
3588
+version = "0.52.0"
3589
+source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
3591
+dependencies = [
3592
+ "cfg-if",
3593
+ "windows-sys 0.48.0",
3594
+]
3595
+
3596
+[[package]]
3597
+name = "wry"
3598
+version = "0.24.10"
3599
+source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+checksum = "00711278ed357350d44c749c286786ecac644e044e4da410d466212152383b45"
3601
+dependencies = [
3602
+ "base64 0.13.1",
3603
+ "block",
3604
+ "cocoa",
3605
+ "core-graphics",
3606
+ "crossbeam-channel",
3607
+ "dunce",
3608
+ "gdk",
3609
+ "gio",
3610
+ "glib",
3611
+ "gtk",
3612
+ "html5ever",
3613
+ "http",
3614
+ "kuchikiki",
3615
+ "libc",
3616
+ "log",
3617
+ "objc",
3618
+ "objc_id",
3619
+ "once_cell",
3620
+ "serde",
3621
+ "serde_json",
3622
+ "sha2",
3623
+ "soup2",
3624
+ "tao",
3625
+ "thiserror",
3626
+ "url",
3627
+ "webkit2gtk",
3628
+ "webkit2gtk-sys",
3629
+ "webview2-com",
3630
+ "windows",
3631
+ "windows-implement",
3632
+]
3633
+
3634
+[[package]]
3635
+name = "x11"
3636
+version = "2.21.0"
3637
+source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
3639
+dependencies = [
3640
+ "libc",
3641
+ "pkg-config",
3642
+]
3643
+
3644
+[[package]]
3645
+name = "x11-dl"
3646
+version = "2.21.0"
3647
+source = "registry+https://github.com/rust-lang/crates.io-index"
3648
+checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
3649
+dependencies = [
3650
+ "libc",
3651
+ "once_cell",
3652
+ "pkg-config",
3653
+]
3654
+
3655
+[[package]]
3656
+name = "xattr"
3657
+version = "0.2.3"
3658
+source = "registry+https://github.com/rust-lang/crates.io-index"
3659
+checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
3660
+dependencies = [
3661
+ "libc",
3662
+]
frontend/desktop/src-tauri/Cargo.toml
new
+27
@@ -0,0 +1,27 @@
1
+[package]
2
+name = "tower-of-bazel"
3
+version = "0.1.0"
4
+description = "Tauri on Bazel with NextJS 14."
5
+authors = ["Seto Elkahfi"]
6
+license = "GNU GENERAL PUBLIC LICENSE"
7
+repository = "https://github.com/setoelkahfi/tower-of-bazel"
8
+edition = "2021"
9
+rust-version = "1.77"
10
+
11
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12
+
13
+[build-dependencies]
14
+tauri-build = { version = "1.5", features = [] }
15
+
16
+[dependencies]
17
+serde_json = "1.0"
18
+serde = { version = "1.0", features = ["derive"] }
19
+tauri = { version = "1.7.1", features = ["shell-open"] }
20
+
21
+[features]
22
+# by default Tauri runs in production mode
23
+# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
24
+default = ["custom-protocol"]
25
+# this feature is used used for production builds where `devPath` points to the filesystem
26
+# DO NOT remove this
27
+custom-protocol = ["tauri/custom-protocol"]
frontend/desktop/src-tauri/build.rs
new
+3
@@ -0,0 +1,3 @@
1
+fn main() {
2
+ tauri_build::build()
3
+}
frontend/desktop/src-tauri/icons/128x128.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:19b4fec485db7df51a691fcce72a3dd6f983e754fc4262da7154e4a4c688f69e
3
+size 3512
frontend/desktop/src-tauri/icons/128x128@2x.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:6c7660390d65217fe8de0892862254f47aee77e0af7096c75b8bfe168c5403f7
3
+size 7012
frontend/desktop/src-tauri/icons/32x32.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:1c6782dc65c8111c12cbc1882a0fea5e71ab8e51b18da2ce9580f5c88860ed02
3
+size 974
frontend/desktop/src-tauri/icons/Square107x107Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:54f7a0f58c96a4b023c1edc4b53fc443e27dace50e345f6936fa29bc20f785ca
3
+size 2863
frontend/desktop/src-tauri/icons/Square142x142Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:fec1e2080ca73cd4c4a123b23b1cd364059a8a8efeba3076e21dfefed390693b
3
+size 3858
frontend/desktop/src-tauri/icons/Square150x150Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:65fb570cb0e61ffce02ad67784cb200a0bf058400300980a46fa0d0c8f43a77a
3
+size 3966
frontend/desktop/src-tauri/icons/Square284x284Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:ea0b7c5d4b1d1ab9c91d2f7c9b069c8dfbf4557b0649a5777d47332cde610262
3
+size 7737
frontend/desktop/src-tauri/icons/Square30x30Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:cc72279c41b4ed343e8db7e7541ceef7b6b23edaa83d4e7338421dfcb8d63c33
3
+size 903
frontend/desktop/src-tauri/icons/Square310x310Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:9733a89c539115de3c49bd06720bfc99639d9a918f5df48a810e267cf3554119
3
+size 8591
frontend/desktop/src-tauri/icons/Square44x44Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:10be9840e58fb018eb9029601d42008e16c0c9cfa66b8f9467fee94f600160d4
3
+size 1299
frontend/desktop/src-tauri/icons/Square71x71Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:2937fc83324cd9a1fddcfefd5927c791af31996a6840bfb3e2f1d578ad4129de
3
+size 2011
frontend/desktop/src-tauri/icons/Square89x89Logo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:12aed0e7ee06cb631427dc9da72c0c7ecf03857fbc4884d0c31f78314feb6c7f
3
+size 2468
frontend/desktop/src-tauri/icons/StoreLogo.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:91a54024dd47230991546088f2e75d3e3199b3ccc9fe40f3f6b7d3bf1cbf7776
3
+size 1523
frontend/desktop/src-tauri/icons/icon.icns
Binary files /dev/null and b/frontend/desktop/src-tauri/icons/icon.icns differ
frontend/desktop/src-tauri/icons/icon.ico
Binary files /dev/null and b/frontend/desktop/src-tauri/icons/icon.ico differ
frontend/desktop/src-tauri/icons/icon.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:273cd669e07c455ad1c7c095890a37984652157cee73128a867300067dfb80e7
3
+size 14183
frontend/desktop/src-tauri/src/main.rs
new
+17
@@ -0,0 +1,17 @@
1
+#![cfg_attr(
2
+ all(not(debug_assertions), target_os = "windows"),
3
+ windows_subsystem = "windows"
4
+)]
5
+
6
+// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
7
+#[tauri::command]
8
+fn greet(name: &str) -> String {
9
+ format!("Hello, {}! You've been greeted from Rust!!!!", name)
10
+}
11
+
12
+fn main() {
13
+ tauri::Builder::default()
14
+ .invoke_handler(tauri::generate_handler![greet])
15
+ .run(tauri::generate_context!())
16
+ .expect("error while running tauri application");
17
+}
frontend/desktop/src-tauri/tauri.conf.json
new
+70
@@ -0,0 +1,70 @@
1
+{
2
+ "build": {
3
+ "beforeDevCommand": "node node_modules/next/dist/bin/next dev -p 1420",
4
+ "beforeBuildCommand": "node node_modules/next/dist/bin/next build",
5
+ "devPath": "http://localhost:1420",
6
+ "distDir": "../out",
7
+ "withGlobalTauri": false
8
+ },
9
+ "package": {
10
+ "productName": "tower-of-bazel",
11
+ "version": "0.0.1"
12
+ },
13
+ "tauri": {
14
+ "allowlist": {
15
+ "all": false,
16
+ "shell": {
17
+ "all": false,
18
+ "open": true
19
+ }
20
+ },
21
+ "bundle": {
22
+ "active": true,
23
+ "category": "DeveloperTool",
24
+ "copyright": "",
25
+ "deb": {
26
+ "depends": []
27
+ },
28
+ "externalBin": [],
29
+ "icon": [
30
+ "icons/32x32.png",
31
+ "icons/128x128.png",
32
+ "icons/128x128@2x.png",
33
+ "icons/icon.icns",
34
+ "icons/icon.ico"
35
+ ],
36
+ "identifier": "com.taurionbazel.desktop",
37
+ "longDescription": "Tauri on Bazel with NextJS 14.",
38
+ "macOS": {
39
+ "entitlements": null,
40
+ "exceptionDomain": "",
41
+ "frameworks": [],
42
+ "providerShortName": null,
43
+ "signingIdentity": null
44
+ },
45
+ "resources": [],
46
+ "shortDescription": "",
47
+ "targets": "all",
48
+ "windows": {
49
+ "certificateThumbprint": null,
50
+ "digestAlgorithm": "sha256",
51
+ "timestampUrl": ""
52
+ }
53
+ },
54
+ "security": {
55
+ "csp": null
56
+ },
57
+ "updater": {
58
+ "active": false
59
+ },
60
+ "windows": [
61
+ {
62
+ "fullscreen": false,
63
+ "height": 600,
64
+ "resizable": true,
65
+ "title": "Tauri on Bazel",
66
+ "width": 800
67
+ }
68
+ ]
69
+ }
70
+}
frontend/desktop/tailwind.config.js
new
+88
@@ -0,0 +1,88 @@
1
+import colors from 'tailwindcss/colors';
2
+import { Config } from 'tailwindcss';
3
+
4
+export default {
5
+ content: [
6
+ './app/**/*.{js,ts,jsx,tsx,mdx}',
7
+ ],
8
+ future: {
9
+ hoverOnlyWhenSupported: true,
10
+ },
11
+ darkMode: 'class',
12
+ theme: {
13
+ extend: {
14
+ // https://vercel.com/design/color
15
+ colors: {
16
+ gray: colors.zinc,
17
+ 'gray-1000': 'rgb(17,17,19)',
18
+ 'gray-1100': 'rgb(10,10,11)',
19
+ vercel: {
20
+ pink: '#FF0080',
21
+ blue: '#0070F3',
22
+ cyan: '#50E3C2',
23
+ orange: '#F5A623',
24
+ violet: '#7928CA',
25
+ },
26
+ },
27
+ backgroundImage: ({ theme }) => ({
28
+ 'vc-border-gradient': `radial-gradient(at left top, ${theme(
29
+ 'colors.gray.500',
30
+ )}, 50px, ${theme('colors.gray.800')} 50%)`,
31
+ }),
32
+ keyframes: ({ theme }) => ({
33
+ rerender: {
34
+ '0%': {
35
+ ['border-color']: theme('colors.vercel.pink'),
36
+ },
37
+ '40%': {
38
+ ['border-color']: theme('colors.vercel.pink'),
39
+ },
40
+ },
41
+ highlight: {
42
+ '0%': {
43
+ background: theme('colors.vercel.pink'),
44
+ color: theme('colors.white'),
45
+ },
46
+ '40%': {
47
+ background: theme('colors.vercel.pink'),
48
+ color: theme('colors.white'),
49
+ },
50
+ },
51
+ loading: {
52
+ '0%': {
53
+ opacity: '.2',
54
+ },
55
+ '20%': {
56
+ opacity: '1',
57
+ transform: 'translateX(1px)',
58
+ },
59
+ to: {
60
+ opacity: '.2',
61
+ },
62
+ },
63
+ shimmer: {
64
+ '100%': {
65
+ transform: 'translateX(100%)',
66
+ },
67
+ },
68
+ translateXReset: {
69
+ '100%': {
70
+ transform: 'translateX(0)',
71
+ },
72
+ },
73
+ fadeToTransparent: {
74
+ '0%': {
75
+ opacity: '1',
76
+ },
77
+ '40%': {
78
+ opacity: '1',
79
+ },
80
+ '100%': {
81
+ opacity: '0',
82
+ },
83
+ },
84
+ }),
85
+ },
86
+ },
87
+ plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
88
+} satisfies Config;
frontend/desktop/tsconfig.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
+ "noEmit": true,
14
+ "esModuleInterop": true,
15
+ "module": "esnext",
16
+ "moduleResolution": "node",
17
+ "resolveJsonModule": true,
18
+ "isolatedModules": true,
19
+ "jsx": "preserve",
20
+ "incremental": true,
21
+ "baseUrl": ".",
22
+ "paths": {
23
+ "@/*": [
24
+ "./*"
25
+ ]
26
+ },
27
+ "plugins": [
28
+ {
29
+ "name": "next"
30
+ }
31
+ ]
32
+ },
33
+ "include": [
34
+ "next-env.d.ts",
35
+ "**/*.ts",
36
+ "**/*.tsx",
37
+ ".next/types/**/*.ts"
38
+ ],
39
+ "exclude": [
40
+ "node_modules"
41
+ ]
42
+}
screenshots/0.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:078383d9ffc3be26767059cbff61b709775dc41fc441099e2678c95bc37607ae
3
+size 185584
screenshots/1.png
new
+3
@@ -0,0 +1,3 @@
1
+version https://git-lfs.github.com/spec/v1
2
+oid sha256:4014ae79b42f225384d0a44404f742ebecda83570898effd4b6b97d2410d4dd7
3
+size 175964